Initial commit
41
.gitignore
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/versions
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# env files (can opt-in for committing if needed)
|
||||
.env*
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
5
AGENTS.md
Normal file
@@ -0,0 +1,5 @@
|
||||
<!-- BEGIN:nextjs-agent-rules -->
|
||||
# This is NOT the Next.js you know
|
||||
|
||||
This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices.
|
||||
<!-- END:nextjs-agent-rules -->
|
||||
36
README.md
Normal file
@@ -0,0 +1,36 @@
|
||||
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
|
||||
|
||||
## Getting Started
|
||||
|
||||
First, run the development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
# or
|
||||
pnpm dev
|
||||
# or
|
||||
bun dev
|
||||
```
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||
|
||||
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
|
||||
|
||||
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
|
||||
|
||||
## Learn More
|
||||
|
||||
To learn more about Next.js, take a look at the following resources:
|
||||
|
||||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
||||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||
|
||||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
|
||||
|
||||
## Deploy on Vercel
|
||||
|
||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||
|
||||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
|
||||
18
eslint.config.mjs
Normal file
@@ -0,0 +1,18 @@
|
||||
import { defineConfig, globalIgnores } from "eslint/config";
|
||||
import nextVitals from "eslint-config-next/core-web-vitals";
|
||||
import nextTs from "eslint-config-next/typescript";
|
||||
|
||||
const eslintConfig = defineConfig([
|
||||
...nextVitals,
|
||||
...nextTs,
|
||||
// Override default ignores of eslint-config-next.
|
||||
globalIgnores([
|
||||
// Default ignores of eslint-config-next:
|
||||
".next/**",
|
||||
"out/**",
|
||||
"build/**",
|
||||
"next-env.d.ts",
|
||||
]),
|
||||
]);
|
||||
|
||||
export default eslintConfig;
|
||||
7
next.config.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
/* config options here */
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
6703
package-lock.json
generated
Normal file
26
package.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "nearle-new",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "eslint"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "16.2.9",
|
||||
"react": "19.2.4",
|
||||
"react-dom": "19.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/postcss": "^4",
|
||||
"@types/node": "^20",
|
||||
"@types/react": "^19",
|
||||
"@types/react-dom": "^19",
|
||||
"eslint": "^9",
|
||||
"eslint-config-next": "16.2.9",
|
||||
"tailwindcss": "^4",
|
||||
"typescript": "^5"
|
||||
}
|
||||
}
|
||||
7
postcss.config.mjs
Normal file
@@ -0,0 +1,7 @@
|
||||
const config = {
|
||||
plugins: {
|
||||
"@tailwindcss/postcss": {},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
@@ -0,0 +1 @@
|
||||
No Content: about:blank
|
||||
2
preview.themeforest.net (1)/consent.cookiebot.com/uc.js
Normal file
82
preview.themeforest.net (1)/fonts.googleapis.com/css (1).css
Normal file
@@ -0,0 +1,82 @@
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Lato";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwaPGQ3q5d0N7w.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Lato";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwiPGQ3q5d0.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjvWyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjtGyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjvGyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjs2yNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjvmyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjsGyNPYZvgw.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
175
preview.themeforest.net (1)/fonts.googleapis.com/css (2).css
Normal file
@@ -0,0 +1,175 @@
|
||||
/* tamil */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r8zRASf6M7VBj.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r6zRASf6M7VBj.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r5TRASf6M7Q.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* tamil */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r8zRASf6M7VBj.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r6zRASf6M7VBj.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r5TRASf6M7Q.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* tamil */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r8zRASf6M7VBj.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r6zRASf6M7VBj.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Catamaran";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5r5TRASf6M7Q.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* hebrew */
|
||||
@font-face {
|
||||
font-family: "Heebo";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSusd0mm7UiCXB5WkK8.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC,
|
||||
U+FB1D-FB4F;
|
||||
}
|
||||
/* math */
|
||||
@font-face {
|
||||
font-family: "Heebo";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSusCUmm7UiCXB5WkK8.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315,
|
||||
U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A,
|
||||
U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6,
|
||||
U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043,
|
||||
U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C,
|
||||
U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121,
|
||||
U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2,
|
||||
U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319,
|
||||
U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1,
|
||||
U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB,
|
||||
U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE,
|
||||
U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
|
||||
}
|
||||
/* symbols */
|
||||
@font-face {
|
||||
font-family: "Heebo";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSusG0mm7UiCXB5WkK8.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4,
|
||||
U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3,
|
||||
U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF,
|
||||
U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF,
|
||||
U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0,
|
||||
U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F,
|
||||
U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C,
|
||||
U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F,
|
||||
U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE,
|
||||
U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415,
|
||||
U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449,
|
||||
U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9,
|
||||
U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6,
|
||||
U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B,
|
||||
U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F,
|
||||
U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA,
|
||||
U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3,
|
||||
U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859,
|
||||
U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B,
|
||||
U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C,
|
||||
U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8,
|
||||
U+1FB00-1FBFF;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Heebo";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSuse0mm7UiCXB5WkK8.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Heebo";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSusdUmm7UiCXB5W.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
82
preview.themeforest.net (1)/fonts.googleapis.com/css (3).css
Normal file
@@ -0,0 +1,82 @@
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Lato";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwaPGQ3q5d0N7w.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Lato";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwiPGQ3q5d0.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjvWyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjtGyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjvGyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjs2yNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjvmyNPYZvg7UI.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Ubuntu";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvjsGyNPYZvgw.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
183
preview.themeforest.net (1)/fonts.googleapis.com/css (4).css
Normal file
@@ -0,0 +1,183 @@
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
/* hebrew */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC,
|
||||
U+FB1D-FB4F;
|
||||
}
|
||||
/* math */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5caVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315,
|
||||
U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A,
|
||||
U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6,
|
||||
U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043,
|
||||
U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C,
|
||||
U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121,
|
||||
U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2,
|
||||
U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319,
|
||||
U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1,
|
||||
U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB,
|
||||
U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE,
|
||||
U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
|
||||
}
|
||||
/* symbols */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5OaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4,
|
||||
U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3,
|
||||
U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF,
|
||||
U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF,
|
||||
U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0,
|
||||
U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F,
|
||||
U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C,
|
||||
U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F,
|
||||
U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE,
|
||||
U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415,
|
||||
U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449,
|
||||
U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9,
|
||||
U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6,
|
||||
U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B,
|
||||
U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F,
|
||||
U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA,
|
||||
U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3,
|
||||
U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859,
|
||||
U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B,
|
||||
U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C,
|
||||
U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8,
|
||||
U+1FB00-1FBFF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVIUwaEQbjB_mQ.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;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVIUwaEQbjA.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDTbtPK-F2qC0usEw.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDYbtPK-F2qC0usEw.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;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDZbtPK-F2qC0usEw.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDXbtPK-F2qC0s.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
183
preview.themeforest.net (1)/fonts.googleapis.com/css.css
Normal file
@@ -0,0 +1,183 @@
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
/* hebrew */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC,
|
||||
U+FB1D-FB4F;
|
||||
}
|
||||
/* math */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5caVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315,
|
||||
U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A,
|
||||
U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6,
|
||||
U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043,
|
||||
U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C,
|
||||
U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121,
|
||||
U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2,
|
||||
U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319,
|
||||
U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1,
|
||||
U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB,
|
||||
U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE,
|
||||
U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
|
||||
}
|
||||
/* symbols */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5OaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4,
|
||||
U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3,
|
||||
U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF,
|
||||
U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF,
|
||||
U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0,
|
||||
U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F,
|
||||
U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C,
|
||||
U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F,
|
||||
U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE,
|
||||
U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415,
|
||||
U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449,
|
||||
U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9,
|
||||
U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6,
|
||||
U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B,
|
||||
U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F,
|
||||
U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA,
|
||||
U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3,
|
||||
U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859,
|
||||
U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B,
|
||||
U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C,
|
||||
U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8,
|
||||
U+1FB00-1FBFF;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVIUwaEQbjB_mQ.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;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVIUwaEQbjB_mQ.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-stretch: 100%;
|
||||
src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVIUwaEQbjA.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDTbtPK-F2qC0usEw.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDYbtPK-F2qC0usEw.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;
|
||||
}
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDZbtPK-F2qC0usEw.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: "Playfair Display";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiunDXbtPK-F2qC0s.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@@ -0,0 +1,230 @@
|
||||
:root {
|
||||
--woocommerce: #720eec;
|
||||
--wc-green: #7ad03a;
|
||||
--wc-red: #a00;
|
||||
--wc-orange: #ffba00;
|
||||
--wc-blue: #2ea2cc;
|
||||
--wc-primary: #720eec;
|
||||
--wc-primary-text: #fcfbfe;
|
||||
--wc-secondary: #e9e6ed;
|
||||
--wc-secondary-text: #515151;
|
||||
--wc-highlight: #958e09;
|
||||
--wc-highligh-text: #fff;
|
||||
--wc-content-bg: #fff;
|
||||
--wc-subtext: #767676;
|
||||
--wc-form-border-color: rgba(32, 7, 7, 0.8);
|
||||
--wc-form-border-radius: 4px;
|
||||
--wc-form-border-width: 1px;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive thead,
|
||||
.woocommerce-page table.shop_table_responsive thead {
|
||||
display: none;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tbody tr:first-child td:first-child,
|
||||
.woocommerce-page
|
||||
table.shop_table_responsive
|
||||
tbody
|
||||
tr:first-child
|
||||
td:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tbody th,
|
||||
.woocommerce-page table.shop_table_responsive tbody th {
|
||||
display: none;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tr,
|
||||
.woocommerce-page table.shop_table_responsive tr {
|
||||
display: block;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tr td,
|
||||
.woocommerce-page table.shop_table_responsive tr td {
|
||||
display: block;
|
||||
text-align: right !important;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tr td.order-actions,
|
||||
.woocommerce-page table.shop_table_responsive tr td.order-actions {
|
||||
text-align: left !important;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tr td:before,
|
||||
.woocommerce-page table.shop_table_responsive tr td:before {
|
||||
content: attr(data-title) ": ";
|
||||
font-weight: 700;
|
||||
float: left;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tr td.actions:before,
|
||||
.woocommerce table.shop_table_responsive tr td.product-remove:before,
|
||||
.woocommerce-page table.shop_table_responsive tr td.actions:before,
|
||||
.woocommerce-page table.shop_table_responsive tr td.product-remove:before {
|
||||
display: none;
|
||||
}
|
||||
.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
|
||||
.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
|
||||
background-color: rgba(0, 0, 0, 0.025);
|
||||
}
|
||||
.woocommerce table.my_account_orders tr td.order-actions,
|
||||
.woocommerce-page table.my_account_orders tr td.order-actions {
|
||||
text-align: left;
|
||||
}
|
||||
.woocommerce table.my_account_orders tr td.order-actions:before,
|
||||
.woocommerce-page table.my_account_orders tr td.order-actions:before {
|
||||
display: none;
|
||||
}
|
||||
.woocommerce table.my_account_orders tr td.order-actions .button,
|
||||
.woocommerce-page table.my_account_orders tr td.order-actions .button {
|
||||
float: none;
|
||||
margin: 0.125em 0.25em 0.125em 0;
|
||||
}
|
||||
.woocommerce .col2-set .col-1,
|
||||
.woocommerce .col2-set .col-2,
|
||||
.woocommerce-page .col2-set .col-1,
|
||||
.woocommerce-page .col2-set .col-2 {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
.woocommerce ul.products[class*="columns-"] li.product,
|
||||
.woocommerce-page ul.products[class*="columns-"] li.product {
|
||||
width: 48%;
|
||||
float: left;
|
||||
clear: both;
|
||||
margin: 0 0 2.992em;
|
||||
}
|
||||
.woocommerce ul.products[class*="columns-"] li.product:nth-child(2n),
|
||||
.woocommerce-page ul.products[class*="columns-"] li.product:nth-child(2n) {
|
||||
float: right;
|
||||
clear: none !important;
|
||||
}
|
||||
.woocommerce #content div.product div.images,
|
||||
.woocommerce #content div.product div.summary,
|
||||
.woocommerce div.product div.images,
|
||||
.woocommerce div.product div.summary,
|
||||
.woocommerce-page #content div.product div.images,
|
||||
.woocommerce-page #content div.product div.summary,
|
||||
.woocommerce-page div.product div.images,
|
||||
.woocommerce-page div.product div.summary {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
.woocommerce #content table.cart .product-thumbnail,
|
||||
.woocommerce table.cart .product-thumbnail,
|
||||
.woocommerce-page #content table.cart .product-thumbnail,
|
||||
.woocommerce-page table.cart .product-thumbnail {
|
||||
display: none;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions,
|
||||
.woocommerce table.cart td.actions,
|
||||
.woocommerce-page #content table.cart td.actions,
|
||||
.woocommerce-page table.cart td.actions {
|
||||
text-align: left;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions .coupon,
|
||||
.woocommerce table.cart td.actions .coupon,
|
||||
.woocommerce-page #content table.cart td.actions .coupon,
|
||||
.woocommerce-page table.cart td.actions .coupon {
|
||||
float: none;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions .coupon:after,
|
||||
.woocommerce #content table.cart td.actions .coupon:before,
|
||||
.woocommerce table.cart td.actions .coupon:after,
|
||||
.woocommerce table.cart td.actions .coupon:before,
|
||||
.woocommerce-page #content table.cart td.actions .coupon:after,
|
||||
.woocommerce-page #content table.cart td.actions .coupon:before,
|
||||
.woocommerce-page table.cart td.actions .coupon:after,
|
||||
.woocommerce-page table.cart td.actions .coupon:before {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions .coupon:after,
|
||||
.woocommerce table.cart td.actions .coupon:after,
|
||||
.woocommerce-page #content table.cart td.actions .coupon:after,
|
||||
.woocommerce-page table.cart td.actions .coupon:after {
|
||||
clear: both;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions .coupon .button,
|
||||
.woocommerce #content table.cart td.actions .coupon .input-text,
|
||||
.woocommerce #content table.cart td.actions .coupon input,
|
||||
.woocommerce table.cart td.actions .coupon .button,
|
||||
.woocommerce table.cart td.actions .coupon .input-text,
|
||||
.woocommerce table.cart td.actions .coupon input,
|
||||
.woocommerce-page #content table.cart td.actions .coupon .button,
|
||||
.woocommerce-page #content table.cart td.actions .coupon .input-text,
|
||||
.woocommerce-page #content table.cart td.actions .coupon input,
|
||||
.woocommerce-page table.cart td.actions .coupon .button,
|
||||
.woocommerce-page table.cart td.actions .coupon .input-text,
|
||||
.woocommerce-page table.cart td.actions .coupon input {
|
||||
width: 48%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions .coupon .button.alt,
|
||||
.woocommerce #content table.cart td.actions .coupon .input-text + .button,
|
||||
.woocommerce table.cart td.actions .coupon .button.alt,
|
||||
.woocommerce table.cart td.actions .coupon .input-text + .button,
|
||||
.woocommerce-page #content table.cart td.actions .coupon .button.alt,
|
||||
.woocommerce-page #content table.cart td.actions .coupon .input-text + .button,
|
||||
.woocommerce-page table.cart td.actions .coupon .button.alt,
|
||||
.woocommerce-page table.cart td.actions .coupon .input-text + .button {
|
||||
float: right;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions .coupon .coupon-error-notice,
|
||||
.woocommerce table.cart td.actions .coupon .coupon-error-notice,
|
||||
.woocommerce-page #content table.cart td.actions .coupon .coupon-error-notice,
|
||||
.woocommerce-page table.cart td.actions .coupon .coupon-error-notice {
|
||||
clear: left;
|
||||
color: var(--wc-red);
|
||||
float: left;
|
||||
font-size: 0.75em;
|
||||
margin-bottom: 0;
|
||||
text-align: left;
|
||||
width: 48%;
|
||||
}
|
||||
.woocommerce #content table.cart td.actions .button,
|
||||
.woocommerce table.cart td.actions .button,
|
||||
.woocommerce-page #content table.cart td.actions .button,
|
||||
.woocommerce-page table.cart td.actions .button {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.woocommerce .cart-collaterals .cart_totals,
|
||||
.woocommerce .cart-collaterals .cross-sells,
|
||||
.woocommerce .cart-collaterals .shipping_calculator,
|
||||
.woocommerce-page .cart-collaterals .cart_totals,
|
||||
.woocommerce-page .cart-collaterals .cross-sells,
|
||||
.woocommerce-page .cart-collaterals .shipping_calculator {
|
||||
width: 100%;
|
||||
float: none;
|
||||
text-align: left;
|
||||
}
|
||||
.woocommerce-page.woocommerce-checkout form.login .form-row,
|
||||
.woocommerce.woocommerce-checkout form.login .form-row {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
.woocommerce #payment .terms,
|
||||
.woocommerce-page #payment .terms {
|
||||
text-align: left;
|
||||
padding: 0;
|
||||
}
|
||||
.woocommerce #payment #place_order,
|
||||
.woocommerce-page #payment #place_order {
|
||||
float: none;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.woocommerce .lost_reset_password .form-row-first,
|
||||
.woocommerce .lost_reset_password .form-row-last,
|
||||
.woocommerce-page .lost_reset_password .form-row-first,
|
||||
.woocommerce-page .lost_reset_password .form-row-last {
|
||||
width: 100%;
|
||||
float: none;
|
||||
margin-right: 0;
|
||||
}
|
||||
.woocommerce-account .woocommerce-MyAccount-content,
|
||||
.woocommerce-account .woocommerce-MyAccount-navigation {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
.single-product .twentythirteen .panel {
|
||||
padding-left: 20px !important;
|
||||
padding-right: 20px !important;
|
||||
}
|
||||
@@ -0,0 +1,716 @@
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-e6985e1:not(.elementor-motion-effects-element-type-background),
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-e6985e1
|
||||
> .elementor-motion-effects-container
|
||||
> .elementor-motion-effects-layer {
|
||||
background-image: url("http://gomoto.like-themes.com/wp-content/uploads/2020/04/slider-eclipse.png");
|
||||
background-position: bottom center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-e6985e1 {
|
||||
overflow: hidden;
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-e6985e1
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-9dc9081:not(.elementor-motion-effects-element-type-background),
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-9dc9081
|
||||
> .elementor-motion-effects-container
|
||||
> .elementor-motion-effects-layer {
|
||||
background-image: url("http://gomoto.like-themes.com/wp-content/uploads/2020/04/slider-glob.png");
|
||||
background-position: bottom center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-9dc9081 {
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-9dc9081
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-22b375f {
|
||||
--spacer-size: 300px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-953a708
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 16px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-953a708 {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-b4dcd3b {
|
||||
width: var(--container-widget-width, 563px);
|
||||
max-width: 563px;
|
||||
--container-widget-width: 563px;
|
||||
--container-widget-flex-grow: 0;
|
||||
column-gap: 0;
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-cd6f7b7 {
|
||||
--spacer-size: 50px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-3abb7e9 {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-2a188b7 {
|
||||
--spacer-size: 420px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-6916393 {
|
||||
margin-top: -100px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f29c557 {
|
||||
--spacer-size: 40px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-4bc9757
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 30px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4bc9757 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-23a754b {
|
||||
--spacer-size: 90px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-81eac60:not(.elementor-motion-effects-element-type-background)
|
||||
> .elementor-widget-wrap,
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-81eac60
|
||||
> .elementor-widget-wrap
|
||||
> .elementor-motion-effects-container
|
||||
> .elementor-motion-effects-layer {
|
||||
background-image: url("http://gomoto.like-themes.com/wp-content/uploads/2019/06/sit-photo.jpg");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 120% auto;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-81eac60
|
||||
> .elementor-element-populated {
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-81eac60
|
||||
> .elementor-element-populated
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-3dd85c8:not(.elementor-motion-effects-element-type-background)
|
||||
> .elementor-widget-wrap,
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-3dd85c8
|
||||
> .elementor-widget-wrap
|
||||
> .elementor-motion-effects-container
|
||||
> .elementor-motion-effects-layer {
|
||||
background-image: url("http://gomoto.like-themes.com/wp-content/uploads/2019/06/sit-bg.png");
|
||||
background-position: center right;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-3dd85c8
|
||||
> .elementor-element-populated {
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
padding: 0;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-3dd85c8
|
||||
> .elementor-element-populated
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f545343 {
|
||||
padding: 0 0 0 90px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-24547a3 {
|
||||
--spacer-size: 164px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-feb1266
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 16px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-feb1266 {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-67f2bc7 {
|
||||
width: var(--container-widget-width, 550px);
|
||||
max-width: 550px;
|
||||
--container-widget-width: 550px;
|
||||
--container-widget-flex-grow: 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-6e9f717 {
|
||||
--spacer-size: 40px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-5c528e4 {
|
||||
width: var(--container-widget-width, 650px);
|
||||
max-width: 650px;
|
||||
--container-widget-width: 650px;
|
||||
--container-widget-flex-grow: 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-91f4ce2 {
|
||||
--spacer-size: 70px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-3f53236 {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-338906e {
|
||||
--spacer-size: 200px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-8ce6b0c {
|
||||
--spacer-size: 120px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-10c3b5d {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-33ce1c7 {
|
||||
--spacer-size: 30px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-2c3ed21 {
|
||||
--spacer-size: 60px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-acc0251 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-89595ac {
|
||||
--spacer-size: 130px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-9616803:not(.elementor-motion-effects-element-type-background),
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-9616803
|
||||
> .elementor-motion-effects-container
|
||||
> .elementor-motion-effects-layer {
|
||||
background-image: url("http://gomoto.like-themes.com/wp-content/uploads/2020/04/waves_white-15.png");
|
||||
background-position: center right;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-9616803 {
|
||||
overflow: hidden;
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-9616803
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-fcca7a9 {
|
||||
--spacer-size: 190px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-02b28ff {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f3c2182 {
|
||||
width: var(--container-widget-width, 560px);
|
||||
max-width: 560px;
|
||||
--container-widget-width: 560px;
|
||||
--container-widget-flex-grow: 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-3e6da68 {
|
||||
--spacer-size: 70px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-fec08dc {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4470eff {
|
||||
--spacer-size: 230px;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-71ca6e2 {
|
||||
right: -378px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-71ca6e2 {
|
||||
left: -378px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-71ca6e2 {
|
||||
top: 280px;
|
||||
z-index: 6;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-400832d {
|
||||
right: 195.2px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-400832d {
|
||||
left: 195.2px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-400832d {
|
||||
top: 402px;
|
||||
z-index: 6;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-2acc9c2 {
|
||||
width: var(--container-widget-width, 391px);
|
||||
max-width: 391px;
|
||||
--container-widget-width: 391px;
|
||||
--container-widget-flex-grow: 0;
|
||||
top: 552px;
|
||||
z-index: 6;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-2acc9c2 {
|
||||
right: 531.9px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-2acc9c2 {
|
||||
left: 531.9px;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-adf4ed8 {
|
||||
right: 339.9px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-adf4ed8 {
|
||||
left: 339.9px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-adf4ed8 {
|
||||
top: 316px;
|
||||
z-index: 6;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-c20ad92 {
|
||||
width: var(--container-widget-width, 236px);
|
||||
max-width: 236px;
|
||||
--container-widget-width: 236px;
|
||||
--container-widget-flex-grow: 0;
|
||||
top: 506px;
|
||||
z-index: 6;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-c20ad92 {
|
||||
right: 322.9px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-c20ad92 {
|
||||
left: 322.9px;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-141fb4b {
|
||||
left: -32px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-141fb4b {
|
||||
right: -32px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-141fb4b {
|
||||
top: 48px;
|
||||
z-index: 5;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-5785742 {
|
||||
left: 232px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-5785742 {
|
||||
right: 232px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-5785742 {
|
||||
top: 146px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-313bbd6 {
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-313bbd6
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-c4a5850 {
|
||||
--spacer-size: 50px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-5f3e28a {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f8f026d {
|
||||
--spacer-size: 90px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-a9aa17d {
|
||||
overflow: hidden;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-12e3154 {
|
||||
--spacer-size: 64px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-446c840 {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-e5a293d {
|
||||
width: var(--container-widget-width, 580px);
|
||||
max-width: 580px;
|
||||
--container-widget-width: 580px;
|
||||
--container-widget-flex-grow: 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-37fd43c {
|
||||
--spacer-size: 30px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-ec80edb
|
||||
> .elementor-widget-container {
|
||||
padding: 0 0 0 30px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-62b66ee {
|
||||
--spacer-size: 40px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-edb3a82 {
|
||||
width: auto;
|
||||
max-width: auto;
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-59e0a2c {
|
||||
width: auto;
|
||||
max-width: auto;
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-59e0a2c
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 0 26px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-1d0906f {
|
||||
--spacer-size: 100px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-f0ee617:not(.elementor-motion-effects-element-type-background)
|
||||
> .elementor-widget-wrap,
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-f0ee617
|
||||
> .elementor-widget-wrap
|
||||
> .elementor-motion-effects-container
|
||||
> .elementor-motion-effects-layer {
|
||||
background-image: url("http://gomoto.like-themes.com/wp-content/uploads/2019/06/app-bg.png");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-f0ee617
|
||||
> .elementor-element-populated {
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-f0ee617
|
||||
> .elementor-element-populated
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-1e1e41c {
|
||||
--spacer-size: 100px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-5d7559a
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 -190px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-5d7559a {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-39e331e
|
||||
> .elementor-container
|
||||
> .elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-7836da0 {
|
||||
--spacer-size: 62px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f7a5fcd {
|
||||
text-align: left;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-905f17c {
|
||||
--spacer-size: 62px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-f2393f1.elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4841cd9 {
|
||||
--spacer-size: 0px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-a20eda9 {
|
||||
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-a20eda9
|
||||
> .elementor-background-overlay {
|
||||
transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-d2bf675 {
|
||||
--spacer-size: 40px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-ba17eb5 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-ad1e806 {
|
||||
--spacer-size: 20px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-9195d06 {
|
||||
--spacer-size: 60px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4262bb2 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4bde9a9 {
|
||||
--spacer-size: 130px;
|
||||
}
|
||||
@media (max-width: 1199px) and (min-width: 768px) {
|
||||
.elementor-13198 .elementor-element.elementor-element-2aa57a9 {
|
||||
width: 100%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-895faab {
|
||||
width: 100%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-81eac60 {
|
||||
width: 40%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-3dd85c8 {
|
||||
width: 60%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-04ee0a8 {
|
||||
width: 100%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4764d44 {
|
||||
width: 100%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-a75f740 {
|
||||
width: 100%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f0ee617 {
|
||||
width: 100%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-b9c7bf7 {
|
||||
width: 100%;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f2393f1 {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-2aa57a9.elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
justify-content: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-22b375f {
|
||||
--spacer-size: 160px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-953a708 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-b4dcd3b {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-3abb7e9 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-2a188b7 {
|
||||
--spacer-size: 0px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-04ddb97
|
||||
> .elementor-widget-container {
|
||||
margin: 65px 0 34px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-6916393 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-23a754b {
|
||||
--spacer-size: 48px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-3dd85c8.elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
justify-content: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f545343 {
|
||||
padding: 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-24547a3 {
|
||||
--spacer-size: 64px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-feb1266
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 16px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-feb1266 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-67f2bc7 {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-91f4ce2 {
|
||||
--spacer-size: 24px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-3f53236 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-338906e {
|
||||
--spacer-size: 100px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-8ce6b0c {
|
||||
--spacer-size: 70px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-2c3ed21 {
|
||||
--spacer-size: 20px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-89595ac {
|
||||
--spacer-size: 90px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-04ee0a8.elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
justify-content: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-fcca7a9 {
|
||||
--spacer-size: 0px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-02b28ff {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f3c2182 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-fec08dc {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4470eff {
|
||||
--spacer-size: 80px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-71ca6e2
|
||||
> .elementor-widget-container {
|
||||
margin: 0;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-71ca6e2 {
|
||||
right: -409px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-71ca6e2 {
|
||||
left: -409px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-71ca6e2 {
|
||||
top: 12px;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-400832d {
|
||||
right: 90.2px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-400832d {
|
||||
left: 90.2px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-400832d {
|
||||
top: 143px;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-adf4ed8 {
|
||||
right: 253.9px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-adf4ed8 {
|
||||
left: 253.9px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-adf4ed8 {
|
||||
top: 96px;
|
||||
}
|
||||
body:not(.rtl) .elementor-13198 .elementor-element.elementor-element-141fb4b {
|
||||
left: -40px;
|
||||
}
|
||||
body.rtl .elementor-13198 .elementor-element.elementor-element-141fb4b {
|
||||
right: -40px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-141fb4b {
|
||||
top: -34px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-5785742
|
||||
> .elementor-widget-container {
|
||||
margin: 0 -178px 0 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-c4a5850 {
|
||||
--spacer-size: 15px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f8f026d {
|
||||
--spacer-size: 60px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-a75f740.elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
justify-content: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-12e3154 {
|
||||
--spacer-size: 0px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-446c840 {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-1d0906f {
|
||||
--spacer-size: 0px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-f0ee617.elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
justify-content: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-5d7559a {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-b9c7bf7.elementor-column
|
||||
> .elementor-widget-wrap {
|
||||
justify-content: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f7a5fcd {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-905f17c {
|
||||
--spacer-size: 16px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4841cd9 {
|
||||
--spacer-size: 64px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-d2bf675 {
|
||||
--spacer-size: 0px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4bde9a9 {
|
||||
--spacer-size: 90px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.elementor-13198 .elementor-element.elementor-element-91f4ce2 {
|
||||
--spacer-size: 48px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-3e6da68 {
|
||||
--spacer-size: 24px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-5785742
|
||||
> .elementor-widget-container {
|
||||
margin: -34px -81px 25px 0;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-e5a293d {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-ec80edb
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 0 -30px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-59e0a2c
|
||||
> .elementor-widget-container {
|
||||
margin: 0 0 0 9px;
|
||||
}
|
||||
.elementor-13198
|
||||
.elementor-element.elementor-element-5d7559a
|
||||
> .elementor-widget-container {
|
||||
margin: -37px 0 -66px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-f7a5fcd {
|
||||
text-align: center;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-d2bf675 {
|
||||
--spacer-size: 0px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-9195d06 {
|
||||
--spacer-size: 40px;
|
||||
}
|
||||
.elementor-13198 .elementor-element.elementor-element-4bde9a9 {
|
||||
--spacer-size: 120px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,576 @@
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||
U+FE2E-FE2F;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
|
||||
U+03A3-03FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||
U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
|
||||
U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2)
|
||||
format("woff2");
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
|
||||
U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
|
||||
U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Roboto Slab";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url(http://gomoto.like-themes.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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+20AC, U+2122, U+2191, U+2193,
|
||||
U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
.elementor-kit-13200 {
|
||||
--e-global-color-primary: #6ec1e4;
|
||||
--e-global-color-secondary: #54595f;
|
||||
--e-global-color-text: #7a7a7a;
|
||||
--e-global-color-accent: #61ce70;
|
||||
--e-global-color-711655fe: #4054b2;
|
||||
--e-global-color-4f00e4c5: #23a455;
|
||||
--e-global-color-313fc4d3: #000;
|
||||
--e-global-color-74b56221: #fff;
|
||||
--e-global-typography-primary-font-family: "Roboto";
|
||||
--e-global-typography-primary-font-weight: 600;
|
||||
--e-global-typography-secondary-font-family: "Roboto Slab";
|
||||
--e-global-typography-secondary-font-weight: 400;
|
||||
--e-global-typography-text-font-family: "Roboto";
|
||||
--e-global-typography-text-font-weight: 400;
|
||||
--e-global-typography-accent-font-family: "Roboto";
|
||||
--e-global-typography-accent-font-weight: 500;
|
||||
}
|
||||
.elementor-section.elementor-section-boxed > .elementor-container {
|
||||
max-width: 1570px;
|
||||
}
|
||||
.e-con {
|
||||
--container-max-width: 1570px;
|
||||
}
|
||||
.elementor-widget:not(:last-child) {
|
||||
margin-block-end: 0px;
|
||||
}
|
||||
.elementor-element {
|
||||
--widgets-spacing: 0px 0px;
|
||||
--widgets-spacing-row: 0px;
|
||||
--widgets-spacing-column: 0px;
|
||||
}
|
||||
{
|
||||
}
|
||||
h1.entry-title {
|
||||
display: var(--page-title-display);
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.elementor-section.elementor-section-boxed > .elementor-container {
|
||||
max-width: 1024px;
|
||||
}
|
||||
.e-con {
|
||||
--container-max-width: 1024px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.elementor-section.elementor-section-boxed > .elementor-container {
|
||||
max-width: 767px;
|
||||
}
|
||||
.e-con {
|
||||
--container-max-width: 767px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
/*! elementor - v3.29.0 - 28-05-2025 */
|
||||
"use strict";
|
||||
(self.webpackChunkelementorFrontend =
|
||||
self.webpackChunkelementorFrontend || []).push([
|
||||
[77],
|
||||
{
|
||||
2439: (e, t) => {
|
||||
Object.defineProperty(t, "__esModule", { value: !0 }),
|
||||
(t.default = void 0);
|
||||
class StretchedSection extends elementorModules.frontend.handlers
|
||||
.StretchedElement {
|
||||
getStretchedClass() {
|
||||
return "elementor-section-stretched";
|
||||
}
|
||||
getStretchSettingName() {
|
||||
return "stretch_section";
|
||||
}
|
||||
getStretchActiveValue() {
|
||||
return "section-stretched";
|
||||
}
|
||||
}
|
||||
t.default = StretchedSection;
|
||||
},
|
||||
},
|
||||
]);
|
||||
@@ -0,0 +1,378 @@
|
||||
/*! elementor - v3.29.0 - 28-05-2025 */
|
||||
"use strict";
|
||||
(self.webpackChunkelementorFrontend =
|
||||
self.webpackChunkelementorFrontend || []).push([
|
||||
[557],
|
||||
{
|
||||
628: (e, t, i) => {
|
||||
Object.defineProperty(t, "__esModule", { value: !0 }),
|
||||
(t.default = void 0),
|
||||
i(4846),
|
||||
i(9655);
|
||||
class BackgroundSlideshow extends elementorModules.frontend.handlers
|
||||
.SwiperBase {
|
||||
getDefaultSettings() {
|
||||
return {
|
||||
classes: {
|
||||
swiperContainer: "elementor-background-slideshow swiper",
|
||||
swiperWrapper: "swiper-wrapper",
|
||||
swiperSlide: "elementor-background-slideshow__slide swiper-slide",
|
||||
swiperPreloader: "swiper-lazy-preloader",
|
||||
slideBackground: "elementor-background-slideshow__slide__image",
|
||||
kenBurns: "elementor-ken-burns",
|
||||
kenBurnsActive: "elementor-ken-burns--active",
|
||||
kenBurnsIn: "elementor-ken-burns--in",
|
||||
kenBurnsOut: "elementor-ken-burns--out",
|
||||
},
|
||||
};
|
||||
}
|
||||
getSwiperOptions() {
|
||||
const e = this.getElementSettings(),
|
||||
t = {
|
||||
grabCursor: !1,
|
||||
slidesPerView: 1,
|
||||
slidesPerGroup: 1,
|
||||
loop: "yes" === e.background_slideshow_loop,
|
||||
speed: e.background_slideshow_transition_duration,
|
||||
autoplay: {
|
||||
delay: e.background_slideshow_slide_duration,
|
||||
stopOnLastSlide: !e.background_slideshow_loop,
|
||||
},
|
||||
handleElementorBreakpoints: !0,
|
||||
on: {
|
||||
slideChange: () => {
|
||||
e.background_slideshow_ken_burns && this.handleKenBurns();
|
||||
},
|
||||
},
|
||||
};
|
||||
switch (
|
||||
("yes" === e.background_slideshow_loop &&
|
||||
(t.loopedSlides = this.getSlidesCount()),
|
||||
e.background_slideshow_slide_transition)
|
||||
) {
|
||||
case "fade":
|
||||
(t.effect = "fade"), (t.fadeEffect = { crossFade: !0 });
|
||||
break;
|
||||
case "slide_down":
|
||||
(t.autoplay.reverseDirection = !0), (t.direction = "vertical");
|
||||
break;
|
||||
case "slide_up":
|
||||
t.direction = "vertical";
|
||||
}
|
||||
return (
|
||||
"yes" === e.background_slideshow_lazyload &&
|
||||
(t.lazy = { loadPrevNext: !0, loadPrevNextAmount: 1 }),
|
||||
t
|
||||
);
|
||||
}
|
||||
buildSwiperElements() {
|
||||
const e = this.getSettings("classes"),
|
||||
t = this.getElementSettings(),
|
||||
i =
|
||||
"slide_left" === t.background_slideshow_slide_transition
|
||||
? "ltr"
|
||||
: "rtl",
|
||||
o = jQuery("<div>", { class: e.swiperContainer, dir: i }),
|
||||
n = jQuery("<div>", { class: e.swiperWrapper }),
|
||||
s = t.background_slideshow_ken_burns,
|
||||
r = "yes" === t.background_slideshow_lazyload;
|
||||
let d = e.slideBackground;
|
||||
if (s) {
|
||||
d += " " + e.kenBurns;
|
||||
const i =
|
||||
"in" === t.background_slideshow_ken_burns_zoom_direction
|
||||
? "kenBurnsIn"
|
||||
: "kenBurnsOut";
|
||||
d += " " + e[i];
|
||||
}
|
||||
r && (d += " swiper-lazy"),
|
||||
(this.elements.$slides = jQuery()),
|
||||
t.background_slideshow_gallery.forEach((t) => {
|
||||
const i = jQuery("<div>", { class: e.swiperSlide });
|
||||
let o;
|
||||
if (r) {
|
||||
const i = jQuery("<div>", { class: e.swiperPreloader });
|
||||
(o = jQuery("<div>", { class: d, "data-background": t.url })),
|
||||
o.append(i);
|
||||
} else
|
||||
o = jQuery("<div>", {
|
||||
class: d,
|
||||
style: 'background-image: url("' + t.url + '");',
|
||||
});
|
||||
i.append(o),
|
||||
n.append(i),
|
||||
(this.elements.$slides = this.elements.$slides.add(i));
|
||||
}),
|
||||
o.append(n),
|
||||
this.$element.prepend(o),
|
||||
(this.elements.$backgroundSlideShowContainer = o);
|
||||
}
|
||||
async initSlider() {
|
||||
if (1 >= this.getSlidesCount()) return;
|
||||
const e = this.getElementSettings(),
|
||||
t = elementorFrontend.utils.swiper;
|
||||
(this.swiper = await new t(
|
||||
this.elements.$backgroundSlideShowContainer,
|
||||
this.getSwiperOptions()
|
||||
)),
|
||||
this.elements.$backgroundSlideShowContainer.data(
|
||||
"swiper",
|
||||
this.swiper
|
||||
),
|
||||
e.background_slideshow_ken_burns && this.handleKenBurns();
|
||||
}
|
||||
activate() {
|
||||
this.buildSwiperElements(), this.initSlider();
|
||||
}
|
||||
deactivate() {
|
||||
this.swiper &&
|
||||
(this.swiper.destroy(),
|
||||
this.elements.$backgroundSlideShowContainer.remove());
|
||||
}
|
||||
run() {
|
||||
"slideshow" === this.getElementSettings("background_background")
|
||||
? this.activate()
|
||||
: this.deactivate();
|
||||
}
|
||||
onInit() {
|
||||
super.onInit(),
|
||||
this.getElementSettings("background_slideshow_gallery") &&
|
||||
this.run();
|
||||
}
|
||||
onDestroy() {
|
||||
super.onDestroy(), this.deactivate();
|
||||
}
|
||||
onElementChange(e) {
|
||||
"background_background" === e && this.run();
|
||||
}
|
||||
}
|
||||
t.default = BackgroundSlideshow;
|
||||
},
|
||||
3031: (e, t, i) => {
|
||||
Object.defineProperty(t, "__esModule", { value: !0 }),
|
||||
(t.default = void 0),
|
||||
i(4846),
|
||||
i(6211);
|
||||
class BackgroundVideo extends elementorModules.frontend.handlers.Base {
|
||||
getDefaultSettings() {
|
||||
return {
|
||||
selectors: {
|
||||
backgroundVideoContainer: ".elementor-background-video-container",
|
||||
backgroundVideoEmbed: ".elementor-background-video-embed",
|
||||
backgroundVideoHosted: ".elementor-background-video-hosted",
|
||||
},
|
||||
};
|
||||
}
|
||||
getDefaultElements() {
|
||||
const e = this.getSettings("selectors"),
|
||||
t = {
|
||||
$backgroundVideoContainer: this.$element.find(
|
||||
e.backgroundVideoContainer
|
||||
),
|
||||
};
|
||||
return (
|
||||
(t.$backgroundVideoEmbed = t.$backgroundVideoContainer.children(
|
||||
e.backgroundVideoEmbed
|
||||
)),
|
||||
(t.$backgroundVideoHosted = t.$backgroundVideoContainer.children(
|
||||
e.backgroundVideoHosted
|
||||
)),
|
||||
t
|
||||
);
|
||||
}
|
||||
calcVideosSize(e) {
|
||||
let t = "16:9";
|
||||
"vimeo" === this.videoType && (t = e[0].width + ":" + e[0].height);
|
||||
const i = this.elements.$backgroundVideoContainer.outerWidth(),
|
||||
o = this.elements.$backgroundVideoContainer.outerHeight(),
|
||||
n = t.split(":"),
|
||||
s = n[0] / n[1],
|
||||
r = i / o > s;
|
||||
return { width: r ? i : o * s, height: r ? i / s : o };
|
||||
}
|
||||
changeVideoSize() {
|
||||
if ("hosted" !== this.videoType && !this.player) return;
|
||||
let e;
|
||||
if (
|
||||
("youtube" === this.videoType
|
||||
? (e = jQuery(this.player.getIframe()))
|
||||
: "vimeo" === this.videoType
|
||||
? (e = jQuery(this.player.element))
|
||||
: "hosted" === this.videoType &&
|
||||
(e = this.elements.$backgroundVideoHosted),
|
||||
!e)
|
||||
)
|
||||
return;
|
||||
const t = this.calcVideosSize(e);
|
||||
e.width(t.width).height(t.height);
|
||||
}
|
||||
startVideoLoop(e) {
|
||||
if (!this.player.getIframe().contentWindow) return;
|
||||
const t = this.getElementSettings(),
|
||||
i = t.background_video_start || 0,
|
||||
o = t.background_video_end;
|
||||
if (!t.background_play_once || e) {
|
||||
if ((this.player.seekTo(i), o)) {
|
||||
setTimeout(() => {
|
||||
this.startVideoLoop(!1);
|
||||
}, 1e3 * (o - i + 1));
|
||||
}
|
||||
} else this.player.stopVideo();
|
||||
}
|
||||
prepareVimeoVideo(e, t) {
|
||||
const i = this.getElementSettings(),
|
||||
o = {
|
||||
url: t,
|
||||
width: this.elements.$backgroundVideoContainer.outerWidth().width,
|
||||
autoplay: !0,
|
||||
loop: !i.background_play_once,
|
||||
transparent: !0,
|
||||
background: !0,
|
||||
muted: !0,
|
||||
};
|
||||
i.background_privacy_mode && (o.dnt = !0),
|
||||
(this.player = new e.Player(
|
||||
this.elements.$backgroundVideoContainer,
|
||||
o
|
||||
)),
|
||||
this.handleVimeoStartEndTimes(i),
|
||||
this.player.ready().then(() => {
|
||||
jQuery(this.player.element).addClass(
|
||||
"elementor-background-video-embed"
|
||||
),
|
||||
this.changeVideoSize();
|
||||
});
|
||||
}
|
||||
handleVimeoStartEndTimes(e) {
|
||||
e.background_video_start &&
|
||||
this.player.on("play", (t) => {
|
||||
0 === t.seconds &&
|
||||
this.player.setCurrentTime(e.background_video_start);
|
||||
}),
|
||||
this.player.on("timeupdate", (t) => {
|
||||
e.background_video_end &&
|
||||
e.background_video_end < t.seconds &&
|
||||
(e.background_play_once
|
||||
? this.player.pause()
|
||||
: this.player.setCurrentTime(e.background_video_start)),
|
||||
this.player.getDuration().then((i) => {
|
||||
e.background_video_start &&
|
||||
!e.background_video_end &&
|
||||
t.seconds > i - 0.5 &&
|
||||
this.player.setCurrentTime(e.background_video_start);
|
||||
});
|
||||
});
|
||||
}
|
||||
prepareYTVideo(e, t) {
|
||||
const i = this.elements.$backgroundVideoContainer,
|
||||
o = this.getElementSettings();
|
||||
let n = e.PlayerState.PLAYING;
|
||||
window.chrome && (n = e.PlayerState.UNSTARTED);
|
||||
const s = {
|
||||
videoId: t,
|
||||
events: {
|
||||
onReady: () => {
|
||||
this.player.mute(),
|
||||
this.changeVideoSize(),
|
||||
this.startVideoLoop(!0),
|
||||
this.player.playVideo();
|
||||
},
|
||||
onStateChange: (t) => {
|
||||
switch (t.data) {
|
||||
case n:
|
||||
i.removeClass("elementor-invisible elementor-loading");
|
||||
break;
|
||||
case e.PlayerState.ENDED:
|
||||
"function" == typeof this.player.seekTo &&
|
||||
this.player.seekTo(o.background_video_start || 0),
|
||||
o.background_play_once && this.player.destroy();
|
||||
}
|
||||
},
|
||||
},
|
||||
playerVars: {
|
||||
controls: 0,
|
||||
rel: 0,
|
||||
playsinline: 1,
|
||||
cc_load_policy: 0,
|
||||
},
|
||||
};
|
||||
o.background_privacy_mode &&
|
||||
((s.host = "https://www.youtube-nocookie.com"),
|
||||
(s.origin = window.location.hostname)),
|
||||
i.addClass("elementor-loading elementor-invisible"),
|
||||
(this.player = new e.Player(
|
||||
this.elements.$backgroundVideoEmbed[0],
|
||||
s
|
||||
));
|
||||
}
|
||||
activate() {
|
||||
let e,
|
||||
t = this.getElementSettings("background_video_link");
|
||||
const i = this.getElementSettings("background_play_once");
|
||||
if (
|
||||
(-1 !== t.indexOf("vimeo.com")
|
||||
? ((this.videoType = "vimeo"),
|
||||
(this.apiProvider = elementorFrontend.utils.vimeo))
|
||||
: t.match(
|
||||
/^(?:https?:\/\/)?(?:www\.)?(?:m\.)?(?:youtu\.be\/|youtube\.com)/
|
||||
) &&
|
||||
((this.videoType = "youtube"),
|
||||
(this.apiProvider = elementorFrontend.utils.youtube)),
|
||||
this.apiProvider)
|
||||
)
|
||||
(e = this.apiProvider.getVideoIDFromURL(t)),
|
||||
this.apiProvider.onApiReady((i) => {
|
||||
"youtube" === this.videoType && this.prepareYTVideo(i, e),
|
||||
"vimeo" === this.videoType && this.prepareVimeoVideo(i, t);
|
||||
});
|
||||
else {
|
||||
this.videoType = "hosted";
|
||||
const e = this.getElementSettings("background_video_start"),
|
||||
o = this.getElementSettings("background_video_end");
|
||||
(e || o) && (t += "#t=" + (e || 0) + (o ? "," + o : "")),
|
||||
this.elements.$backgroundVideoHosted
|
||||
.attr("src", t)
|
||||
.one("canplay", this.changeVideoSize.bind(this)),
|
||||
i &&
|
||||
this.elements.$backgroundVideoHosted.on("ended", () => {
|
||||
this.elements.$backgroundVideoHosted.hide();
|
||||
});
|
||||
}
|
||||
elementorFrontend.elements.$window.on(
|
||||
"resize elementor/bg-video/recalc",
|
||||
this.changeVideoSize
|
||||
);
|
||||
}
|
||||
deactivate() {
|
||||
("youtube" === this.videoType && this.player.getIframe()) ||
|
||||
"vimeo" === this.videoType
|
||||
? this.player.destroy()
|
||||
: this.elements.$backgroundVideoHosted
|
||||
.removeAttr("src")
|
||||
.off("ended"),
|
||||
elementorFrontend.elements.$window.off(
|
||||
"resize",
|
||||
this.changeVideoSize
|
||||
);
|
||||
}
|
||||
run() {
|
||||
const e = this.getElementSettings();
|
||||
(e.background_play_on_mobile ||
|
||||
"mobile" !== elementorFrontend.getCurrentDeviceMode()) &&
|
||||
("video" === e.background_background && e.background_video_link
|
||||
? this.activate()
|
||||
: this.deactivate());
|
||||
}
|
||||
onInit() {
|
||||
super.onInit(...arguments),
|
||||
(this.changeVideoSize = this.changeVideoSize.bind(this)),
|
||||
this.run();
|
||||
}
|
||||
onElementChange(e) {
|
||||
"background_background" === e && this.run();
|
||||
}
|
||||
}
|
||||
t.default = BackgroundVideo;
|
||||
},
|
||||
},
|
||||
]);
|
||||
@@ -0,0 +1,68 @@
|
||||
/*! elementor - v3.29.0 - 28-05-2025 */
|
||||
"use strict";
|
||||
(self.webpackChunkelementorFrontend =
|
||||
self.webpackChunkelementorFrontend || []).push([
|
||||
[212],
|
||||
{
|
||||
5362: (e, t, r) => {
|
||||
Object.defineProperty(t, "__esModule", { value: !0 }),
|
||||
(t.default = void 0),
|
||||
r(4846),
|
||||
r(6211);
|
||||
class TextEditor extends elementorModules.frontend.handlers.Base {
|
||||
getDefaultSettings() {
|
||||
return {
|
||||
selectors: { paragraph: "p:first" },
|
||||
classes: {
|
||||
dropCap: "elementor-drop-cap",
|
||||
dropCapLetter: "elementor-drop-cap-letter",
|
||||
},
|
||||
};
|
||||
}
|
||||
getDefaultElements() {
|
||||
const e = this.getSettings("selectors"),
|
||||
t = this.getSettings("classes"),
|
||||
r = jQuery("<span>", { class: t.dropCap }),
|
||||
p = jQuery("<span>", { class: t.dropCapLetter });
|
||||
return (
|
||||
r.append(p),
|
||||
{
|
||||
$paragraph: this.$element.find(e.paragraph),
|
||||
$dropCap: r,
|
||||
$dropCapLetter: p,
|
||||
}
|
||||
);
|
||||
}
|
||||
wrapDropCap() {
|
||||
if (!this.getElementSettings("drop_cap"))
|
||||
return void (
|
||||
this.dropCapLetter &&
|
||||
(this.elements.$dropCap.remove(),
|
||||
this.elements.$paragraph.prepend(this.dropCapLetter),
|
||||
(this.dropCapLetter = ""))
|
||||
);
|
||||
const e = this.elements.$paragraph;
|
||||
if (!e.length) return;
|
||||
const t = e.html().replace(/ /g, " "),
|
||||
r = t.match(/^ *([^ ] ?)/);
|
||||
if (!r) return;
|
||||
const p = r[1],
|
||||
s = p.trim();
|
||||
if ("<" === s) return;
|
||||
(this.dropCapLetter = p), this.elements.$dropCapLetter.text(s);
|
||||
const a = t
|
||||
.slice(p.length)
|
||||
.replace(/^ */, (e) => new Array(e.length + 1).join(" "));
|
||||
e.html(a).prepend(this.elements.$dropCap);
|
||||
}
|
||||
onInit() {
|
||||
super.onInit(...arguments), this.wrapDropCap();
|
||||
}
|
||||
onElementChange(e) {
|
||||
"drop_cap" === e && this.wrapDropCap();
|
||||
}
|
||||
}
|
||||
t.default = TextEditor;
|
||||
},
|
||||
},
|
||||
]);
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 676 KiB |
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 182 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 9.8 KiB |
|
After Width: | Height: | Size: 946 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 790 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 294 KiB |
|
After Width: | Height: | Size: 542 KiB |
1080
preview.themeforest.net (1)/gomoto.like-themes.com/wp-includes/css/dashicons.min.css
vendored
Normal file
235
preview.themeforest.net (1)/gomoto.like-themes.com/wp-includes/js/dist/hooks.min.js
vendored
Normal file
@@ -0,0 +1,235 @@
|
||||
/*! This file is auto-generated */
|
||||
(() => {
|
||||
"use strict";
|
||||
var t = {
|
||||
d: (e, n) => {
|
||||
for (var r in n)
|
||||
t.o(n, r) &&
|
||||
!t.o(e, r) &&
|
||||
Object.defineProperty(e, r, { enumerable: !0, get: n[r] });
|
||||
},
|
||||
o: (t, e) => Object.prototype.hasOwnProperty.call(t, e),
|
||||
r: (t) => {
|
||||
"undefined" != typeof Symbol &&
|
||||
Symbol.toStringTag &&
|
||||
Object.defineProperty(t, Symbol.toStringTag, { value: "Module" }),
|
||||
Object.defineProperty(t, "__esModule", { value: !0 });
|
||||
},
|
||||
},
|
||||
e = {};
|
||||
t.r(e),
|
||||
t.d(e, {
|
||||
actions: () => P,
|
||||
addAction: () => A,
|
||||
addFilter: () => m,
|
||||
applyFilters: () => w,
|
||||
applyFiltersAsync: () => I,
|
||||
createHooks: () => h,
|
||||
currentAction: () => x,
|
||||
currentFilter: () => T,
|
||||
defaultHooks: () => f,
|
||||
didAction: () => j,
|
||||
didFilter: () => z,
|
||||
doAction: () => g,
|
||||
doActionAsync: () => k,
|
||||
doingAction: () => O,
|
||||
doingFilter: () => S,
|
||||
filters: () => Z,
|
||||
hasAction: () => _,
|
||||
hasFilter: () => v,
|
||||
removeAction: () => p,
|
||||
removeAllActions: () => F,
|
||||
removeAllFilters: () => b,
|
||||
removeFilter: () => y,
|
||||
});
|
||||
const n = function (t) {
|
||||
return "string" != typeof t || "" === t
|
||||
? (console.error("The namespace must be a non-empty string."), !1)
|
||||
: !!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(t) ||
|
||||
(console.error(
|
||||
"The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."
|
||||
),
|
||||
!1);
|
||||
};
|
||||
const r = function (t) {
|
||||
return "string" != typeof t || "" === t
|
||||
? (console.error("The hook name must be a non-empty string."), !1)
|
||||
: /^__/.test(t)
|
||||
? (console.error("The hook name cannot begin with `__`."), !1)
|
||||
: !!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(t) ||
|
||||
(console.error(
|
||||
"The hook name can only contain numbers, letters, dashes, periods and underscores."
|
||||
),
|
||||
!1);
|
||||
};
|
||||
const o = function (t, e) {
|
||||
return function (o, i, s, c = 10) {
|
||||
const l = t[e];
|
||||
if (!r(o)) return;
|
||||
if (!n(i)) return;
|
||||
if ("function" != typeof s)
|
||||
return void console.error("The hook callback must be a function.");
|
||||
if ("number" != typeof c)
|
||||
return void console.error(
|
||||
"If specified, the hook priority must be a number."
|
||||
);
|
||||
const a = { callback: s, priority: c, namespace: i };
|
||||
if (l[o]) {
|
||||
const t = l[o].handlers;
|
||||
let e;
|
||||
for (e = t.length; e > 0 && !(c >= t[e - 1].priority); e--);
|
||||
e === t.length ? (t[e] = a) : t.splice(e, 0, a),
|
||||
l.__current.forEach((t) => {
|
||||
t.name === o && t.currentIndex >= e && t.currentIndex++;
|
||||
});
|
||||
} else l[o] = { handlers: [a], runs: 0 };
|
||||
"hookAdded" !== o && t.doAction("hookAdded", o, i, s, c);
|
||||
};
|
||||
};
|
||||
const i = function (t, e, o = !1) {
|
||||
return function (i, s) {
|
||||
const c = t[e];
|
||||
if (!r(i)) return;
|
||||
if (!o && !n(s)) return;
|
||||
if (!c[i]) return 0;
|
||||
let l = 0;
|
||||
if (o)
|
||||
(l = c[i].handlers.length), (c[i] = { runs: c[i].runs, handlers: [] });
|
||||
else {
|
||||
const t = c[i].handlers;
|
||||
for (let e = t.length - 1; e >= 0; e--)
|
||||
t[e].namespace === s &&
|
||||
(t.splice(e, 1),
|
||||
l++,
|
||||
c.__current.forEach((t) => {
|
||||
t.name === i && t.currentIndex >= e && t.currentIndex--;
|
||||
}));
|
||||
}
|
||||
return "hookRemoved" !== i && t.doAction("hookRemoved", i, s), l;
|
||||
};
|
||||
};
|
||||
const s = function (t, e) {
|
||||
return function (n, r) {
|
||||
const o = t[e];
|
||||
return void 0 !== r
|
||||
? n in o && o[n].handlers.some((t) => t.namespace === r)
|
||||
: n in o;
|
||||
};
|
||||
};
|
||||
const c = function (t, e, n, r) {
|
||||
return function (o, ...i) {
|
||||
const s = t[e];
|
||||
s[o] || (s[o] = { handlers: [], runs: 0 }), s[o].runs++;
|
||||
const c = s[o].handlers;
|
||||
if (!c || !c.length) return n ? i[0] : void 0;
|
||||
const l = { name: o, currentIndex: 0 };
|
||||
return (
|
||||
r
|
||||
? async function () {
|
||||
try {
|
||||
s.__current.add(l);
|
||||
let t = n ? i[0] : void 0;
|
||||
for (; l.currentIndex < c.length; ) {
|
||||
const e = c[l.currentIndex];
|
||||
(t = await e.callback.apply(null, i)),
|
||||
n && (i[0] = t),
|
||||
l.currentIndex++;
|
||||
}
|
||||
return n ? t : void 0;
|
||||
} finally {
|
||||
s.__current.delete(l);
|
||||
}
|
||||
}
|
||||
: function () {
|
||||
try {
|
||||
s.__current.add(l);
|
||||
let t = n ? i[0] : void 0;
|
||||
for (; l.currentIndex < c.length; ) {
|
||||
(t = c[l.currentIndex].callback.apply(null, i)),
|
||||
n && (i[0] = t),
|
||||
l.currentIndex++;
|
||||
}
|
||||
return n ? t : void 0;
|
||||
} finally {
|
||||
s.__current.delete(l);
|
||||
}
|
||||
}
|
||||
)();
|
||||
};
|
||||
};
|
||||
const l = function (t, e) {
|
||||
return function () {
|
||||
var n;
|
||||
const r = t[e],
|
||||
o = Array.from(r.__current);
|
||||
return null !== (n = o.at(-1)?.name) && void 0 !== n ? n : null;
|
||||
};
|
||||
};
|
||||
const a = function (t, e) {
|
||||
return function (n) {
|
||||
const r = t[e];
|
||||
return void 0 === n
|
||||
? r.__current.size > 0
|
||||
: Array.from(r.__current).some((t) => t.name === n);
|
||||
};
|
||||
};
|
||||
const u = function (t, e) {
|
||||
return function (n) {
|
||||
const o = t[e];
|
||||
if (r(n)) return o[n] && o[n].runs ? o[n].runs : 0;
|
||||
};
|
||||
};
|
||||
class d {
|
||||
constructor() {
|
||||
(this.actions = Object.create(null)),
|
||||
(this.actions.__current = new Set()),
|
||||
(this.filters = Object.create(null)),
|
||||
(this.filters.__current = new Set()),
|
||||
(this.addAction = o(this, "actions")),
|
||||
(this.addFilter = o(this, "filters")),
|
||||
(this.removeAction = i(this, "actions")),
|
||||
(this.removeFilter = i(this, "filters")),
|
||||
(this.hasAction = s(this, "actions")),
|
||||
(this.hasFilter = s(this, "filters")),
|
||||
(this.removeAllActions = i(this, "actions", !0)),
|
||||
(this.removeAllFilters = i(this, "filters", !0)),
|
||||
(this.doAction = c(this, "actions", !1, !1)),
|
||||
(this.doActionAsync = c(this, "actions", !1, !0)),
|
||||
(this.applyFilters = c(this, "filters", !0, !1)),
|
||||
(this.applyFiltersAsync = c(this, "filters", !0, !0)),
|
||||
(this.currentAction = l(this, "actions")),
|
||||
(this.currentFilter = l(this, "filters")),
|
||||
(this.doingAction = a(this, "actions")),
|
||||
(this.doingFilter = a(this, "filters")),
|
||||
(this.didAction = u(this, "actions")),
|
||||
(this.didFilter = u(this, "filters"));
|
||||
}
|
||||
}
|
||||
const h = function () {
|
||||
return new d();
|
||||
},
|
||||
f = h(),
|
||||
{
|
||||
addAction: A,
|
||||
addFilter: m,
|
||||
removeAction: p,
|
||||
removeFilter: y,
|
||||
hasAction: _,
|
||||
hasFilter: v,
|
||||
removeAllActions: F,
|
||||
removeAllFilters: b,
|
||||
doAction: g,
|
||||
doActionAsync: k,
|
||||
applyFilters: w,
|
||||
applyFiltersAsync: I,
|
||||
currentAction: x,
|
||||
currentFilter: T,
|
||||
doingAction: O,
|
||||
doingFilter: S,
|
||||
didAction: j,
|
||||
didFilter: z,
|
||||
actions: P,
|
||||
filters: Z,
|
||||
} = f;
|
||||
(window.wp = window.wp || {}).hooks = e;
|
||||
})();
|
||||
616
preview.themeforest.net (1)/gomoto.like-themes.com/wp-includes/js/dist/i18n.min.js
vendored
Normal file
@@ -0,0 +1,616 @@
|
||||
/*! This file is auto-generated */
|
||||
(() => {
|
||||
var t = {
|
||||
2058: (t, e, r) => {
|
||||
var n;
|
||||
!(function () {
|
||||
"use strict";
|
||||
var i = {
|
||||
not_string: /[^s]/,
|
||||
not_bool: /[^t]/,
|
||||
not_type: /[^T]/,
|
||||
not_primitive: /[^v]/,
|
||||
number: /[diefg]/,
|
||||
numeric_arg: /[bcdiefguxX]/,
|
||||
json: /[j]/,
|
||||
not_json: /[^j]/,
|
||||
text: /^[^\x25]+/,
|
||||
modulo: /^\x25{2}/,
|
||||
placeholder:
|
||||
/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,
|
||||
key: /^([a-z_][a-z_\d]*)/i,
|
||||
key_access: /^\.([a-z_][a-z_\d]*)/i,
|
||||
index_access: /^\[(\d+)\]/,
|
||||
sign: /^[+-]/,
|
||||
};
|
||||
function a(t) {
|
||||
return (function (t, e) {
|
||||
var r,
|
||||
n,
|
||||
o,
|
||||
s,
|
||||
l,
|
||||
u,
|
||||
p,
|
||||
c,
|
||||
f,
|
||||
d = 1,
|
||||
h = t.length,
|
||||
g = "";
|
||||
for (n = 0; n < h; n++)
|
||||
if ("string" == typeof t[n]) g += t[n];
|
||||
else if ("object" == typeof t[n]) {
|
||||
if ((s = t[n]).keys)
|
||||
for (r = e[d], o = 0; o < s.keys.length; o++) {
|
||||
if (null == r)
|
||||
throw new Error(
|
||||
a(
|
||||
'[sprintf] Cannot access property "%s" of undefined value "%s"',
|
||||
s.keys[o],
|
||||
s.keys[o - 1]
|
||||
)
|
||||
);
|
||||
r = r[s.keys[o]];
|
||||
}
|
||||
else r = s.param_no ? e[s.param_no] : e[d++];
|
||||
if (
|
||||
(i.not_type.test(s.type) &&
|
||||
i.not_primitive.test(s.type) &&
|
||||
r instanceof Function &&
|
||||
(r = r()),
|
||||
i.numeric_arg.test(s.type) &&
|
||||
"number" != typeof r &&
|
||||
isNaN(r))
|
||||
)
|
||||
throw new TypeError(
|
||||
a("[sprintf] expecting number but found %T", r)
|
||||
);
|
||||
switch ((i.number.test(s.type) && (c = r >= 0), s.type)) {
|
||||
case "b":
|
||||
r = parseInt(r, 10).toString(2);
|
||||
break;
|
||||
case "c":
|
||||
r = String.fromCharCode(parseInt(r, 10));
|
||||
break;
|
||||
case "d":
|
||||
case "i":
|
||||
r = parseInt(r, 10);
|
||||
break;
|
||||
case "j":
|
||||
r = JSON.stringify(
|
||||
r,
|
||||
null,
|
||||
s.width ? parseInt(s.width) : 0
|
||||
);
|
||||
break;
|
||||
case "e":
|
||||
r = s.precision
|
||||
? parseFloat(r).toExponential(s.precision)
|
||||
: parseFloat(r).toExponential();
|
||||
break;
|
||||
case "f":
|
||||
r = s.precision
|
||||
? parseFloat(r).toFixed(s.precision)
|
||||
: parseFloat(r);
|
||||
break;
|
||||
case "g":
|
||||
r = s.precision
|
||||
? String(Number(r.toPrecision(s.precision)))
|
||||
: parseFloat(r);
|
||||
break;
|
||||
case "o":
|
||||
r = (parseInt(r, 10) >>> 0).toString(8);
|
||||
break;
|
||||
case "s":
|
||||
(r = String(r)),
|
||||
(r = s.precision ? r.substring(0, s.precision) : r);
|
||||
break;
|
||||
case "t":
|
||||
(r = String(!!r)),
|
||||
(r = s.precision ? r.substring(0, s.precision) : r);
|
||||
break;
|
||||
case "T":
|
||||
(r = Object.prototype.toString
|
||||
.call(r)
|
||||
.slice(8, -1)
|
||||
.toLowerCase()),
|
||||
(r = s.precision ? r.substring(0, s.precision) : r);
|
||||
break;
|
||||
case "u":
|
||||
r = parseInt(r, 10) >>> 0;
|
||||
break;
|
||||
case "v":
|
||||
(r = r.valueOf()),
|
||||
(r = s.precision ? r.substring(0, s.precision) : r);
|
||||
break;
|
||||
case "x":
|
||||
r = (parseInt(r, 10) >>> 0).toString(16);
|
||||
break;
|
||||
case "X":
|
||||
r = (parseInt(r, 10) >>> 0).toString(16).toUpperCase();
|
||||
}
|
||||
i.json.test(s.type)
|
||||
? (g += r)
|
||||
: (!i.number.test(s.type) || (c && !s.sign)
|
||||
? (f = "")
|
||||
: ((f = c ? "+" : "-"),
|
||||
(r = r.toString().replace(i.sign, ""))),
|
||||
(u = s.pad_char
|
||||
? "0" === s.pad_char
|
||||
? "0"
|
||||
: s.pad_char.charAt(1)
|
||||
: " "),
|
||||
(p = s.width - (f + r).length),
|
||||
(l = s.width && p > 0 ? u.repeat(p) : ""),
|
||||
(g += s.align
|
||||
? f + r + l
|
||||
: "0" === u
|
||||
? f + l + r
|
||||
: l + f + r));
|
||||
}
|
||||
return g;
|
||||
})(
|
||||
(function (t) {
|
||||
if (s[t]) return s[t];
|
||||
var e,
|
||||
r = t,
|
||||
n = [],
|
||||
a = 0;
|
||||
for (; r; ) {
|
||||
if (null !== (e = i.text.exec(r))) n.push(e[0]);
|
||||
else if (null !== (e = i.modulo.exec(r))) n.push("%");
|
||||
else {
|
||||
if (null === (e = i.placeholder.exec(r)))
|
||||
throw new SyntaxError("[sprintf] unexpected placeholder");
|
||||
if (e[2]) {
|
||||
a |= 1;
|
||||
var o = [],
|
||||
l = e[2],
|
||||
u = [];
|
||||
if (null === (u = i.key.exec(l)))
|
||||
throw new SyntaxError(
|
||||
"[sprintf] failed to parse named argument key"
|
||||
);
|
||||
for (
|
||||
o.push(u[1]);
|
||||
"" !== (l = l.substring(u[0].length));
|
||||
|
||||
)
|
||||
if (null !== (u = i.key_access.exec(l))) o.push(u[1]);
|
||||
else {
|
||||
if (null === (u = i.index_access.exec(l)))
|
||||
throw new SyntaxError(
|
||||
"[sprintf] failed to parse named argument key"
|
||||
);
|
||||
o.push(u[1]);
|
||||
}
|
||||
e[2] = o;
|
||||
} else a |= 2;
|
||||
if (3 === a)
|
||||
throw new Error(
|
||||
"[sprintf] mixing positional and named placeholders is not (yet) supported"
|
||||
);
|
||||
n.push({
|
||||
placeholder: e[0],
|
||||
param_no: e[1],
|
||||
keys: e[2],
|
||||
sign: e[3],
|
||||
pad_char: e[4],
|
||||
align: e[5],
|
||||
width: e[6],
|
||||
precision: e[7],
|
||||
type: e[8],
|
||||
});
|
||||
}
|
||||
r = r.substring(e[0].length);
|
||||
}
|
||||
return (s[t] = n);
|
||||
})(t),
|
||||
arguments
|
||||
);
|
||||
}
|
||||
function o(t, e) {
|
||||
return a.apply(null, [t].concat(e || []));
|
||||
}
|
||||
var s = Object.create(null);
|
||||
(e.sprintf = a),
|
||||
(e.vsprintf = o),
|
||||
"undefined" != typeof window &&
|
||||
((window.sprintf = a),
|
||||
(window.vsprintf = o),
|
||||
void 0 ===
|
||||
(n = function () {
|
||||
return { sprintf: a, vsprintf: o };
|
||||
}.call(e, r, e, t)) || (t.exports = n));
|
||||
})();
|
||||
},
|
||||
},
|
||||
e = {};
|
||||
function r(n) {
|
||||
var i = e[n];
|
||||
if (void 0 !== i) return i.exports;
|
||||
var a = (e[n] = { exports: {} });
|
||||
return t[n](a, a.exports, r), a.exports;
|
||||
}
|
||||
(r.n = (t) => {
|
||||
var e = t && t.__esModule ? () => t.default : () => t;
|
||||
return r.d(e, { a: e }), e;
|
||||
}),
|
||||
(r.d = (t, e) => {
|
||||
for (var n in e)
|
||||
r.o(e, n) &&
|
||||
!r.o(t, n) &&
|
||||
Object.defineProperty(t, n, { enumerable: !0, get: e[n] });
|
||||
}),
|
||||
(r.o = (t, e) => Object.prototype.hasOwnProperty.call(t, e)),
|
||||
(r.r = (t) => {
|
||||
"undefined" != typeof Symbol &&
|
||||
Symbol.toStringTag &&
|
||||
Object.defineProperty(t, Symbol.toStringTag, { value: "Module" }),
|
||||
Object.defineProperty(t, "__esModule", { value: !0 });
|
||||
});
|
||||
var n = {};
|
||||
(() => {
|
||||
"use strict";
|
||||
r.r(n),
|
||||
r.d(n, {
|
||||
__: () => F,
|
||||
_n: () => j,
|
||||
_nx: () => L,
|
||||
_x: () => S,
|
||||
createI18n: () => x,
|
||||
defaultI18n: () => _,
|
||||
getLocaleData: () => v,
|
||||
hasTranslation: () => D,
|
||||
isRTL: () => T,
|
||||
resetLocaleData: () => w,
|
||||
setLocaleData: () => m,
|
||||
sprintf: () => a,
|
||||
subscribe: () => k,
|
||||
});
|
||||
var t = r(2058),
|
||||
e = r.n(t);
|
||||
const i = (function (t, e) {
|
||||
var r,
|
||||
n,
|
||||
i = 0;
|
||||
function a() {
|
||||
var a,
|
||||
o,
|
||||
s = r,
|
||||
l = arguments.length;
|
||||
t: for (; s; ) {
|
||||
if (s.args.length === arguments.length) {
|
||||
for (o = 0; o < l; o++)
|
||||
if (s.args[o] !== arguments[o]) {
|
||||
s = s.next;
|
||||
continue t;
|
||||
}
|
||||
return (
|
||||
s !== r &&
|
||||
(s === n && (n = s.prev),
|
||||
(s.prev.next = s.next),
|
||||
s.next && (s.next.prev = s.prev),
|
||||
(s.next = r),
|
||||
(s.prev = null),
|
||||
(r.prev = s),
|
||||
(r = s)),
|
||||
s.val
|
||||
);
|
||||
}
|
||||
s = s.next;
|
||||
}
|
||||
for (a = new Array(l), o = 0; o < l; o++) a[o] = arguments[o];
|
||||
return (
|
||||
(s = { args: a, val: t.apply(null, a) }),
|
||||
r ? ((r.prev = s), (s.next = r)) : (n = s),
|
||||
i === e.maxSize ? ((n = n.prev).next = null) : i++,
|
||||
(r = s),
|
||||
s.val
|
||||
);
|
||||
}
|
||||
return (
|
||||
(e = e || {}),
|
||||
(a.clear = function () {
|
||||
(r = null), (n = null), (i = 0);
|
||||
}),
|
||||
a
|
||||
);
|
||||
})(console.error);
|
||||
function a(t, ...r) {
|
||||
try {
|
||||
return e().sprintf(t, ...r);
|
||||
} catch (e) {
|
||||
return e instanceof Error && i("sprintf error: \n\n" + e.toString()), t;
|
||||
}
|
||||
}
|
||||
var o, s, l, u;
|
||||
(o = {
|
||||
"(": 9,
|
||||
"!": 8,
|
||||
"*": 7,
|
||||
"/": 7,
|
||||
"%": 7,
|
||||
"+": 6,
|
||||
"-": 6,
|
||||
"<": 5,
|
||||
"<=": 5,
|
||||
">": 5,
|
||||
">=": 5,
|
||||
"==": 4,
|
||||
"!=": 4,
|
||||
"&&": 3,
|
||||
"||": 2,
|
||||
"?": 1,
|
||||
"?:": 1,
|
||||
}),
|
||||
(s = ["(", "?"]),
|
||||
(l = { ")": ["("], ":": ["?", "?:"] }),
|
||||
(u = /<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/);
|
||||
var p = {
|
||||
"!": function (t) {
|
||||
return !t;
|
||||
},
|
||||
"*": function (t, e) {
|
||||
return t * e;
|
||||
},
|
||||
"/": function (t, e) {
|
||||
return t / e;
|
||||
},
|
||||
"%": function (t, e) {
|
||||
return t % e;
|
||||
},
|
||||
"+": function (t, e) {
|
||||
return t + e;
|
||||
},
|
||||
"-": function (t, e) {
|
||||
return t - e;
|
||||
},
|
||||
"<": function (t, e) {
|
||||
return t < e;
|
||||
},
|
||||
"<=": function (t, e) {
|
||||
return t <= e;
|
||||
},
|
||||
">": function (t, e) {
|
||||
return t > e;
|
||||
},
|
||||
">=": function (t, e) {
|
||||
return t >= e;
|
||||
},
|
||||
"==": function (t, e) {
|
||||
return t === e;
|
||||
},
|
||||
"!=": function (t, e) {
|
||||
return t !== e;
|
||||
},
|
||||
"&&": function (t, e) {
|
||||
return t && e;
|
||||
},
|
||||
"||": function (t, e) {
|
||||
return t || e;
|
||||
},
|
||||
"?:": function (t, e, r) {
|
||||
if (t) throw e;
|
||||
return r;
|
||||
},
|
||||
};
|
||||
function c(t) {
|
||||
var e = (function (t) {
|
||||
for (var e, r, n, i, a = [], p = []; (e = t.match(u)); ) {
|
||||
for (
|
||||
r = e[0], (n = t.substr(0, e.index).trim()) && a.push(n);
|
||||
(i = p.pop());
|
||||
|
||||
) {
|
||||
if (l[r]) {
|
||||
if (l[r][0] === i) {
|
||||
r = l[r][1] || r;
|
||||
break;
|
||||
}
|
||||
} else if (s.indexOf(i) >= 0 || o[i] < o[r]) {
|
||||
p.push(i);
|
||||
break;
|
||||
}
|
||||
a.push(i);
|
||||
}
|
||||
l[r] || p.push(r), (t = t.substr(e.index + r.length));
|
||||
}
|
||||
return (t = t.trim()) && a.push(t), a.concat(p.reverse());
|
||||
})(t);
|
||||
return function (t) {
|
||||
return (function (t, e) {
|
||||
var r,
|
||||
n,
|
||||
i,
|
||||
a,
|
||||
o,
|
||||
s,
|
||||
l = [];
|
||||
for (r = 0; r < t.length; r++) {
|
||||
if (((o = t[r]), (a = p[o]))) {
|
||||
for (n = a.length, i = Array(n); n--; ) i[n] = l.pop();
|
||||
try {
|
||||
s = a.apply(null, i);
|
||||
} catch (t) {
|
||||
return t;
|
||||
}
|
||||
} else s = e.hasOwnProperty(o) ? e[o] : +o;
|
||||
l.push(s);
|
||||
}
|
||||
return l[0];
|
||||
})(e, t);
|
||||
};
|
||||
}
|
||||
var f = { contextDelimiter: "", onMissingKey: null };
|
||||
function d(t, e) {
|
||||
var r;
|
||||
for (r in ((this.data = t),
|
||||
(this.pluralForms = {}),
|
||||
(this.options = {}),
|
||||
f))
|
||||
this.options[r] = void 0 !== e && r in e ? e[r] : f[r];
|
||||
}
|
||||
(d.prototype.getPluralForm = function (t, e) {
|
||||
var r,
|
||||
n,
|
||||
i,
|
||||
a = this.pluralForms[t];
|
||||
return (
|
||||
a ||
|
||||
("function" !=
|
||||
typeof (i =
|
||||
(r = this.data[t][""])["Plural-Forms"] ||
|
||||
r["plural-forms"] ||
|
||||
r.plural_forms) &&
|
||||
((n = (function (t) {
|
||||
var e, r, n;
|
||||
for (e = t.split(";"), r = 0; r < e.length; r++)
|
||||
if (0 === (n = e[r].trim()).indexOf("plural="))
|
||||
return n.substr(7);
|
||||
})(r["Plural-Forms"] || r["plural-forms"] || r.plural_forms)),
|
||||
(i = (function (t) {
|
||||
var e = c(t);
|
||||
return function (t) {
|
||||
return +e({ n: t });
|
||||
};
|
||||
})(n))),
|
||||
(a = this.pluralForms[t] = i)),
|
||||
a(e)
|
||||
);
|
||||
}),
|
||||
(d.prototype.dcnpgettext = function (t, e, r, n, i) {
|
||||
var a, o, s;
|
||||
return (
|
||||
(a = void 0 === i ? 0 : this.getPluralForm(t, i)),
|
||||
(o = r),
|
||||
e && (o = e + this.options.contextDelimiter + r),
|
||||
(s = this.data[t][o]) && s[a]
|
||||
? s[a]
|
||||
: (this.options.onMissingKey && this.options.onMissingKey(r, t),
|
||||
0 === a ? r : n)
|
||||
);
|
||||
});
|
||||
const h = { plural_forms: (t) => (1 === t ? 0 : 1) },
|
||||
g = /^i18n\.(n?gettext|has_translation)(_|$)/,
|
||||
x = (t, e, r) => {
|
||||
const n = new d({}),
|
||||
i = new Set(),
|
||||
a = () => {
|
||||
i.forEach((t) => t());
|
||||
},
|
||||
o = (t, e = "default") => {
|
||||
(n.data[e] = { ...n.data[e], ...t }),
|
||||
(n.data[e][""] = { ...h, ...n.data[e]?.[""] }),
|
||||
delete n.pluralForms[e];
|
||||
},
|
||||
s = (t, e) => {
|
||||
o(t, e), a();
|
||||
},
|
||||
l = (t = "default", e, r, i, a) => (
|
||||
n.data[t] || o(void 0, t), n.dcnpgettext(t, e, r, i, a)
|
||||
),
|
||||
u = (t = "default") => t,
|
||||
p = (t, e, n) => {
|
||||
let i = l(n, e, t);
|
||||
return r
|
||||
? ((i = r.applyFilters("i18n.gettext_with_context", i, t, e, n)),
|
||||
r.applyFilters("i18n.gettext_with_context_" + u(n), i, t, e, n))
|
||||
: i;
|
||||
};
|
||||
if ((t && s(t, e), r)) {
|
||||
const t = (t) => {
|
||||
g.test(t) && a();
|
||||
};
|
||||
r.addAction("hookAdded", "core/i18n", t),
|
||||
r.addAction("hookRemoved", "core/i18n", t);
|
||||
}
|
||||
return {
|
||||
getLocaleData: (t = "default") => n.data[t],
|
||||
setLocaleData: s,
|
||||
addLocaleData: (t, e = "default") => {
|
||||
(n.data[e] = {
|
||||
...n.data[e],
|
||||
...t,
|
||||
"": { ...h, ...n.data[e]?.[""], ...t?.[""] },
|
||||
}),
|
||||
delete n.pluralForms[e],
|
||||
a();
|
||||
},
|
||||
resetLocaleData: (t, e) => {
|
||||
(n.data = {}), (n.pluralForms = {}), s(t, e);
|
||||
},
|
||||
subscribe: (t) => (i.add(t), () => i.delete(t)),
|
||||
__: (t, e) => {
|
||||
let n = l(e, void 0, t);
|
||||
return r
|
||||
? ((n = r.applyFilters("i18n.gettext", n, t, e)),
|
||||
r.applyFilters("i18n.gettext_" + u(e), n, t, e))
|
||||
: n;
|
||||
},
|
||||
_x: p,
|
||||
_n: (t, e, n, i) => {
|
||||
let a = l(i, void 0, t, e, n);
|
||||
return r
|
||||
? ((a = r.applyFilters("i18n.ngettext", a, t, e, n, i)),
|
||||
r.applyFilters("i18n.ngettext_" + u(i), a, t, e, n, i))
|
||||
: a;
|
||||
},
|
||||
_nx: (t, e, n, i, a) => {
|
||||
let o = l(a, i, t, e, n);
|
||||
return r
|
||||
? ((o = r.applyFilters(
|
||||
"i18n.ngettext_with_context",
|
||||
o,
|
||||
t,
|
||||
e,
|
||||
n,
|
||||
i,
|
||||
a
|
||||
)),
|
||||
r.applyFilters(
|
||||
"i18n.ngettext_with_context_" + u(a),
|
||||
o,
|
||||
t,
|
||||
e,
|
||||
n,
|
||||
i,
|
||||
a
|
||||
))
|
||||
: o;
|
||||
},
|
||||
isRTL: () => "rtl" === p("ltr", "text direction"),
|
||||
hasTranslation: (t, e, i) => {
|
||||
const a = e ? e + "" + t : t;
|
||||
let o = !!n.data?.[null != i ? i : "default"]?.[a];
|
||||
return (
|
||||
r &&
|
||||
((o = r.applyFilters("i18n.has_translation", o, t, e, i)),
|
||||
(o = r.applyFilters(
|
||||
"i18n.has_translation_" + u(i),
|
||||
o,
|
||||
t,
|
||||
e,
|
||||
i
|
||||
))),
|
||||
o
|
||||
);
|
||||
},
|
||||
};
|
||||
},
|
||||
y = window.wp.hooks,
|
||||
b = x(void 0, void 0, y.defaultHooks),
|
||||
_ = b,
|
||||
v = b.getLocaleData.bind(b),
|
||||
m = b.setLocaleData.bind(b),
|
||||
w = b.resetLocaleData.bind(b),
|
||||
k = b.subscribe.bind(b),
|
||||
F = b.__.bind(b),
|
||||
S = b._x.bind(b),
|
||||
j = b._n.bind(b),
|
||||
L = b._nx.bind(b),
|
||||
T = b.isRTL.bind(b),
|
||||
D = b.hasTranslation.bind(b);
|
||||
})(),
|
||||
((window.wp = window.wp || {}).i18n = n);
|
||||
})();
|
||||
5407
preview.themeforest.net (1)/gomoto.like-themes.com/wp-includes/js/jquery/jquery.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
No Content: https://preview.themeforest.net/item/gomoto-food-delivery-wordpress-theme/full_screen_preview/26536818
|
||||
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,124 @@
|
||||
.full-screen-preview {
|
||||
height: 100%;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.full-screen-preview__frame {
|
||||
width: 100%;
|
||||
background-color: white;
|
||||
}
|
||||
.full-screen-preview__frame.-ios-fix {
|
||||
width: 10px;
|
||||
min-width: 100%;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
height: 100% !important;
|
||||
}
|
||||
.preview__header {
|
||||
font-size: 12px;
|
||||
height: 54px;
|
||||
background-color: #262626;
|
||||
z-index: 100;
|
||||
line-height: 54px;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
.preview__envato-logo {
|
||||
float: left;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.preview__envato-logo a {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
text-indent: -9999px;
|
||||
height: 18px;
|
||||
width: 152px;
|
||||
background: url(/assets/logos/envato_market-dd390ae860330996644c1c109912d2bf63885fc075b87215ace9b5b4bdc71cc8.svg);
|
||||
background-size: 152px 18px;
|
||||
}
|
||||
@media (max-width: 568px) {
|
||||
.preview__envato-logo {
|
||||
padding: 0 10px;
|
||||
}
|
||||
.preview__envato-logo a {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 15px;
|
||||
height: 14px;
|
||||
width: 118px;
|
||||
background-size: 118px 14px;
|
||||
}
|
||||
}
|
||||
.preview__actions {
|
||||
float: right;
|
||||
}
|
||||
.preview__action--close,
|
||||
.preview__action--buy {
|
||||
display: inline-block;
|
||||
padding: 0 20px;
|
||||
}
|
||||
@media (max-width: 568px) {
|
||||
.preview__action--buy {
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
.preview__action--purchase-form {
|
||||
display: inline-block;
|
||||
}
|
||||
.preview__action--item-details {
|
||||
display: inline-block;
|
||||
}
|
||||
.preview__action--close {
|
||||
border-left: 1px solid #333333;
|
||||
}
|
||||
.preview__action--close a {
|
||||
color: #999999;
|
||||
text-decoration: none;
|
||||
}
|
||||
.preview__action--close a:hover {
|
||||
color: white;
|
||||
}
|
||||
.preview__action--close a i {
|
||||
color: white;
|
||||
font-size: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
@media (max-width: 568px) {
|
||||
.preview__action--close a i {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 568px) {
|
||||
.preview__action--close a span {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.screenshots {
|
||||
padding: 80px 10px 25px;
|
||||
}
|
||||
.screenshots__thumbnail {
|
||||
display: inline-block;
|
||||
margin: 0 10px 20px 0;
|
||||
border: 1px solid #333333;
|
||||
line-height: 0;
|
||||
}
|
||||
.screenshots__thumbnail:hover {
|
||||
border: 1px solid #666666;
|
||||
}
|
||||
.screenshots__fullsize {
|
||||
display: inline-block;
|
||||
margin: 20px 0;
|
||||
border: 1px solid #333333;
|
||||
line-height: 0;
|
||||
}
|
||||
.screenshots__fullsize > img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.screenshots__description {
|
||||
max-width: 1024px;
|
||||
margin-top: 20px;
|
||||
color: white;
|
||||
}
|
||||
body {
|
||||
background-color: black;
|
||||
}
|
||||
BIN
public/apple-icon.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
public/favicon.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
1
public/file.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 391 B |
1
public/globe.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
public/images/app-mockup.png
Normal file
|
After Width: | Height: | Size: 693 KiB |
BIN
public/images/bakery-logo.png
Normal file
|
After Width: | Height: | Size: 538 KiB |
BIN
public/images/cat-daily-essentials.png
Normal file
|
After Width: | Height: | Size: 560 KiB |
BIN
public/images/cat-health-wellness.png
Normal file
|
After Width: | Height: | Size: 752 KiB |
BIN
public/images/cat-home-services.png
Normal file
|
After Width: | Height: | Size: 660 KiB |