commit ebae1aa7e3593f743f1475b70b6d732d4b1dc4c4 Author: “dongming” <“lidongming@aituringflow.com”> Date: Fri Dec 19 22:16:01 2025 +0800 first commit diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..4041b5e --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,154 @@ +name: Deploy to Cloudflare Pages + +on: + push: + tags: + - 'deploy-*' # 只在推送 deploy-* 标签时触发 + +jobs: + deploy: + runs-on: ubuntu-latest + container: + image: swr.cn-south-1.myhuaweicloud.com/bws/node:20.19.6-bookworm-slim-ci + + steps: + # 1. 拉取代码 + - name: Checkout + uses: actions/checkout@v4 + + # 2. 设置 pnpm(使用 corepack,避免从 GitHub 拉取 action) + - name: Setup pnpm + run: | + corepack enable + corepack prepare pnpm@10.23.0 --activate + pnpm --version + + - name: Parse tag to env + shell: bash + run: | + # 获取 tag 名称(Gitea Actions 使用 GITHUB_REF_NAME) + TAG_NAME="${GITHUB_REF_NAME}" + echo "TAG_NAME=$TAG_NAME" + + # Tag 格式: deploy-{project_name}-{deploymentId_no_dashes} + # 例如: deploy-b7ea026a-cf09-4e31-9f29-b55d7c652b71-123e4567e89b12d3a456426614174000 + + # 去掉 "deploy-" 前缀 + PREFIX="deploy-" + REST="${TAG_NAME#$PREFIX}" + + # deploymentId(无破折号)固定是最后32个字符 + DEPLOYMENT_ID="${REST: -32}" + + # project_name 是剩余部分(去掉最后的 "-" 和 deploymentId) + PROJECT_NAME="${REST%-${DEPLOYMENT_ID}}" + + echo "PROJECT_NAME=$PROJECT_NAME" >> "$GITHUB_ENV" + echo "DEPLOYMENT_ID=$DEPLOYMENT_ID" >> "$GITHUB_ENV" + #echo "DOMAIN=${PROJECT_NAME}-preview.turingflowai.com" >> "$GITHUB_ENV" + + # 调试输出 + echo "Parsed PROJECT_NAME: $PROJECT_NAME" + echo "Parsed DEPLOYMENT_ID: $DEPLOYMENT_ID" + + - name: Check toolchain (debug only, 可选) + run: | + node -v || echo "node not found" + pnpm -v || echo "pnpm not found" + curl --version || echo "curl not found" + + - name: Use CN npm registry + run: | + pnpm config set registry http://repo.myhuaweicloud.com/repository/npm/ + + - name: Install dependencies + run: | + pnpm install --frozen-lockfile + + - name: Build + run: pnpm run build + + - name: Deploy to Cloudflare Pages + shell: bash + env: + CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} + CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} + PROJECT_NAME: ${{ env.PROJECT_NAME }} + DOMAIN: ${{ env.DOMAIN }} + run: | + set -euo pipefail + echo "[deploy] project: $PROJECT_NAME" + #echo "[deploy] domain: $DOMAIN" + + # 部署到 Cloudflare Pages (假定构建产物在 dist/) + # 使用项目本地安装的 wrangler + npx wrangler pages deploy dist \ + --project-name "$PROJECT_NAME" \ + --branch main + + # 绑定自定义域名:-preview.turingflowai.com + #echo "[deploy] 正在绑定自定义域名..." + #DOMAIN_RESPONSE=$(curl -s -w "\n%{http_code}" -X POST \ + # "https://api.cloudflare.com/client/v4/accounts/${CLOUDFLARE_ACCOUNT_ID}/pages/projects/${PROJECT_NAME}/domains" \ + # -H "Authorization: Bearer ${CLOUDFLARE_API_TOKEN}" \ + # -H "Content-Type: application/json" \ + # -d '{"name":"'"${DOMAIN}"'"}') + + #HTTP_CODE=$(echo "$DOMAIN_RESPONSE" | tail -n1) + #RESPONSE_BODY=$(echo "$DOMAIN_RESPONSE" | sed '$d') + + #if [ "$HTTP_CODE" = "200" ] || [ "$HTTP_CODE" = "409" ]; then + # echo "[deploy] 域名绑定成功或已存在 (HTTP $HTTP_CODE)" + #else + # echo "[deploy] 警告: 域名绑定失败 (HTTP $HTTP_CODE)" + # echo "[deploy] 响应: $RESPONSE_BODY" + # echo "[deploy] 继续执行,但域名可能未绑定成功" + #fi + + - name: Notify Deploy Service (success) + if: success() + shell: bash + env: + DEPLOY_SERVICE_CALLBACK_URL: ${{ secrets.DEPLOY_SERVICE_CALLBACK_URL }} + DEPLOY_SERVICE_TOKEN: ${{ secrets.DEPLOY_SERVICE_TOKEN }} + DEPLOYMENT_ID: ${{ env.DEPLOYMENT_ID }} + run: | + set -euo pipefail + + # 获取当前 commit SHA (Gitea Actions 使用 GITHUB_SHA) + COMMIT_SHA="${GITHUB_SHA}" + + curl -X POST "$DEPLOY_SERVICE_CALLBACK_URL" \ + -H "Content-Type: application/json" \ + -H "Authorization: Bearer $DEPLOY_SERVICE_TOKEN" \ + -d '{ + "deploymentId": "'"${DEPLOYMENT_ID}"'", + "status": "deployed", + "commitSha": "'"${COMMIT_SHA}"'", + "cfDeploymentId": "", + "errorMessage": null + }' + + - name: Notify Deploy Service (failure) + if: failure() + shell: bash + env: + DEPLOY_SERVICE_CALLBACK_URL: ${{ secrets.DEPLOY_SERVICE_CALLBACK_URL }} + DEPLOY_SERVICE_TOKEN: ${{ secrets.DEPLOY_SERVICE_TOKEN }} + DEPLOYMENT_ID: ${{ env.DEPLOYMENT_ID }} + run: | + set -euo pipefail + + # 获取当前 commit SHA + COMMIT_SHA="${GITHUB_SHA}" + + curl -X POST "$DEPLOY_SERVICE_CALLBACK_URL" \ + -H "Content-Type: application/json" \ + -H "Authorization: Bearer $DEPLOY_SERVICE_TOKEN" \ + -d '{ + "deploymentId": "'"${DEPLOYMENT_ID}"'", + "status": "failed", + "commitSha": "'"${COMMIT_SHA}"'", + "cfDeploymentId": "", + "errorMessage": "see Gitea Actions logs" + }' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e9e3b4c --- /dev/null +++ b/.gitignore @@ -0,0 +1,157 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# =================== +# Dependencies +# =================== +node_modules/ +/.pnp +.pnp.js +.yarn/install-state.gz +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +package-lock.json +yarn.lock +bun.lockb + +# =================== +# Next.js +# =================== +/.next/ +/out/ +/build/ +.next +out + +# =================== +# Production +# =================== +/dist/ +*.min.js +*.min.css + +# =================== +# Testing +# =================== +/coverage/ +.nyc_output +*.lcov +jest-results.json + +# =================== +# TypeScript +# =================== +*.tsbuildinfo +next-env.d.ts +tsconfig.tsbuildinfo + +# =================== +# Environment Variables +# =================== +.env +.env.* +.env.local +.env.development.local +.env.test.local +.env.production.local +!.env.example + +# =================== +# IDE & Editors +# =================== +.idea/ +.vscode/ +*.swp +*.swo +*.sublime-workspace +*.sublime-project +.project +.classpath +.c9/ +*.launch +.settings/ +*.code-workspace + +# =================== +# OS Generated Files +# =================== +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +Desktop.ini + +# =================== +# Logs +# =================== +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# =================== +# Cache +# =================== +.cache/ +.parcel-cache/ +.eslintcache +.stylelintcache +*.cache +.turbo/ +.tanstack +.pnpm-store + +# =================== +# Vercel +# =================== +.vercel + +# =================== +# Debug +# =================== +*.pem +*.key +*.crt +*.p12 + +# =================== +# Misc +# =================== +*.pid +*.seed +*.pid.lock +*.orig +.temp/ +.tmp/ +tmp/ +temp/ + +# =================== +# Storybook +# =================== +storybook-static/ + +# =================== +# PWA +# =================== +public/sw.js +public/workbox-*.js +public/sw.js.map +public/workbox-*.js.map + +# =================== +# Sentry +# =================== +.sentryclirc + +# =================== +# Docker +# =================== +docker-compose.override.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..a57da4a --- /dev/null +++ b/README.md @@ -0,0 +1,344 @@ +# animart-petshop + +宠物商店电商网站模板,适用于宠物店、宠物食品、宠物护理等电商场景。 + +## 技术栈 + +- Bootstrap 5 (响应式布局框架) +- jQuery (DOM 操作和插件) +- Slick Slider (轮播组件) +- WOW.js + Animate.css (滚动动画) +- IcoFont + FontAwesome (图标字体) +- Nice Select (下拉选择美化) +- Fancybox (图片灯箱) +- Mean Menu (移动端菜单) + +## 快速开始 + +```bash +pnpm install +pnpm run dev +``` + +访问 http://localhost:3001 预览,修改文件后浏览器自动刷新。 + +## 目录结构 + +```text +turingflow-shop-001/ +├── package.json # 项目配置和启动脚本 +├── html/ # 静态网站根目录 +│ ├── index.html # 首页 (默认宠物店) +│ ├── index-2(pet_shop).html # 首页变体: 宠物店2 +│ ├── index-3(pet_care).html # 首页变体: 宠物护理 +│ ├── index-4(pet_care2).html # 首页变体: 宠物护理2 +│ ├── index-5(food_shop).html # 首页变体: 食品店 +│ ├── index-6(food_shop2).html # 首页变体: 食品店2 +│ ├── index-7(pet_acc).html # 首页变体: 宠物配件 +│ ├── index-8(pet_acc2).html # 首页变体: 宠物配件2 +│ ├── index-9(lookbook).html # 首页变体: Lookbook +│ ├── index-10(minimal).html # 首页变体: 极简风格 +│ ├── index-11(box).html # 首页变体: 盒子布局 +│ ├── index-12(all_section).html # 首页变体: 全部区块 +│ ├── shop.html # 商品列表页 (网格) +│ ├── shop-list.html # 商品列表页 (列表) +│ ├── product-details.html # 商品详情页 +│ ├── product-details-2~6.html # 商品详情页变体 +│ ├── cart.html # 购物车页面 +│ ├── checkout.html # 结账页面 +│ ├── wishlist.html # 愿望清单 +│ ├── compare.html # 商品对比 +│ ├── blog.html # 博客列表 +│ ├── blog-details.html # 博客详情 +│ ├── about.html # 关于我们 +│ ├── contact.html # 联系我们 +│ ├── faq.html # 常见问题 +│ ├── login.html # 登录页面 +│ ├── register.html # 注册页面 +│ ├── 404.html # 404 错误页 +│ ├── style.css # 主样式文件 (3000+ 行) +│ ├── css/ # CSS 依赖 +│ │ ├── bootstrap.min.css # Bootstrap 框架 +│ │ ├── animate.css # 动画样式 +│ │ ├── icofont.css # 图标字体 +│ │ ├── responsive.css # 响应式样式 +│ │ ├── plugins.css # 插件样式 +│ │ ├── default.css # 默认样式 +│ │ ├── slick-slider.css # 轮播样式 +│ │ ├── nice-select.css # 下拉框样式 +│ │ ├── jquery.fancybox.css # 灯箱样式 +│ │ ├── jquery-ui.min.css # jQuery UI +│ │ └── meanmenu.min.css # 移动菜单样式 +│ ├── js/ # JavaScript 文件 +│ │ ├── main.js # 主逻辑 (插件初始化、交互) +│ │ ├── plugins.js # 插件合集 +│ │ ├── bootstrap.min.js # Bootstrap JS +│ │ ├── wow.min.js # 滚动动画 +│ │ ├── jquery.scrollUp.js # 回到顶部 +│ │ ├── jquery.nice-select.min.js # 下拉框 +│ │ ├── jquery.meanmenu.min.js # 移动菜单 +│ │ ├── jquery-ui.min.js # jQuery UI (价格滑块) +│ │ ├── popper.min.js # Bootstrap 依赖 +│ │ ├── ajax-mail.js # 表单提交 +│ │ └── vendor/ # 第三方库 +│ ├── fonts/ # 字体文件 +│ │ ├── icofont.* # IcoFont 图标 +│ │ ├── fontawesome-webfont.* # FontAwesome 图标 +│ │ ├── Stroke-Gap-Icons.* # Stroke 图标 +│ │ └── georgia_italic-* # Georgia 斜体字体 +│ └── img/ # 图片资源 +│ ├── logo/ # Logo 图片 +│ ├── banner/ # 轮播横幅 +│ ├── slider/ # 滑动图片 +│ ├── products/ # 商品图片 +│ ├── blog/ # 博客图片 +│ ├── icons/ # 图标图片 +│ ├── brand/ # 品牌 Logo +│ ├── team/ # 团队成员 +│ ├── testmonial/ # 用户评价 +│ ├── portfolio/ # 作品集 +│ ├── bg/ # 背景图片 +│ └── favicon.png # 网站图标 +``` + +## 页面路由 + +| 路径 | 页面 | 说明 | +|------|------|------| +| `/` 或 `/index.html` | 首页 | 轮播 + 分类 + 商品 + 评价 + 博客 | +| `/shop.html` | 商品列表 | 网格布局,支持筛选和排序 | +| `/shop-list.html` | 商品列表 | 列表布局 | +| `/product-details.html` | 商品详情 | 图片画廊 + 规格 + 评论 + 相关商品 | +| `/cart.html` | 购物车 | 商品数量修改 + 优惠券 | +| `/checkout.html` | 结账 | 收货地址 + 支付方式 | +| `/wishlist.html` | 愿望清单 | 收藏商品列表 | +| `/compare.html` | 商品对比 | 多商品参数对比 | +| `/blog.html` | 博客列表 | 文章列表 + 侧边栏 | +| `/blog-details.html` | 博客详情 | 文章内容 + 评论 | +| `/about.html` | 关于我们 | 公司介绍 + 团队 | +| `/contact.html` | 联系我们 | 联系表单 + 地图 | +| `/faq.html` | 常见问题 | 折叠面板 FAQ | +| `/login.html` | 登录 | 登录表单 | +| `/register.html` | 注册 | 注册表单 | +| `/404.html` | 404 | 错误页面 | + +## HTML 结构说明 + +每个页面遵循统一结构: + +```html + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ + + + +``` + +## 核心 CSS 类名 + +### 布局类 +- `.wrapper` - 页面最外层容器 +- `.container` / `.container-fluid` - Bootstrap 容器 +- `.row` / `.col-*` - Bootstrap 栅格 + +### 头部类 +- `.header-area` - 头部容器 +- `.header-sticky` - 固定头部 +- `.logo` - Logo 区域 +- `.header-menu-list` - 导航菜单 +- `.header-right-element` - 右侧工具栏 +- `.mobile-menu` - 移动端菜单 + +### 商品类 +- `.product-area` - 商品区域容器 +- `.single-product` - 单个商品卡片 +- `.product-img` - 商品图片 +- `.product-content` - 商品信息 +- `.item_price` - 价格 +- `.item_add_cart` - 加入购物车按钮 +- `.product-slider-active` - 商品轮播 + +### 轮播类 +- `.main-slider-active` - 主轮播 +- `.slick-prev` / `.slick-next` - 轮播箭头 +- `.slick-dots` - 轮播指示点 + +### 按钮类 +- `.btn` - 基础按钮 +- `.add-btn` - 添加按钮 +- `.view-all-btn` - 查看全部 + +### 表单类 +- `.checkout-form` - 结账表单 +- `.login-form` - 登录表单 +- `.contact-form` - 联系表单 + +## 主题颜色 (style.css) + +```css +/* 主色调 - 蓝色 */ +--primary-color: #00adf6; + +/* 文字颜色 */ +--text-color: #666666; +--heading-color: #1b1b1c; + +/* 背景色 */ +--bg-white: #ffffff; +--bg-light: #f5f5f5; +``` + +修改主题色:在 `style.css` 中搜索 `#00adf6` 并替换。 + +## main.js 功能列表 + +| 功能 | 说明 | +|------|------| +| Newsletter Popup | 延迟显示订阅弹窗 | +| Mobile Menu | 移动端菜单 (meanmenu) | +| Cart Dropdown | 购物车下拉菜单 | +| Checkout Toggle | 结账页面折叠面板 | +| Main Slider | 首页主轮播 (slick) | +| Product Slider | 商品轮播 | +| Product Quickview | 商品快速预览 | +| Price Range Slider | 价格区间滑块 (jQuery UI) | +| Nice Select | 下拉框美化 | +| Quantity Buttons | 数量加减按钮 | +| WOW Animation | 滚动动画初始化 | +| Scroll Up | 回到顶部按钮 | +| Sticky Header | 滚动固定头部 | + +## 常见修改任务 + +### 修改 Logo + +编辑 `html/index.html` 中的 Logo 图片路径: + +```html + + +``` + +替换 `img/logo/logo2.png` 为新 Logo 路径。 + +### 修改导航菜单 + +编辑 `html/index.html` 中的菜单列表: + +```html + + +``` + +### 修改轮播图 + +编辑 `html/index.html` 中的轮播区域: + +```html + +
+
+ + +
+
+``` + +### 修改商品卡片 + +搜索 `.single-product` 找到商品结构: + +```html +
+
+ + + + +
+
+ 商品名称 + $99.00 +
+
+``` + +### 修改页脚信息 + +编辑 `html/index.html` 底部的 `footer.footer-area` 区域。 + +### 修改主题色 + +在 `html/style.css` 中搜索替换: +- `#00adf6` → 新的主色调 + +## 响应式断点 + +```css +/* 在 css/responsive.css 中定义 */ +@media (max-width: 1199px) { /* 大屏幕 */ } +@media (max-width: 991px) { /* 平板 - 显示移动菜单 */ } +@media (max-width: 767px) { /* 手机横屏 */ } +@media (max-width: 575px) { /* 手机竖屏 */ } +``` + +## 图片资源说明 + +| 目录 | 用途 | 建议尺寸 | +|------|------|----------| +| `img/logo/` | 网站 Logo | 200x50 px | +| `img/banner/` | 首页轮播大图 | 1920x800 px | +| `img/slider/` | 滑动区域图片 | 1200x600 px | +| `img/products/` | 商品图片 | 270x270 px | +| `img/blog/` | 博客封面 | 370x250 px | +| `img/icons/` | 小图标 | 64x64 px | +| `img/brand/` | 品牌 Logo | 150x80 px | +| `img/team/` | 团队头像 | 270x270 px | +| `img/bg/` | 背景图 | 1920x1080 px | + +## 注意事项 + +1. **所有页面独立** - 每个 HTML 文件包含完整的头部和页脚,修改需同步多个文件 +2. **无构建工具** - 纯静态文件,直接修改即时生效 +3. **jQuery 依赖** - 交互功能依赖 jQuery,不要移除 +4. **图标使用** - 使用 IcoFont 类名,如 `` +5. **动画效果** - 元素添加 `data-wow-*` 属性启用滚动动画 diff --git a/html/404.html b/html/404.html new file mode 100644 index 0000000..9d4d741 --- /dev/null +++ b/html/404.html @@ -0,0 +1,923 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + + +
+
+
+
+
+
+ + 404-image + + +

Opps! PAGE NOT BE FOUND

+

Sorry but the page you are looking for does not exist, have been removed, name changed or is temporarily unavailable.

+
+
+
+ + +
+ +
+ +
+
+
+
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/about.html b/html/about.html new file mode 100644 index 0000000..e6ccb75 --- /dev/null +++ b/html/about.html @@ -0,0 +1,1038 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + +
+
+
+
+
+ about-image +
+
+ +
+
+ +
+

About Our Mission

+
+ +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's.It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.It was popul arised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.

+

It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

+ +
+
+
+
+
+ + + +
+
+
+
+ +
+ #Best Clients +

What our Clients say

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + +
+
+ +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ +
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/blog-details.html b/html/blog-details.html new file mode 100644 index 0000000..8f5eef1 --- /dev/null +++ b/html/blog-details.html @@ -0,0 +1,1146 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + +
+
+
+ +
+
+ +
+
+ + blog-details + +
+ 20 December, 2022 +
+
+
+ +
+

Pet Template Blog Details Title Here

+ +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

+

It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

+
+ +
+
+

"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."

+
Micle Loli
+
+

Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

+
+ +
+ +
+
+ blog-comment +
+
+
Genrma Kolim
+

Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

+
+
+
+ +
+
+ +
+
+ +
+
+ + + +
+ + +
+
+ comment-img +
+
+
+
+
Simon Jons
+ 19 Jun 2022 +
+
+ +
+
+

Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

+
+
+ + +
+
+ comment-img +
+
+
+
+
Nosnf Unlso
+ 25 Aug 2022 +
+
+ +
+
+

Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+
+
+ + +
+
+ comment-img +
+
+
+
+
Olnis Msons
+ 24 Jun 2022 +
+
+ +
+
+

Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

+
+
+ +
+ + + +
+ +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ + +
+
+ + + +
+ +
+ + +
+
+
+ + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/blog.html b/html/blog.html new file mode 100644 index 0000000..9ec579c --- /dev/null +++ b/html/blog.html @@ -0,0 +1,1191 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + +
+
+ +
+ +
+
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ + +
+ +
+ + +
+
    +
  • +
  • 1
  • +
  • 2
  • +
  • 3
  • +
  • 4
  • +
  • +
+
+ +
+ + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/cart.html b/html/cart.html new file mode 100644 index 0000000..c9c433f --- /dev/null +++ b/html/cart.html @@ -0,0 +1,989 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + + +
+
+
+
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ImageItem NamePriceQuantityTotalRemove
+ cart-image + Product Title Here 1$215.00$105.00
+ cart-image + Product Title Here 2$100.00$150.00
+
+ +
+ + + + + + +
+
+

Cart Totals

+
+ + + + + + + + + + + + + + + +
Subtotal$315.00
Shipping$10.00
Total + $325.00 +
+ +
+
+ + +
+ +
+ +
+
+ +
+
+ + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/checkout.html b/html/checkout.html new file mode 100644 index 0000000..782f46c --- /dev/null +++ b/html/checkout.html @@ -0,0 +1,1240 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + + +
+
+
+ +
+
+
+ +

Returning customer? Click here to login

+
+
+

If you have shopped with us before, please enter your details in the boxes below. If you are a new customer please proceed to the Billing & Shipping section.

+
+

+ + +

+

+ + +

+

+ + +

+

+ Lost your password? +

+
+
+
+ + +

Have a coupon? Click here to enter your code

+
+
+
+

+ + +

+
+
+
+ +
+
+
+ + +
+
+

Billing Details

+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+ + +
+
+
+

Create an account by entering the information below. If you are a returning customer please login at the top of the page.

+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+ + +
+
+
+
+
+
+
+
+

Your order

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductTotal
+ Product Title Here Top × 1 + + $154.00 +
+ Product Title Here Wrapper × 1 + + $170.00 +
Cart Subtotal$245.00
Grand Total$564.00 +
+
+
+
+
+
+
+ +
+
+ +
+
+

Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order won’t be shipped until the funds have cleared in our account.

+
+
+
+
+
+
+ +
+
+
+
+

Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode.

+
+
+
+
+
+
+ +
+
+
+
+

Pay via PayPal; you can pay with your credit card if you don’t have a PayPal account.

+
+
+
+
+
+
+ +
+
+
+
+

Cash on Delivery: you can pay with your credit card if you don’t have a PayPal account.

+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/compare.html b/html/compare.html new file mode 100644 index 0000000..ac48992 --- /dev/null +++ b/html/compare.html @@ -0,0 +1,1020 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Image +
+
+ compare-wrapper +
+
+
+
+
+ compare-wrapper +
+
+
+
+
+ compare-wrapper +
+
+
Item Name +
Product Title Here 1
+
+
Product Title Here 2
+
+
Product Title Here 3
+
Description +

It was popularised in the 1960s with the release of Letraset sheets cont aining Lorem Ipsum passages.

+
+

popularised in the 1960s with the release of Letr aset sheets containing Lorem Ip sum passages nosn.

+
+

Release of Letraset sheets containing Lorem Ipsum passages. It was popul arised in the 1960s with the.

+
Price$ 124$ 542$ 234
ColorRedPinkGreen
StockIn StockSold OutIn Stock
Rating +
+ + + + + +
+
+
+ + + + + +
+
+
+ + + + + +
+
Add to cart + add to cart + + add to cart + + add to cart +
Remove
+
+
+
+ + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/contact.html b/html/contact.html new file mode 100644 index 0000000..7aadb10 --- /dev/null +++ b/html/contact.html @@ -0,0 +1,977 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + + +
+
+
+ + + +
+
+
+ +
+
+
+

Quick contact

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vero, autem.

+
+ +
+
+ +
+
+
+

Message Box

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Odit nisi assumenda aliquam ex, unde quo hic nostrum voluptatum in. Voluptatibus laborum facere obcaecati fugiat error.

+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+ +

+
+
+
+
+
+
+ + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/css/animate.css b/html/css/animate.css new file mode 100644 index 0000000..abc647e --- /dev/null +++ b/html/css/animate.css @@ -0,0 +1,3436 @@ +@charset "UTF-8"; + +/*! + * animate.css -http://daneden.me/animate + * Version - 3.5.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2017 Daniel Eden + */ + +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} + +.animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; +} + +.animated.hinge { + -webkit-animation-duration: 2s; + animation-duration: 2s; +} + +.animated.flipOutX, +.animated.flipOutY, +.animated.bounceIn, +.animated.bounceOut { + -webkit-animation-duration: .75s; + animation-duration: .75s; +} + +@-webkit-keyframes bounce { + from, 20%, 53%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + -webkit-transform: translate3d(0,0,0); + transform: translate3d(0,0,0); + } + + 40%, 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0,-4px,0); + transform: translate3d(0,-4px,0); + } +} + +@keyframes bounce { + from, 20%, 53%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + -webkit-transform: translate3d(0,0,0); + transform: translate3d(0,0,0); + } + + 40%, 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0,-4px,0); + transform: translate3d(0,-4px,0); + } +} + +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; +} + +@-webkit-keyframes flash { + from, 50%, to { + opacity: 1; + } + + 25%, 75% { + opacity: 0; + } +} + +@keyframes flash { + from, 50%, to { + opacity: 1; + } + + 25%, 75% { + opacity: 0; + } +} + +.flash { + -webkit-animation-name: flash; + animation-name: flash; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse; +} + +@-webkit-keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(.95, 1.05, 1); + transform: scale3d(.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, .95, 1); + transform: scale3d(1.05, .95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(.95, 1.05, 1); + transform: scale3d(.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, .95, 1); + transform: scale3d(1.05, .95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand; +} + +@-webkit-keyframes shake { + from, to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, 40%, 60%, 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} + +@keyframes shake { + from, to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, 40%, 60%, 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} + +.shake { + -webkit-animation-name: shake; + animation-name: shake; +} + +@-webkit-keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); + } + + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); + } + + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); + } + + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); + } + + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} + +@keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); + } + + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); + } + + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); + } + + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); + } + + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} + +.headShake { + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + -webkit-animation-name: headShake; + animation-name: headShake; +} + +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +@keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +.swing { + -webkit-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing; +} + +@-webkit-keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, 20% { + -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + } + + 30%, 50%, 70%, 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, 60%, 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, 20% { + -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + } + + 30%, 50%, 70%, 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, 60%, 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.tada { + -webkit-animation-name: tada; + animation-name: tada; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes wobble { + from { + -webkit-transform: none; + transform: none; + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +@keyframes wobble { + from { + -webkit-transform: none; + transform: none; + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble; +} + +@-webkit-keyframes jello { + from, 11.1%, to { + -webkit-transform: none; + transform: none; + } + + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); + } + + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); + } + + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); + } + + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); + } + + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} + +@keyframes jello { + from, 11.1%, to { + -webkit-transform: none; + transform: none; + } + + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); + } + + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); + } + + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); + } + + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); + } + + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} + +.jello { + -webkit-animation-name: jello; + animation-name: jello; + -webkit-transform-origin: center; + transform-origin: center; +} + +@-webkit-keyframes bounceIn { + from, 20%, 40%, 60%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(.97, .97, .97); + transform: scale3d(.97, .97, .97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes bounceIn { + from, 20%, 40%, 60%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(.97, .97, .97); + transform: scale3d(.97, .97, .97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.bounceIn { + -webkit-animation-name: bounceIn; + animation-name: bounceIn; +} + +@-webkit-keyframes bounceInDown { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +@keyframes bounceInDown { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown; +} + +@-webkit-keyframes bounceInLeft { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +@keyframes bounceInLeft { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft; +} + +@-webkit-keyframes bounceInRight { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +@keyframes bounceInRight { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } + + to { + -webkit-transform: none; + transform: none; + } +} + +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight; +} + +@-webkit-keyframes bounceInUp { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInUp { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp; +} + +@-webkit-keyframes bounceOut { + 20% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 50%, 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } +} + +@keyframes bounceOut { + 20% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 50%, 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } +} + +.bounceOut { + -webkit-animation-name: bounceOut; + animation-name: bounceOut; +} + +@-webkit-keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown; +} + +@-webkit-keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft; +} + +@-webkit-keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +.bounceOutRight { + -webkit-animation-name: bounceOutRight; + animation-name: bounceOutRight; +} + +@-webkit-keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp; +} + +@-webkit-keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +@keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} + +@-webkit-keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; +} + +@-webkit-keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; +} + +@-webkit-keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; +} + +@-webkit-keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} + +@-webkit-keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; +} + +@-webkit-keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig; +} + +@-webkit-keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; +} + +@-webkit-keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig; +} + +@-webkit-keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + +@keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; +} + +@-webkit-keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; +} + +@-webkit-keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig; +} + +@-webkit-keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; +} + +@-webkit-keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig; +} + +@-webkit-keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; +} + +@-webkit-keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig; +} + +@-webkit-keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; +} + +@-webkit-keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig; +} + +@-webkit-keyframes flip { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); + transform: perspective(400px) scale3d(.95, .95, .95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +@keyframes flip { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); + transform: perspective(400px) scale3d(.95, .95, .95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +.animated.flip { + -webkit-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip; +} + +@-webkit-keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInX { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInX; + animation-name: flipInX; +} + +@-webkit-keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInY; + animation-name: flipInY; +} + +@-webkit-keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +.flipOutX { + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +@-webkit-keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +.flipOutY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY; +} + +@-webkit-keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1; + } + + to { + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1; + } + + to { + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.lightSpeedIn { + -webkit-animation-name: lightSpeedIn; + animation-name: lightSpeedIn; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; +} + +@-webkit-keyframes lightSpeedOut { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +@keyframes lightSpeedOut { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +.lightSpeedOut { + -webkit-animation-name: lightSpeedOut; + animation-name: lightSpeedOut; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; +} + +@-webkit-keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn; +} + +@-webkit-keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft; +} + +@-webkit-keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight; +} + +@-webkit-keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft; +} + +@-webkit-keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight; +} + +@-webkit-keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +@keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut; +} + +@-webkit-keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft; +} + +@-webkit-keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight; +} + +@-webkit-keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft; +} + +@-webkit-keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +@keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight; +} + +@-webkit-keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +@keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +.hinge { + -webkit-animation-name: hinge; + animation-name: hinge; +} + +@-webkit-keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} + +@keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} + +.jackInTheBox { + -webkit-animation-name: jackInTheBox; + animation-name: jackInTheBox; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +@keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut; +} + +@-webkit-keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 50% { + opacity: 1; + } +} + +@keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 50% { + opacity: 1; + } +} + +.zoomIn { + -webkit-animation-name: zoomIn; + animation-name: zoomIn; +} + +@-webkit-keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInDown { + -webkit-animation-name: zoomInDown; + animation-name: zoomInDown; +} + +@-webkit-keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInLeft { + -webkit-animation-name: zoomInLeft; + animation-name: zoomInLeft; +} + +@-webkit-keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInRight { + -webkit-animation-name: zoomInRight; + animation-name: zoomInRight; +} + +@-webkit-keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInUp { + -webkit-animation-name: zoomInUp; + animation-name: zoomInUp; +} + +@-webkit-keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + to { + opacity: 0; + } +} + +@keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + to { + opacity: 0; + } +} + +.zoomOut { + -webkit-animation-name: zoomOut; + animation-name: zoomOut; +} + +@-webkit-keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomOutDown { + -webkit-animation-name: zoomOutDown; + animation-name: zoomOutDown; +} + +@-webkit-keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); + transform: scale(.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +@keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); + transform: scale(.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +.zoomOutLeft { + -webkit-animation-name: zoomOutLeft; + animation-name: zoomOutLeft; +} + +@-webkit-keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); + transform: scale(.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +@keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); + transform: scale(.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +.zoomOutRight { + -webkit-animation-name: zoomOutRight; + animation-name: zoomOutRight; +} + +@-webkit-keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomOutUp { + -webkit-animation-name: zoomOutUp; + animation-name: zoomOutUp; +} + +@-webkit-keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; +} + +@-webkit-keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft; +} + +@-webkit-keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight; +} + +@-webkit-keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp; +} + +@-webkit-keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown; +} + +@-webkit-keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft; +} + +@-webkit-keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight; +} + +@-webkit-keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp; +} + + + + +@-webkit-keyframes fadeInRightCus { + from { + opacity: 0; + -webkit-transform: translate3d(10%, 0, 0); + transform: translate3d(10%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + + + + +@keyframes fadeInRightCus { + from { + opacity: 0; + -webkit-transform: translate3d(10%, 0, 0); + transform: translate3d(10%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInRightCus { + -webkit-animation-name: fadeInRightCus; + animation-name: fadeInRightCus; +} diff --git a/html/css/default.css b/html/css/default.css new file mode 100644 index 0000000..a81cb0a --- /dev/null +++ b/html/css/default.css @@ -0,0 +1,183 @@ +/*-------------------------------------------------- +All By Default Css +-----------------------------------------------------*/ +::-moz-selection { + background: #b3d4fc; + text-shadow: none +} + +::-moz-selection { + background: #b3d4fc; + text-shadow: none +} + +::selection { + background: #b3d4fc; + text-shadow: none +} + +a,button,a:before,input{ + -webkit-transition: all 0.5s ease-in-out 0s; + transition: all 0.5s ease-in-out 0s; +} +img{ + -webkit-transition: all 300ms ease-in 0s; + transition: all 300ms ease-in 0s; + max-width: 100%; +} +.opacity-img a:hover{ + opacity: 0.8 +} +.tab-content .tab-pane { + display: block; + height: 0; + visibility: hidden; +} +.tab-content .tab-pane.active { + height: auto; + visibility: visible; +} +.thumb-desc-inner .tab-pane:not(.active) { + display: none; +} +.form-check-input { + margin-left: 0; +} +.form-check-label { + margin-bottom: 0; + margin-left: 1.25rem; + padding-left: 0; +} +input:focus{ + outline: none; +} +input,select{ + font-size: 13px; +} + +textarea{ + resize: none; +} +.modal-backdrop { + z-index: 1049; +} +option { + background: #ffffff none repeat scroll 0 0; + padding: 5px 0 5px 10px; +} +button, html input[type="button"], input[type="reset"], input[type="submit"] { + cursor: pointer; +} +.table{ + margin-bottom: 0; +} +.form-control:focus{ + -webkit-box-shadow: none; + box-shadow: none; + border-color: #ebebeb; +} +button:focus, +select:focus{ + outline: none; +} +button.close { + cursor: pointer; +} + +.img{ + max-width: 100%; +} +.full-img{ + width: 100%; +} +.menu-hidden{ + display: none; +} +.zoom{ + overflow: hidden; +} +.zoom img,.single-banner img{ + width: 100%; + -webkit-transition: all 500ms ease-in 0s; + transition: all 500ms ease-in 0s; +} +.zoom:hover img{ + -webkit-transform: scale(1.03); + transform: scale(1.03); +} + +/************************************* +scroll up css +**************************************/ +#scrollUp { + background: #ed6436 none repeat scroll 0 0; + border: 1px solid #ed6436; + bottom: 65px; + color: #ffffff; + cursor: pointer; + font-weight: 600; + height: 50px; + right: 30px; + text-align: center; + text-transform: uppercase; + line-height: 50px; + width: 40px; +} +#scrollUp i { + font-size: 25px; +} +#scrollUp:hover { + background:#fff; + color: #ed6436; + border-color:#ed6436 +} + + /*pattern background*/ +.pattern-bg { background:url(../../images/pattern/pattern-bg.png) repeat; background-position: top right; background-color: rgba(236, 239, 247, 1); } + + +::-moz-selection { + background: #b3d4fc; + text-shadow: none +} + +::-moz-selection { + background: #b3d4fc; + text-shadow: none +} + +::selection { + background: #b3d4fc; + text-shadow: none +} + +::-webkit-input-placeholder { + opacity: 1 !important; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100) +} + +:-moz-placeholder { + opacity: 1 !important; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100) +} + +::-moz-placeholder { + opacity: 1 !important; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100) +} + +:-ms-input-placeholder { + opacity: 1 !important; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100) +} +.newsletter-box input::-webkit-input-placeholder,.subscribe-form-group input::-webkit-input-placeholder { + color: #232323; +} +.sidbar-style .form-check-input { + margin-top: 6px; + margin-left: 0; +} diff --git a/html/css/icofont.css b/html/css/icofont.css new file mode 100644 index 0000000..ef1a179 --- /dev/null +++ b/html/css/icofont.css @@ -0,0 +1,10757 @@ +/*! +* @package IcoFont +* @version 1.0.1 +* @author IcoFont https://icofont.com +* @copyright Copyright (c) 2015 - 2018 IcoFont +* @license - https://icofont.com/license/ +*/ + +@font-face +{ + +font-family: "IcoFont"; +font-weight: normal; +font-style: "Regular"; +src: url("../fonts/icofont.woff2") format("woff2"), +url("../fonts/icofont.woff") format("woff"); +} + +[class^="icofont-"], [class*=" icofont-"] +{ + font-family: 'IcoFont' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + white-space: nowrap; + word-wrap: normal; + direction: ltr; + line-height: 1; +/* Better Font Rendering =========== */ + -webkit-font-feature-settings: "liga"; + -webkit-font-smoothing: antialiased; +} + +.icofont-angry-monster:before +{ + content: "\e800"; +} + +.icofont-bathtub:before +{ + content: "\e801"; +} + +.icofont-bird-wings:before +{ + content: "\e802"; +} + +.icofont-bow:before +{ + content: "\e803"; +} + +.icofont-castle:before +{ + content: "\e804"; +} + +.icofont-circuit:before +{ + content: "\e805"; +} + +.icofont-crown-king:before +{ + content: "\e806"; +} + +.icofont-crown-queen:before +{ + content: "\e807"; +} + +.icofont-dart:before +{ + content: "\e808"; +} + +.icofont-disability-race:before +{ + content: "\e809"; +} + +.icofont-diving-goggle:before +{ + content: "\e80a"; +} + +.icofont-eye-open:before +{ + content: "\e80b"; +} + +.icofont-flora-flower:before +{ + content: "\e80c"; +} + +.icofont-flora:before +{ + content: "\e80d"; +} + +.icofont-gift-box:before +{ + content: "\e80e"; +} + +.icofont-halloween-pumpkin:before +{ + content: "\e80f"; +} + +.icofont-hand-power:before +{ + content: "\e810"; +} + +.icofont-hand-thunder:before +{ + content: "\e811"; +} + +.icofont-king-monster:before +{ + content: "\e812"; +} + +.icofont-love:before +{ + content: "\e813"; +} + +.icofont-magician-hat:before +{ + content: "\e814"; +} + +.icofont-native-american:before +{ + content: "\e815"; +} + +.icofont-owl-look:before +{ + content: "\e816"; +} + +.icofont-phoenix:before +{ + content: "\e817"; +} + +.icofont-robot-face:before +{ + content: "\e818"; +} + +.icofont-sand-clock:before +{ + content: "\e819"; +} + +.icofont-shield-alt:before +{ + content: "\e81a"; +} + +.icofont-ship-wheel:before +{ + content: "\e81b"; +} + +.icofont-skull-danger:before +{ + content: "\e81c"; +} + +.icofont-skull-face:before +{ + content: "\e81d"; +} + +.icofont-snowmobile:before +{ + content: "\e81e"; +} + +.icofont-space-shuttle:before +{ + content: "\e81f"; +} + +.icofont-star-shape:before +{ + content: "\e820"; +} + +.icofont-swirl:before +{ + content: "\e821"; +} + +.icofont-tattoo-wing:before +{ + content: "\e822"; +} + +.icofont-throne:before +{ + content: "\e823"; +} + +.icofont-tree-alt:before +{ + content: "\e824"; +} + +.icofont-triangle:before +{ + content: "\e825"; +} + +.icofont-unity-hand:before +{ + content: "\e826"; +} + +.icofont-weed:before +{ + content: "\e827"; +} + +.icofont-woman-bird:before +{ + content: "\e828"; +} + +.icofont-bat:before +{ + content: "\e829"; +} + +.icofont-bear-face:before +{ + content: "\e82a"; +} + +.icofont-bear-tracks:before +{ + content: "\e82b"; +} + +.icofont-bear:before +{ + content: "\e82c"; +} + +.icofont-bird-alt:before +{ + content: "\e82d"; +} + +.icofont-bird-flying:before +{ + content: "\e82e"; +} + +.icofont-bird:before +{ + content: "\e82f"; +} + +.icofont-birds:before +{ + content: "\e830"; +} + +.icofont-bone:before +{ + content: "\e831"; +} + +.icofont-bull:before +{ + content: "\e832"; +} + +.icofont-butterfly-alt:before +{ + content: "\e833"; +} + +.icofont-butterfly:before +{ + content: "\e834"; +} + +.icofont-camel-alt:before +{ + content: "\e835"; +} + +.icofont-camel-head:before +{ + content: "\e836"; +} + +.icofont-camel:before +{ + content: "\e837"; +} + +.icofont-cat-alt-1:before +{ + content: "\e838"; +} + +.icofont-cat-alt-2:before +{ + content: "\e839"; +} + +.icofont-cat-alt-3:before +{ + content: "\e83a"; +} + +.icofont-cat-dog:before +{ + content: "\e83b"; +} + +.icofont-cat-face:before +{ + content: "\e83c"; +} + +.icofont-cat:before +{ + content: "\e83d"; +} + +.icofont-cow-head:before +{ + content: "\e83e"; +} + +.icofont-cow:before +{ + content: "\e83f"; +} + +.icofont-crab:before +{ + content: "\e840"; +} + +.icofont-crocodile:before +{ + content: "\e841"; +} + +.icofont-deer-head:before +{ + content: "\e842"; +} + +.icofont-dog-alt:before +{ + content: "\e843"; +} + +.icofont-dog-barking:before +{ + content: "\e844"; +} + +.icofont-dog:before +{ + content: "\e845"; +} + +.icofont-dolphin:before +{ + content: "\e846"; +} + +.icofont-duck-tracks:before +{ + content: "\e847"; +} + +.icofont-eagle-head:before +{ + content: "\e848"; +} + +.icofont-eaten-fish:before +{ + content: "\e849"; +} + +.icofont-elephant-alt:before +{ + content: "\e84a"; +} + +.icofont-elephant-head-alt:before +{ + content: "\e84b"; +} + +.icofont-elephant-head:before +{ + content: "\e84c"; +} + +.icofont-elephant:before +{ + content: "\e84d"; +} + +.icofont-elk:before +{ + content: "\e84e"; +} + +.icofont-fish-1:before +{ + content: "\e84f"; +} + +.icofont-fish-2:before +{ + content: "\e850"; +} + +.icofont-fish-3:before +{ + content: "\e851"; +} + +.icofont-fish-4:before +{ + content: "\e852"; +} + +.icofont-fish-5:before +{ + content: "\e853"; +} + +.icofont-fish:before +{ + content: "\e854"; +} + +.icofont-fox-alt:before +{ + content: "\e855"; +} + +.icofont-fox:before +{ + content: "\e856"; +} + +.icofont-frog-tracks:before +{ + content: "\e857"; +} + +.icofont-frog:before +{ + content: "\e858"; +} + +.icofont-froggy:before +{ + content: "\e859"; +} + +.icofont-giraffe-head-1:before +{ + content: "\e85a"; +} + +.icofont-giraffe-head-2:before +{ + content: "\e85b"; +} + +.icofont-giraffe-head:before +{ + content: "\e85c"; +} + +.icofont-giraffe:before +{ + content: "\e85d"; +} + +.icofont-goat-head:before +{ + content: "\e85e"; +} + +.icofont-gorilla:before +{ + content: "\e85f"; +} + +.icofont-hen-tracks:before +{ + content: "\e860"; +} + +.icofont-horse-head-1:before +{ + content: "\e861"; +} + +.icofont-horse-head-2:before +{ + content: "\e862"; +} + +.icofont-horse-head:before +{ + content: "\e863"; +} + +.icofont-horse-tracks:before +{ + content: "\e864"; +} + +.icofont-jellyfish:before +{ + content: "\e865"; +} + +.icofont-kangaroo:before +{ + content: "\e866"; +} + +.icofont-lemur:before +{ + content: "\e867"; +} + +.icofont-lion-head-1:before +{ + content: "\e868"; +} + +.icofont-lion-head-2:before +{ + content: "\e869"; +} + +.icofont-lion-head:before +{ + content: "\e86a"; +} + +.icofont-lion:before +{ + content: "\e86b"; +} + +.icofont-monkey-2:before +{ + content: "\e86c"; +} + +.icofont-monkey-3:before +{ + content: "\e86d"; +} + +.icofont-monkey-face:before +{ + content: "\e86e"; +} + +.icofont-monkey:before +{ + content: "\e86f"; +} + +.icofont-octopus-alt:before +{ + content: "\e870"; +} + +.icofont-octopus:before +{ + content: "\e871"; +} + +.icofont-owl:before +{ + content: "\e872"; +} + +.icofont-panda-face:before +{ + content: "\e873"; +} + +.icofont-panda:before +{ + content: "\e874"; +} + +.icofont-panther:before +{ + content: "\e875"; +} + +.icofont-parrot-lip:before +{ + content: "\e876"; +} + +.icofont-parrot:before +{ + content: "\e877"; +} + +.icofont-paw:before +{ + content: "\e878"; +} + +.icofont-pelican:before +{ + content: "\e879"; +} + +.icofont-penguin:before +{ + content: "\e87a"; +} + +.icofont-pig-face:before +{ + content: "\e87b"; +} + +.icofont-pig:before +{ + content: "\e87c"; +} + +.icofont-pigeon-1:before +{ + content: "\e87d"; +} + +.icofont-pigeon-2:before +{ + content: "\e87e"; +} + +.icofont-pigeon:before +{ + content: "\e87f"; +} + +.icofont-rabbit:before +{ + content: "\e880"; +} + +.icofont-rat:before +{ + content: "\e881"; +} + +.icofont-rhino-head:before +{ + content: "\e882"; +} + +.icofont-rhino:before +{ + content: "\e883"; +} + +.icofont-rooster:before +{ + content: "\e884"; +} + +.icofont-seahorse:before +{ + content: "\e885"; +} + +.icofont-seal:before +{ + content: "\e886"; +} + +.icofont-shrimp-alt:before +{ + content: "\e887"; +} + +.icofont-shrimp:before +{ + content: "\e888"; +} + +.icofont-snail-1:before +{ + content: "\e889"; +} + +.icofont-snail-2:before +{ + content: "\e88a"; +} + +.icofont-snail-3:before +{ + content: "\e88b"; +} + +.icofont-snail:before +{ + content: "\e88c"; +} + +.icofont-snake:before +{ + content: "\e88d"; +} + +.icofont-squid:before +{ + content: "\e88e"; +} + +.icofont-squirrel:before +{ + content: "\e88f"; +} + +.icofont-tiger-face:before +{ + content: "\e890"; +} + +.icofont-tiger:before +{ + content: "\e891"; +} + +.icofont-turtle:before +{ + content: "\e892"; +} + +.icofont-whale:before +{ + content: "\e893"; +} + +.icofont-woodpecker:before +{ + content: "\e894"; +} + +.icofont-zebra:before +{ + content: "\e895"; +} + +.icofont-brand-acer:before +{ + content: "\e896"; +} + +.icofont-brand-adidas:before +{ + content: "\e897"; +} + +.icofont-brand-adobe:before +{ + content: "\e898"; +} + +.icofont-brand-air-new-zealand:before +{ + content: "\e899"; +} + +.icofont-brand-airbnb:before +{ + content: "\e89a"; +} + +.icofont-brand-aircell:before +{ + content: "\e89b"; +} + +.icofont-brand-airtel:before +{ + content: "\e89c"; +} + +.icofont-brand-alcatel:before +{ + content: "\e89d"; +} + +.icofont-brand-alibaba:before +{ + content: "\e89e"; +} + +.icofont-brand-aliexpress:before +{ + content: "\e89f"; +} + +.icofont-brand-alipay:before +{ + content: "\e8a0"; +} + +.icofont-brand-amazon:before +{ + content: "\e8a1"; +} + +.icofont-brand-amd:before +{ + content: "\e8a2"; +} + +.icofont-brand-american-airlines:before +{ + content: "\e8a3"; +} + +.icofont-brand-android-robot:before +{ + content: "\e8a4"; +} + +.icofont-brand-android:before +{ + content: "\e8a5"; +} + +.icofont-brand-aol:before +{ + content: "\e8a6"; +} + +.icofont-brand-apple:before +{ + content: "\e8a7"; +} + +.icofont-brand-appstore:before +{ + content: "\e8a8"; +} + +.icofont-brand-asus:before +{ + content: "\e8a9"; +} + +.icofont-brand-ati:before +{ + content: "\e8aa"; +} + +.icofont-brand-att:before +{ + content: "\e8ab"; +} + +.icofont-brand-audi:before +{ + content: "\e8ac"; +} + +.icofont-brand-axiata:before +{ + content: "\e8ad"; +} + +.icofont-brand-bada:before +{ + content: "\e8ae"; +} + +.icofont-brand-bbc:before +{ + content: "\e8af"; +} + +.icofont-brand-bing:before +{ + content: "\e8b0"; +} + +.icofont-brand-blackberry:before +{ + content: "\e8b1"; +} + +.icofont-brand-bmw:before +{ + content: "\e8b2"; +} + +.icofont-brand-box:before +{ + content: "\e8b3"; +} + +.icofont-brand-burger-king:before +{ + content: "\e8b4"; +} + +.icofont-brand-business-insider:before +{ + content: "\e8b5"; +} + +.icofont-brand-buzzfeed:before +{ + content: "\e8b6"; +} + +.icofont-brand-cannon:before +{ + content: "\e8b7"; +} + +.icofont-brand-casio:before +{ + content: "\e8b8"; +} + +.icofont-brand-china-mobile:before +{ + content: "\e8b9"; +} + +.icofont-brand-china-telecom:before +{ + content: "\e8ba"; +} + +.icofont-brand-china-unicom:before +{ + content: "\e8bb"; +} + +.icofont-brand-cisco:before +{ + content: "\e8bc"; +} + +.icofont-brand-citibank:before +{ + content: "\e8bd"; +} + +.icofont-brand-cnet:before +{ + content: "\e8be"; +} + +.icofont-brand-cnn:before +{ + content: "\e8bf"; +} + +.icofont-brand-cocal-cola:before +{ + content: "\e8c0"; +} + +.icofont-brand-compaq:before +{ + content: "\e8c1"; +} + +.icofont-brand-debian:before +{ + content: "\e8c2"; +} + +.icofont-brand-delicious:before +{ + content: "\e8c3"; +} + +.icofont-brand-dell:before +{ + content: "\e8c4"; +} + +.icofont-brand-designbump:before +{ + content: "\e8c5"; +} + +.icofont-brand-designfloat:before +{ + content: "\e8c6"; +} + +.icofont-brand-disney:before +{ + content: "\e8c7"; +} + +.icofont-brand-dodge:before +{ + content: "\e8c8"; +} + +.icofont-brand-dove:before +{ + content: "\e8c9"; +} + +.icofont-brand-drupal:before +{ + content: "\e8ca"; +} + +.icofont-brand-ebay:before +{ + content: "\e8cb"; +} + +.icofont-brand-eleven:before +{ + content: "\e8cc"; +} + +.icofont-brand-emirates:before +{ + content: "\e8cd"; +} + +.icofont-brand-espn:before +{ + content: "\e8ce"; +} + +.icofont-brand-etihad-airways:before +{ + content: "\e8cf"; +} + +.icofont-brand-etisalat:before +{ + content: "\e8d0"; +} + +.icofont-brand-etsy:before +{ + content: "\e8d1"; +} + +.icofont-brand-fastrack:before +{ + content: "\e8d2"; +} + +.icofont-brand-fedex:before +{ + content: "\e8d3"; +} + +.icofont-brand-ferrari:before +{ + content: "\e8d4"; +} + +.icofont-brand-fitbit:before +{ + content: "\e8d5"; +} + +.icofont-brand-flikr:before +{ + content: "\e8d6"; +} + +.icofont-brand-forbes:before +{ + content: "\e8d7"; +} + +.icofont-brand-foursquare:before +{ + content: "\e8d8"; +} + +.icofont-brand-foxconn:before +{ + content: "\e8d9"; +} + +.icofont-brand-fujitsu:before +{ + content: "\e8da"; +} + +.icofont-brand-general-electric:before +{ + content: "\e8db"; +} + +.icofont-brand-gillette:before +{ + content: "\e8dc"; +} + +.icofont-brand-gizmodo:before +{ + content: "\e8dd"; +} + +.icofont-brand-gnome:before +{ + content: "\e8de"; +} + +.icofont-brand-google:before +{ + content: "\e8df"; +} + +.icofont-brand-gopro:before +{ + content: "\e8e0"; +} + +.icofont-brand-gucci:before +{ + content: "\e8e1"; +} + +.icofont-brand-hallmark:before +{ + content: "\e8e2"; +} + +.icofont-brand-hi5:before +{ + content: "\e8e3"; +} + +.icofont-brand-honda:before +{ + content: "\e8e4"; +} + +.icofont-brand-hp:before +{ + content: "\e8e5"; +} + +.icofont-brand-hsbc:before +{ + content: "\e8e6"; +} + +.icofont-brand-htc:before +{ + content: "\e8e7"; +} + +.icofont-brand-huawei:before +{ + content: "\e8e8"; +} + +.icofont-brand-hulu:before +{ + content: "\e8e9"; +} + +.icofont-brand-hyundai:before +{ + content: "\e8ea"; +} + +.icofont-brand-ibm:before +{ + content: "\e8eb"; +} + +.icofont-brand-icofont:before +{ + content: "\e8ec"; +} + +.icofont-brand-icq:before +{ + content: "\e8ed"; +} + +.icofont-brand-ikea:before +{ + content: "\e8ee"; +} + +.icofont-brand-imdb:before +{ + content: "\e8ef"; +} + +.icofont-brand-indiegogo:before +{ + content: "\e8f0"; +} + +.icofont-brand-intel:before +{ + content: "\e8f1"; +} + +.icofont-brand-ipair:before +{ + content: "\e8f2"; +} + +.icofont-brand-jaguar:before +{ + content: "\e8f3"; +} + +.icofont-brand-java:before +{ + content: "\e8f4"; +} + +.icofont-brand-joomla:before +{ + content: "\e8f5"; +} + +.icofont-brand-kickstarter:before +{ + content: "\e8f6"; +} + +.icofont-brand-kik:before +{ + content: "\e8f7"; +} + +.icofont-brand-lastfm:before +{ + content: "\e8f8"; +} + +.icofont-brand-lego:before +{ + content: "\e8f9"; +} + +.icofont-brand-lenovo:before +{ + content: "\e8fa"; +} + +.icofont-brand-levis:before +{ + content: "\e8fb"; +} + +.icofont-brand-lexus:before +{ + content: "\e8fc"; +} + +.icofont-brand-lg:before +{ + content: "\e8fd"; +} + +.icofont-brand-life-hacker:before +{ + content: "\e8fe"; +} + +.icofont-brand-linux-mint:before +{ + content: "\e8ff"; +} + +.icofont-brand-linux:before +{ + content: "\e900"; +} + +.icofont-brand-lionix:before +{ + content: "\e901"; +} + +.icofont-brand-loreal:before +{ + content: "\e902"; +} + +.icofont-brand-louis-vuitton:before +{ + content: "\e903"; +} + +.icofont-brand-mac-os:before +{ + content: "\e904"; +} + +.icofont-brand-marvel-app:before +{ + content: "\e905"; +} + +.icofont-brand-mashable:before +{ + content: "\e906"; +} + +.icofont-brand-mazda:before +{ + content: "\e907"; +} + +.icofont-brand-mcdonals:before +{ + content: "\e908"; +} + +.icofont-brand-mercedes:before +{ + content: "\e909"; +} + +.icofont-brand-micromax:before +{ + content: "\e90a"; +} + +.icofont-brand-microsoft:before +{ + content: "\e90b"; +} + +.icofont-brand-mobileme:before +{ + content: "\e90c"; +} + +.icofont-brand-mobily:before +{ + content: "\e90d"; +} + +.icofont-brand-motorola:before +{ + content: "\e90e"; +} + +.icofont-brand-msi:before +{ + content: "\e90f"; +} + +.icofont-brand-mts:before +{ + content: "\e910"; +} + +.icofont-brand-myspace:before +{ + content: "\e911"; +} + +.icofont-brand-mytv:before +{ + content: "\e912"; +} + +.icofont-brand-nasa:before +{ + content: "\e913"; +} + +.icofont-brand-natgeo:before +{ + content: "\e914"; +} + +.icofont-brand-nbc:before +{ + content: "\e915"; +} + +.icofont-brand-nescafe:before +{ + content: "\e916"; +} + +.icofont-brand-nestle:before +{ + content: "\e917"; +} + +.icofont-brand-netflix:before +{ + content: "\e918"; +} + +.icofont-brand-nexus:before +{ + content: "\e919"; +} + +.icofont-brand-nike:before +{ + content: "\e91a"; +} + +.icofont-brand-nokia:before +{ + content: "\e91b"; +} + +.icofont-brand-nvidia:before +{ + content: "\e91c"; +} + +.icofont-brand-omega:before +{ + content: "\e91d"; +} + +.icofont-brand-opensuse:before +{ + content: "\e91e"; +} + +.icofont-brand-oracle:before +{ + content: "\e91f"; +} + +.icofont-brand-panasonic:before +{ + content: "\e920"; +} + +.icofont-brand-paypal:before +{ + content: "\e921"; +} + +.icofont-brand-pepsi:before +{ + content: "\e922"; +} + +.icofont-brand-philips:before +{ + content: "\e923"; +} + +.icofont-brand-pizza-hut:before +{ + content: "\e924"; +} + +.icofont-brand-playstation:before +{ + content: "\e925"; +} + +.icofont-brand-puma:before +{ + content: "\e926"; +} + +.icofont-brand-qatar-air:before +{ + content: "\e927"; +} + +.icofont-brand-qvc:before +{ + content: "\e928"; +} + +.icofont-brand-readernaut:before +{ + content: "\e929"; +} + +.icofont-brand-redbull:before +{ + content: "\e92a"; +} + +.icofont-brand-reebok:before +{ + content: "\e92b"; +} + +.icofont-brand-reuters:before +{ + content: "\e92c"; +} + +.icofont-brand-samsung:before +{ + content: "\e92d"; +} + +.icofont-brand-sap:before +{ + content: "\e92e"; +} + +.icofont-brand-saudia-airlines:before +{ + content: "\e92f"; +} + +.icofont-brand-scribd:before +{ + content: "\e930"; +} + +.icofont-brand-shell:before +{ + content: "\e931"; +} + +.icofont-brand-siemens:before +{ + content: "\e932"; +} + +.icofont-brand-sk-telecom:before +{ + content: "\e933"; +} + +.icofont-brand-slideshare:before +{ + content: "\e934"; +} + +.icofont-brand-smashing-magazine:before +{ + content: "\e935"; +} + +.icofont-brand-snapchat:before +{ + content: "\e936"; +} + +.icofont-brand-sony-ericsson:before +{ + content: "\e937"; +} + +.icofont-brand-sony:before +{ + content: "\e938"; +} + +.icofont-brand-soundcloud:before +{ + content: "\e939"; +} + +.icofont-brand-sprint:before +{ + content: "\e93a"; +} + +.icofont-brand-squidoo:before +{ + content: "\e93b"; +} + +.icofont-brand-starbucks:before +{ + content: "\e93c"; +} + +.icofont-brand-stc:before +{ + content: "\e93d"; +} + +.icofont-brand-steam:before +{ + content: "\e93e"; +} + +.icofont-brand-suzuki:before +{ + content: "\e93f"; +} + +.icofont-brand-symbian:before +{ + content: "\e940"; +} + +.icofont-brand-t-mobile:before +{ + content: "\e941"; +} + +.icofont-brand-tango:before +{ + content: "\e942"; +} + +.icofont-brand-target:before +{ + content: "\e943"; +} + +.icofont-brand-tata-indicom:before +{ + content: "\e944"; +} + +.icofont-brand-techcrunch:before +{ + content: "\e945"; +} + +.icofont-brand-telenor:before +{ + content: "\e946"; +} + +.icofont-brand-teliasonera:before +{ + content: "\e947"; +} + +.icofont-brand-tesla:before +{ + content: "\e948"; +} + +.icofont-brand-the-verge:before +{ + content: "\e949"; +} + +.icofont-brand-thenextweb:before +{ + content: "\e94a"; +} + +.icofont-brand-toshiba:before +{ + content: "\e94b"; +} + +.icofont-brand-toyota:before +{ + content: "\e94c"; +} + +.icofont-brand-tribenet:before +{ + content: "\e94d"; +} + +.icofont-brand-ubuntu:before +{ + content: "\e94e"; +} + +.icofont-brand-unilever:before +{ + content: "\e94f"; +} + +.icofont-brand-vaio:before +{ + content: "\e950"; +} + +.icofont-brand-verizon:before +{ + content: "\e951"; +} + +.icofont-brand-viber:before +{ + content: "\e952"; +} + +.icofont-brand-vodafone:before +{ + content: "\e953"; +} + +.icofont-brand-volkswagen:before +{ + content: "\e954"; +} + +.icofont-brand-walmart:before +{ + content: "\e955"; +} + +.icofont-brand-warnerbros:before +{ + content: "\e956"; +} + +.icofont-brand-whatsapp:before +{ + content: "\e957"; +} + +.icofont-brand-wikipedia:before +{ + content: "\e958"; +} + +.icofont-brand-windows:before +{ + content: "\e959"; +} + +.icofont-brand-wire:before +{ + content: "\e95a"; +} + +.icofont-brand-wordpress:before +{ + content: "\e95b"; +} + +.icofont-brand-xiaomi:before +{ + content: "\e95c"; +} + +.icofont-brand-yahoobuzz:before +{ + content: "\e95d"; +} + +.icofont-brand-yamaha:before +{ + content: "\e95e"; +} + +.icofont-brand-youtube:before +{ + content: "\e95f"; +} + +.icofont-brand-zain:before +{ + content: "\e960"; +} + +.icofont-bank-alt:before +{ + content: "\e961"; +} + +.icofont-bank:before +{ + content: "\e962"; +} + +.icofont-barcode:before +{ + content: "\e963"; +} + +.icofont-bill-alt:before +{ + content: "\e964"; +} + +.icofont-billboard:before +{ + content: "\e965"; +} + +.icofont-briefcase-1:before +{ + content: "\e966"; +} + +.icofont-briefcase-2:before +{ + content: "\e967"; +} + +.icofont-businessman:before +{ + content: "\e968"; +} + +.icofont-businesswoman:before +{ + content: "\e969"; +} + +.icofont-chair:before +{ + content: "\e96a"; +} + +.icofont-coins:before +{ + content: "\e96b"; +} + +.icofont-company:before +{ + content: "\e96c"; +} + +.icofont-contact-add:before +{ + content: "\e96d"; +} + +.icofont-files-stack:before +{ + content: "\e96e"; +} + +.icofont-handshake-deal:before +{ + content: "\e96f"; +} + +.icofont-id-card:before +{ + content: "\e970"; +} + +.icofont-meeting-add:before +{ + content: "\e971"; +} + +.icofont-money-bag:before +{ + content: "\e972"; +} + +.icofont-pie-chart:before +{ + content: "\e973"; +} + +.icofont-presentation-alt:before +{ + content: "\e974"; +} + +.icofont-presentation:before +{ + content: "\e975"; +} + +.icofont-stamp:before +{ + content: "\e976"; +} + +.icofont-stock-mobile:before +{ + content: "\e977"; +} + +.icofont-chart-arrows-axis:before +{ + content: "\e978"; +} + +.icofont-chart-bar-graph:before +{ + content: "\e979"; +} + +.icofont-chart-flow-1:before +{ + content: "\e97a"; +} + +.icofont-chart-flow-2:before +{ + content: "\e97b"; +} + +.icofont-chart-flow:before +{ + content: "\e97c"; +} + +.icofont-chart-growth:before +{ + content: "\e97d"; +} + +.icofont-chart-histogram-alt:before +{ + content: "\e97e"; +} + +.icofont-chart-histogram:before +{ + content: "\e97f"; +} + +.icofont-chart-line-alt:before +{ + content: "\e980"; +} + +.icofont-chart-line:before +{ + content: "\e981"; +} + +.icofont-chart-pie-alt:before +{ + content: "\e982"; +} + +.icofont-chart-pie:before +{ + content: "\e983"; +} + +.icofont-chart-radar-graph:before +{ + content: "\e984"; +} + +.icofont-architecture-alt:before +{ + content: "\e985"; +} + +.icofont-architecture:before +{ + content: "\e986"; +} + +.icofont-barricade:before +{ + content: "\e987"; +} + +.icofont-bolt:before +{ + content: "\e988"; +} + +.icofont-bricks:before +{ + content: "\e989"; +} + +.icofont-building-alt:before +{ + content: "\e98a"; +} + +.icofont-bull-dozer:before +{ + content: "\e98b"; +} + +.icofont-calculations:before +{ + content: "\e98c"; +} + +.icofont-cement-mix:before +{ + content: "\e98d"; +} + +.icofont-cement-mixer:before +{ + content: "\e98e"; +} + +.icofont-concrete-mixer:before +{ + content: "\e98f"; +} + +.icofont-danger-zone:before +{ + content: "\e990"; +} + +.icofont-drill:before +{ + content: "\e991"; +} + +.icofont-eco-energy:before +{ + content: "\e992"; +} + +.icofont-eco-environmen:before +{ + content: "\e993"; +} + +.icofont-energy-air:before +{ + content: "\e994"; +} + +.icofont-energy-oil:before +{ + content: "\e995"; +} + +.icofont-energy-savings:before +{ + content: "\e996"; +} + +.icofont-energy-solar:before +{ + content: "\e997"; +} + +.icofont-energy-water:before +{ + content: "\e998"; +} + +.icofont-engineer:before +{ + content: "\e999"; +} + +.icofont-fire-extinguisher-alt:before +{ + content: "\e99a"; +} + +.icofont-fire-extinguisher:before +{ + content: "\e99b"; +} + +.icofont-fix-tools:before +{ + content: "\e99c"; +} + +.icofont-fork-lift:before +{ + content: "\e99d"; +} + +.icofont-glue-oil:before +{ + content: "\e99e"; +} + +.icofont-hammer-alt:before +{ + content: "\e99f"; +} + +.icofont-hammer:before +{ + content: "\e9a0"; +} + +.icofont-help-robot:before +{ + content: "\e9a1"; +} + +.icofont-industries-1:before +{ + content: "\e9a2"; +} + +.icofont-industries-2:before +{ + content: "\e9a3"; +} + +.icofont-industries-3:before +{ + content: "\e9a4"; +} + +.icofont-industries-4:before +{ + content: "\e9a5"; +} + +.icofont-industries-5:before +{ + content: "\e9a6"; +} + +.icofont-industries:before +{ + content: "\e9a7"; +} + +.icofont-labour:before +{ + content: "\e9a8"; +} + +.icofont-mining:before +{ + content: "\e9a9"; +} + +.icofont-paint-brush:before +{ + content: "\e9aa"; +} + +.icofont-pollution:before +{ + content: "\e9ab"; +} + +.icofont-power-zone:before +{ + content: "\e9ac"; +} + +.icofont-radio-active:before +{ + content: "\e9ad"; +} + +.icofont-recycle-alt:before +{ + content: "\e9ae"; +} + +.icofont-recycling-man:before +{ + content: "\e9af"; +} + +.icofont-safety-hat-light:before +{ + content: "\e9b0"; +} + +.icofont-safety-hat:before +{ + content: "\e9b1"; +} + +.icofont-saw:before +{ + content: "\e9b2"; +} + +.icofont-screw-driver:before +{ + content: "\e9b3"; +} + +.icofont-tools-1:before +{ + content: "\e9b4"; +} + +.icofont-tools-bag:before +{ + content: "\e9b5"; +} + +.icofont-tow-truck:before +{ + content: "\e9b6"; +} + +.icofont-trolley:before +{ + content: "\e9b7"; +} + +.icofont-trowel:before +{ + content: "\e9b8"; +} + +.icofont-under-construction-alt:before +{ + content: "\e9b9"; +} + +.icofont-under-construction:before +{ + content: "\e9ba"; +} + +.icofont-vehicle-cement:before +{ + content: "\e9bb"; +} + +.icofont-vehicle-crane:before +{ + content: "\e9bc"; +} + +.icofont-vehicle-delivery-van:before +{ + content: "\e9bd"; +} + +.icofont-vehicle-dozer:before +{ + content: "\e9be"; +} + +.icofont-vehicle-excavator:before +{ + content: "\e9bf"; +} + +.icofont-vehicle-trucktor:before +{ + content: "\e9c0"; +} + +.icofont-vehicle-wrecking:before +{ + content: "\e9c1"; +} + +.icofont-worker:before +{ + content: "\e9c2"; +} + +.icofont-workers-group:before +{ + content: "\e9c3"; +} + +.icofont-wrench:before +{ + content: "\e9c4"; +} + +.icofont-afghani-false:before +{ + content: "\e9c5"; +} + +.icofont-afghani-minus:before +{ + content: "\e9c6"; +} + +.icofont-afghani-plus:before +{ + content: "\e9c7"; +} + +.icofont-afghani-true:before +{ + content: "\e9c8"; +} + +.icofont-afghani:before +{ + content: "\e9c9"; +} + +.icofont-baht-false:before +{ + content: "\e9ca"; +} + +.icofont-baht-minus:before +{ + content: "\e9cb"; +} + +.icofont-baht-plus:before +{ + content: "\e9cc"; +} + +.icofont-baht-true:before +{ + content: "\e9cd"; +} + +.icofont-baht:before +{ + content: "\e9ce"; +} + +.icofont-bitcoin-false:before +{ + content: "\e9cf"; +} + +.icofont-bitcoin-minus:before +{ + content: "\e9d0"; +} + +.icofont-bitcoin-plus:before +{ + content: "\e9d1"; +} + +.icofont-bitcoin-true:before +{ + content: "\e9d2"; +} + +.icofont-bitcoin:before +{ + content: "\e9d3"; +} + +.icofont-dollar-flase:before +{ + content: "\e9d4"; +} + +.icofont-dollar-minus:before +{ + content: "\e9d5"; +} + +.icofont-dollar-plus:before +{ + content: "\e9d6"; +} + +.icofont-dollar-true:before +{ + content: "\e9d7"; +} + +.icofont-dollar:before +{ + content: "\e9d8"; +} + +.icofont-dong-false:before +{ + content: "\e9d9"; +} + +.icofont-dong-minus:before +{ + content: "\e9da"; +} + +.icofont-dong-plus:before +{ + content: "\e9db"; +} + +.icofont-dong-true:before +{ + content: "\e9dc"; +} + +.icofont-dong:before +{ + content: "\e9dd"; +} + +.icofont-euro-false:before +{ + content: "\e9de"; +} + +.icofont-euro-minus:before +{ + content: "\e9df"; +} + +.icofont-euro-plus:before +{ + content: "\e9e0"; +} + +.icofont-euro-true:before +{ + content: "\e9e1"; +} + +.icofont-euro:before +{ + content: "\e9e2"; +} + +.icofont-frank-false:before +{ + content: "\e9e3"; +} + +.icofont-frank-minus:before +{ + content: "\e9e4"; +} + +.icofont-frank-plus:before +{ + content: "\e9e5"; +} + +.icofont-frank-true:before +{ + content: "\e9e6"; +} + +.icofont-frank:before +{ + content: "\e9e7"; +} + +.icofont-hryvnia-false:before +{ + content: "\e9e8"; +} + +.icofont-hryvnia-minus:before +{ + content: "\e9e9"; +} + +.icofont-hryvnia-plus:before +{ + content: "\e9ea"; +} + +.icofont-hryvnia-true:before +{ + content: "\e9eb"; +} + +.icofont-hryvnia:before +{ + content: "\e9ec"; +} + +.icofont-lira-false:before +{ + content: "\e9ed"; +} + +.icofont-lira-minus:before +{ + content: "\e9ee"; +} + +.icofont-lira-plus:before +{ + content: "\e9ef"; +} + +.icofont-lira-true:before +{ + content: "\e9f0"; +} + +.icofont-lira:before +{ + content: "\e9f1"; +} + +.icofont-peseta-false:before +{ + content: "\e9f2"; +} + +.icofont-peseta-minus:before +{ + content: "\e9f3"; +} + +.icofont-peseta-plus:before +{ + content: "\e9f4"; +} + +.icofont-peseta-true:before +{ + content: "\e9f5"; +} + +.icofont-peseta:before +{ + content: "\e9f6"; +} + +.icofont-peso-false:before +{ + content: "\e9f7"; +} + +.icofont-peso-minus:before +{ + content: "\e9f8"; +} + +.icofont-peso-plus:before +{ + content: "\e9f9"; +} + +.icofont-peso-true:before +{ + content: "\e9fa"; +} + +.icofont-peso:before +{ + content: "\e9fb"; +} + +.icofont-pound-false:before +{ + content: "\e9fc"; +} + +.icofont-pound-minus:before +{ + content: "\e9fd"; +} + +.icofont-pound-plus:before +{ + content: "\e9fe"; +} + +.icofont-pound-true:before +{ + content: "\e9ff"; +} + +.icofont-pound:before +{ + content: "\ea00"; +} + +.icofont-renminbi-false:before +{ + content: "\ea01"; +} + +.icofont-renminbi-minus:before +{ + content: "\ea02"; +} + +.icofont-renminbi-plus:before +{ + content: "\ea03"; +} + +.icofont-renminbi-true:before +{ + content: "\ea04"; +} + +.icofont-renminbi:before +{ + content: "\ea05"; +} + +.icofont-riyal-false:before +{ + content: "\ea06"; +} + +.icofont-riyal-minus:before +{ + content: "\ea07"; +} + +.icofont-riyal-plus:before +{ + content: "\ea08"; +} + +.icofont-riyal-true:before +{ + content: "\ea09"; +} + +.icofont-riyal:before +{ + content: "\ea0a"; +} + +.icofont-rouble-false:before +{ + content: "\ea0b"; +} + +.icofont-rouble-minus:before +{ + content: "\ea0c"; +} + +.icofont-rouble-plus:before +{ + content: "\ea0d"; +} + +.icofont-rouble-true:before +{ + content: "\ea0e"; +} + +.icofont-rouble:before +{ + content: "\ea0f"; +} + +.icofont-rupee-false:before +{ + content: "\ea10"; +} + +.icofont-rupee-minus:before +{ + content: "\ea11"; +} + +.icofont-rupee-plus:before +{ + content: "\ea12"; +} + +.icofont-rupee-true:before +{ + content: "\ea13"; +} + +.icofont-rupee:before +{ + content: "\ea14"; +} + +.icofont-taka-false:before +{ + content: "\ea15"; +} + +.icofont-taka-minus:before +{ + content: "\ea16"; +} + +.icofont-taka-plus:before +{ + content: "\ea17"; +} + +.icofont-taka-true:before +{ + content: "\ea18"; +} + +.icofont-taka:before +{ + content: "\ea19"; +} + +.icofont-turkish-lira-false:before +{ + content: "\ea1a"; +} + +.icofont-turkish-lira-minus:before +{ + content: "\ea1b"; +} + +.icofont-turkish-lira-plus:before +{ + content: "\ea1c"; +} + +.icofont-turkish-lira-true:before +{ + content: "\ea1d"; +} + +.icofont-turkish-lira:before +{ + content: "\ea1e"; +} + +.icofont-won-false:before +{ + content: "\ea1f"; +} + +.icofont-won-minus:before +{ + content: "\ea20"; +} + +.icofont-won-plus:before +{ + content: "\ea21"; +} + +.icofont-won-true:before +{ + content: "\ea22"; +} + +.icofont-won:before +{ + content: "\ea23"; +} + +.icofont-yen-false:before +{ + content: "\ea24"; +} + +.icofont-yen-minus:before +{ + content: "\ea25"; +} + +.icofont-yen-plus:before +{ + content: "\ea26"; +} + +.icofont-yen-true:before +{ + content: "\ea27"; +} + +.icofont-yen:before +{ + content: "\ea28"; +} + +.icofont-android-nexus:before +{ + content: "\ea29"; +} + +.icofont-android-tablet:before +{ + content: "\ea2a"; +} + +.icofont-apple-watch:before +{ + content: "\ea2b"; +} + +.icofont-drawing-tablet:before +{ + content: "\ea2c"; +} + +.icofont-earphone:before +{ + content: "\ea2d"; +} + +.icofont-flash-drive:before +{ + content: "\ea2e"; +} + +.icofont-game-console:before +{ + content: "\ea2f"; +} + +.icofont-game-controller:before +{ + content: "\ea30"; +} + +.icofont-game-pad:before +{ + content: "\ea31"; +} + +.icofont-game:before +{ + content: "\ea32"; +} + +.icofont-headphone-alt-1:before +{ + content: "\ea33"; +} + +.icofont-headphone-alt-2:before +{ + content: "\ea34"; +} + +.icofont-headphone-alt-3:before +{ + content: "\ea35"; +} + +.icofont-headphone-alt:before +{ + content: "\ea36"; +} + +.icofont-headphone:before +{ + content: "\ea37"; +} + +.icofont-htc-one:before +{ + content: "\ea38"; +} + +.icofont-imac:before +{ + content: "\ea39"; +} + +.icofont-ipad:before +{ + content: "\ea3a"; +} + +.icofont-iphone:before +{ + content: "\ea3b"; +} + +.icofont-ipod-nano:before +{ + content: "\ea3c"; +} + +.icofont-ipod-touch:before +{ + content: "\ea3d"; +} + +.icofont-keyboard-alt:before +{ + content: "\ea3e"; +} + +.icofont-keyboard-wireless:before +{ + content: "\ea3f"; +} + +.icofont-keyboard:before +{ + content: "\ea40"; +} + +.icofont-laptop-alt:before +{ + content: "\ea41"; +} + +.icofont-laptop:before +{ + content: "\ea42"; +} + +.icofont-macbook:before +{ + content: "\ea43"; +} + +.icofont-magic-mouse:before +{ + content: "\ea44"; +} + +.icofont-micro-chip:before +{ + content: "\ea45"; +} + +.icofont-microphone-alt:before +{ + content: "\ea46"; +} + +.icofont-microphone:before +{ + content: "\ea47"; +} + +.icofont-monitor:before +{ + content: "\ea48"; +} + +.icofont-mouse:before +{ + content: "\ea49"; +} + +.icofont-mp3-player:before +{ + content: "\ea4a"; +} + +.icofont-nintendo:before +{ + content: "\ea4b"; +} + +.icofont-playstation-alt:before +{ + content: "\ea4c"; +} + +.icofont-psvita:before +{ + content: "\ea4d"; +} + +.icofont-radio-mic:before +{ + content: "\ea4e"; +} + +.icofont-radio:before +{ + content: "\ea4f"; +} + +.icofont-refrigerator:before +{ + content: "\ea50"; +} + +.icofont-samsung-galaxy:before +{ + content: "\ea51"; +} + +.icofont-surface-tablet:before +{ + content: "\ea52"; +} + +.icofont-ui-head-phone:before +{ + content: "\ea53"; +} + +.icofont-ui-keyboard:before +{ + content: "\ea54"; +} + +.icofont-washing-machine:before +{ + content: "\ea55"; +} + +.icofont-wifi-router:before +{ + content: "\ea56"; +} + +.icofont-wii-u:before +{ + content: "\ea57"; +} + +.icofont-windows-lumia:before +{ + content: "\ea58"; +} + +.icofont-wireless-mouse:before +{ + content: "\ea59"; +} + +.icofont-xbox-360:before +{ + content: "\ea5a"; +} + +.icofont-arrow-down:before +{ + content: "\ea5b"; +} + +.icofont-arrow-left:before +{ + content: "\ea5c"; +} + +.icofont-arrow-right:before +{ + content: "\ea5d"; +} + +.icofont-arrow-up:before +{ + content: "\ea5e"; +} + +.icofont-block-down:before +{ + content: "\ea5f"; +} + +.icofont-block-left:before +{ + content: "\ea60"; +} + +.icofont-block-right:before +{ + content: "\ea61"; +} + +.icofont-block-up:before +{ + content: "\ea62"; +} + +.icofont-bubble-down:before +{ + content: "\ea63"; +} + +.icofont-bubble-left:before +{ + content: "\ea64"; +} + +.icofont-bubble-right:before +{ + content: "\ea65"; +} + +.icofont-bubble-up:before +{ + content: "\ea66"; +} + +.icofont-caret-down:before +{ + content: "\ea67"; +} + +.icofont-caret-left:before +{ + content: "\ea68"; +} + +.icofont-caret-right:before +{ + content: "\ea69"; +} + +.icofont-caret-up:before +{ + content: "\ea6a"; +} + +.icofont-circled-down:before +{ + content: "\ea6b"; +} + +.icofont-circled-left:before +{ + content: "\ea6c"; +} + +.icofont-circled-right:before +{ + content: "\ea6d"; +} + +.icofont-circled-up:before +{ + content: "\ea6e"; +} + +.icofont-collapse:before +{ + content: "\ea6f"; +} + +.icofont-cursor-drag:before +{ + content: "\ea70"; +} + +.icofont-curved-double-left:before +{ + content: "\ea71"; +} + +.icofont-curved-double-right:before +{ + content: "\ea72"; +} + +.icofont-curved-down:before +{ + content: "\ea73"; +} + +.icofont-curved-left:before +{ + content: "\ea74"; +} + +.icofont-curved-right:before +{ + content: "\ea75"; +} + +.icofont-curved-up:before +{ + content: "\ea76"; +} + +.icofont-dotted-down:before +{ + content: "\ea77"; +} + +.icofont-dotted-left:before +{ + content: "\ea78"; +} + +.icofont-dotted-right:before +{ + content: "\ea79"; +} + +.icofont-dotted-up:before +{ + content: "\ea7a"; +} + +.icofont-double-left:before +{ + content: "\ea7b"; +} + +.icofont-double-right:before +{ + content: "\ea7c"; +} + +.icofont-expand-alt:before +{ + content: "\ea7d"; +} + +.icofont-hand-down:before +{ + content: "\ea7e"; +} + +.icofont-hand-drag:before +{ + content: "\ea7f"; +} + +.icofont-hand-drag1:before +{ + content: "\ea80"; +} + +.icofont-hand-drag2:before +{ + content: "\ea81"; +} + +.icofont-hand-drawn-alt-down:before +{ + content: "\ea82"; +} + +.icofont-hand-drawn-alt-left:before +{ + content: "\ea83"; +} + +.icofont-hand-drawn-alt-right:before +{ + content: "\ea84"; +} + +.icofont-hand-drawn-alt-up:before +{ + content: "\ea85"; +} + +.icofont-hand-drawn-down:before +{ + content: "\ea86"; +} + +.icofont-hand-drawn-left:before +{ + content: "\ea87"; +} + +.icofont-hand-drawn-right:before +{ + content: "\ea88"; +} + +.icofont-hand-drawn-up:before +{ + content: "\ea89"; +} + +.icofont-hand-grippers:before +{ + content: "\ea8a"; +} + +.icofont-hand-left:before +{ + content: "\ea8b"; +} + +.icofont-hand-right:before +{ + content: "\ea8c"; +} + +.icofont-hand-up:before +{ + content: "\ea8d"; +} + +.icofont-line-block-down:before +{ + content: "\ea8e"; +} + +.icofont-line-block-left:before +{ + content: "\ea8f"; +} + +.icofont-line-block-right:before +{ + content: "\ea90"; +} + +.icofont-line-block-up:before +{ + content: "\ea91"; +} + +.icofont-long-arrow-down:before +{ + content: "\ea92"; +} + +.icofont-long-arrow-left:before +{ + content: "\ea93"; +} + +.icofont-long-arrow-right:before +{ + content: "\ea94"; +} + +.icofont-long-arrow-up:before +{ + content: "\ea95"; +} + +.icofont-rounded-collapse:before +{ + content: "\ea96"; +} + +.icofont-rounded-double-left:before +{ + content: "\ea97"; +} + +.icofont-rounded-double-right:before +{ + content: "\ea98"; +} + +.icofont-rounded-down:before +{ + content: "\ea99"; +} + +.icofont-rounded-expand:before +{ + content: "\ea9a"; +} + +.icofont-rounded-left-down:before +{ + content: "\ea9b"; +} + +.icofont-rounded-left-up:before +{ + content: "\ea9c"; +} + +.icofont-rounded-left:before +{ + content: "\ea9d"; +} + +.icofont-rounded-right-down:before +{ + content: "\ea9e"; +} + +.icofont-rounded-right-up:before +{ + content: "\ea9f"; +} + +.icofont-rounded-right:before +{ + content: "\eaa0"; +} + +.icofont-rounded-up:before +{ + content: "\eaa1"; +} + +.icofont-scroll-bubble-down:before +{ + content: "\eaa2"; +} + +.icofont-scroll-bubble-left:before +{ + content: "\eaa3"; +} + +.icofont-scroll-bubble-right:before +{ + content: "\eaa4"; +} + +.icofont-scroll-bubble-up:before +{ + content: "\eaa5"; +} + +.icofont-scroll-double-down:before +{ + content: "\eaa6"; +} + +.icofont-scroll-double-left:before +{ + content: "\eaa7"; +} + +.icofont-scroll-double-right:before +{ + content: "\eaa8"; +} + +.icofont-scroll-double-up:before +{ + content: "\eaa9"; +} + +.icofont-scroll-down:before +{ + content: "\eaaa"; +} + +.icofont-scroll-left:before +{ + content: "\eaab"; +} + +.icofont-scroll-long-down:before +{ + content: "\eaac"; +} + +.icofont-scroll-long-left:before +{ + content: "\eaad"; +} + +.icofont-scroll-long-right:before +{ + content: "\eaae"; +} + +.icofont-scroll-long-up:before +{ + content: "\eaaf"; +} + +.icofont-scroll-right:before +{ + content: "\eab0"; +} + +.icofont-scroll-up:before +{ + content: "\eab1"; +} + +.icofont-simple-down:before +{ + content: "\eab2"; +} + +.icofont-simple-left-down:before +{ + content: "\eab3"; +} + +.icofont-simple-left-up:before +{ + content: "\eab4"; +} + +.icofont-simple-left:before +{ + content: "\eab5"; +} + +.icofont-simple-right-down:before +{ + content: "\eab6"; +} + +.icofont-simple-right-up:before +{ + content: "\eab7"; +} + +.icofont-simple-right:before +{ + content: "\eab8"; +} + +.icofont-simple-up:before +{ + content: "\eab9"; +} + +.icofont-square-down:before +{ + content: "\eaba"; +} + +.icofont-square-left:before +{ + content: "\eabb"; +} + +.icofont-square-right:before +{ + content: "\eabc"; +} + +.icofont-square-up:before +{ + content: "\eabd"; +} + +.icofont-stylish-down:before +{ + content: "\eabe"; +} + +.icofont-stylish-left:before +{ + content: "\eabf"; +} + +.icofont-stylish-right:before +{ + content: "\eac0"; +} + +.icofont-stylish-up:before +{ + content: "\eac1"; +} + +.icofont-swoosh-down:before +{ + content: "\eac2"; +} + +.icofont-swoosh-left:before +{ + content: "\eac3"; +} + +.icofont-swoosh-right:before +{ + content: "\eac4"; +} + +.icofont-swoosh-up:before +{ + content: "\eac5"; +} + +.icofont-thin-double-left:before +{ + content: "\eac6"; +} + +.icofont-thin-double-right:before +{ + content: "\eac7"; +} + +.icofont-thin-down:before +{ + content: "\eac8"; +} + +.icofont-thin-left:before +{ + content: "\eac9"; +} + +.icofont-thin-right:before +{ + content: "\eaca"; +} + +.icofont-thin-up:before +{ + content: "\eacb"; +} + +.icofont-abc:before +{ + content: "\eacc"; +} + +.icofont-atom:before +{ + content: "\eacd"; +} + +.icofont-award:before +{ + content: "\eace"; +} + +.icofont-bell-alt:before +{ + content: "\eacf"; +} + +.icofont-black-board:before +{ + content: "\ead0"; +} + +.icofont-book-alt:before +{ + content: "\ead1"; +} + +.icofont-book:before +{ + content: "\ead2"; +} + +.icofont-brainstorming:before +{ + content: "\ead3"; +} + +.icofont-certificate-alt-1:before +{ + content: "\ead4"; +} + +.icofont-certificate-alt-2:before +{ + content: "\ead5"; +} + +.icofont-certificate:before +{ + content: "\ead6"; +} + +.icofont-education:before +{ + content: "\ead7"; +} + +.icofont-electron:before +{ + content: "\ead8"; +} + +.icofont-fountain-pen:before +{ + content: "\ead9"; +} + +.icofont-globe-alt:before +{ + content: "\eada"; +} + +.icofont-graduate-alt:before +{ + content: "\eadb"; +} + +.icofont-graduate:before +{ + content: "\eadc"; +} + +.icofont-group-students:before +{ + content: "\eadd"; +} + +.icofont-hat-alt:before +{ + content: "\eade"; +} + +.icofont-hat:before +{ + content: "\eadf"; +} + +.icofont-instrument:before +{ + content: "\eae0"; +} + +.icofont-lamp-light:before +{ + content: "\eae1"; +} + +.icofont-medal:before +{ + content: "\eae2"; +} + +.icofont-microscope-alt:before +{ + content: "\eae3"; +} + +.icofont-microscope:before +{ + content: "\eae4"; +} + +.icofont-paper:before +{ + content: "\eae5"; +} + +.icofont-pen-alt-4:before +{ + content: "\eae6"; +} + +.icofont-pen-nib:before +{ + content: "\eae7"; +} + +.icofont-pencil-alt-5:before +{ + content: "\eae8"; +} + +.icofont-quill-pen:before +{ + content: "\eae9"; +} + +.icofont-read-book-alt:before +{ + content: "\eaea"; +} + +.icofont-read-book:before +{ + content: "\eaeb"; +} + +.icofont-school-bag:before +{ + content: "\eaec"; +} + +.icofont-school-bus:before +{ + content: "\eaed"; +} + +.icofont-student-alt:before +{ + content: "\eaee"; +} + +.icofont-student:before +{ + content: "\eaef"; +} + +.icofont-teacher:before +{ + content: "\eaf0"; +} + +.icofont-test-bulb:before +{ + content: "\eaf1"; +} + +.icofont-test-tube-alt:before +{ + content: "\eaf2"; +} + +.icofont-university:before +{ + content: "\eaf3"; +} + +.icofont-angry:before +{ + content: "\eaf4"; +} + +.icofont-astonished:before +{ + content: "\eaf5"; +} + +.icofont-confounded:before +{ + content: "\eaf6"; +} + +.icofont-confused:before +{ + content: "\eaf7"; +} + +.icofont-crying:before +{ + content: "\eaf8"; +} + +.icofont-dizzy:before +{ + content: "\eaf9"; +} + +.icofont-expressionless:before +{ + content: "\eafa"; +} + +.icofont-heart-eyes:before +{ + content: "\eafb"; +} + +.icofont-laughing:before +{ + content: "\eafc"; +} + +.icofont-nerd-smile:before +{ + content: "\eafd"; +} + +.icofont-open-mouth:before +{ + content: "\eafe"; +} + +.icofont-rage:before +{ + content: "\eaff"; +} + +.icofont-rolling-eyes:before +{ + content: "\eb00"; +} + +.icofont-sad:before +{ + content: "\eb01"; +} + +.icofont-simple-smile:before +{ + content: "\eb02"; +} + +.icofont-slightly-smile:before +{ + content: "\eb03"; +} + +.icofont-smirk:before +{ + content: "\eb04"; +} + +.icofont-stuck-out-tongue:before +{ + content: "\eb05"; +} + +.icofont-wink-smile:before +{ + content: "\eb06"; +} + +.icofont-worried:before +{ + content: "\eb07"; +} + +.icofont-file-alt:before +{ + content: "\eb08"; +} + +.icofont-file-audio:before +{ + content: "\eb09"; +} + +.icofont-file-avi-mp4:before +{ + content: "\eb0a"; +} + +.icofont-file-bmp:before +{ + content: "\eb0b"; +} + +.icofont-file-code:before +{ + content: "\eb0c"; +} + +.icofont-file-css:before +{ + content: "\eb0d"; +} + +.icofont-file-document:before +{ + content: "\eb0e"; +} + +.icofont-file-eps:before +{ + content: "\eb0f"; +} + +.icofont-file-excel:before +{ + content: "\eb10"; +} + +.icofont-file-exe:before +{ + content: "\eb11"; +} + +.icofont-file-file:before +{ + content: "\eb12"; +} + +.icofont-file-flv:before +{ + content: "\eb13"; +} + +.icofont-file-gif:before +{ + content: "\eb14"; +} + +.icofont-file-html5:before +{ + content: "\eb15"; +} + +.icofont-file-image:before +{ + content: "\eb16"; +} + +.icofont-file-iso:before +{ + content: "\eb17"; +} + +.icofont-file-java:before +{ + content: "\eb18"; +} + +.icofont-file-javascript:before +{ + content: "\eb19"; +} + +.icofont-file-jpg:before +{ + content: "\eb1a"; +} + +.icofont-file-midi:before +{ + content: "\eb1b"; +} + +.icofont-file-mov:before +{ + content: "\eb1c"; +} + +.icofont-file-mp3:before +{ + content: "\eb1d"; +} + +.icofont-file-pdf:before +{ + content: "\eb1e"; +} + +.icofont-file-php:before +{ + content: "\eb1f"; +} + +.icofont-file-png:before +{ + content: "\eb20"; +} + +.icofont-file-powerpoint:before +{ + content: "\eb21"; +} + +.icofont-file-presentation:before +{ + content: "\eb22"; +} + +.icofont-file-psb:before +{ + content: "\eb23"; +} + +.icofont-file-psd:before +{ + content: "\eb24"; +} + +.icofont-file-python:before +{ + content: "\eb25"; +} + +.icofont-file-ruby:before +{ + content: "\eb26"; +} + +.icofont-file-spreadsheet:before +{ + content: "\eb27"; +} + +.icofont-file-sql:before +{ + content: "\eb28"; +} + +.icofont-file-svg:before +{ + content: "\eb29"; +} + +.icofont-file-text:before +{ + content: "\eb2a"; +} + +.icofont-file-tiff:before +{ + content: "\eb2b"; +} + +.icofont-file-video:before +{ + content: "\eb2c"; +} + +.icofont-file-wave:before +{ + content: "\eb2d"; +} + +.icofont-file-wmv:before +{ + content: "\eb2e"; +} + +.icofont-file-word:before +{ + content: "\eb2f"; +} + +.icofont-file-zip:before +{ + content: "\eb30"; +} + +.icofont-cycling-alt:before +{ + content: "\eb31"; +} + +.icofont-cycling:before +{ + content: "\eb32"; +} + +.icofont-dumbbell:before +{ + content: "\eb33"; +} + +.icofont-dumbbells:before +{ + content: "\eb34"; +} + +.icofont-gym-alt-1:before +{ + content: "\eb35"; +} + +.icofont-gym-alt-2:before +{ + content: "\eb36"; +} + +.icofont-gym-alt-3:before +{ + content: "\eb37"; +} + +.icofont-gym:before +{ + content: "\eb38"; +} + +.icofont-muscle-weight:before +{ + content: "\eb39"; +} + +.icofont-muscle:before +{ + content: "\eb3a"; +} + +.icofont-apple:before +{ + content: "\eb3b"; +} + +.icofont-arabian-coffee:before +{ + content: "\eb3c"; +} + +.icofont-artichoke:before +{ + content: "\eb3d"; +} + +.icofont-asparagus:before +{ + content: "\eb3e"; +} + +.icofont-avocado:before +{ + content: "\eb3f"; +} + +.icofont-baby-food:before +{ + content: "\eb40"; +} + +.icofont-banana:before +{ + content: "\eb41"; +} + +.icofont-bbq:before +{ + content: "\eb42"; +} + +.icofont-beans:before +{ + content: "\eb43"; +} + +.icofont-beer:before +{ + content: "\eb44"; +} + +.icofont-bell-pepper-capsicum:before +{ + content: "\eb45"; +} + +.icofont-birthday-cake:before +{ + content: "\eb46"; +} + +.icofont-bread:before +{ + content: "\eb47"; +} + +.icofont-broccoli:before +{ + content: "\eb48"; +} + +.icofont-burger:before +{ + content: "\eb49"; +} + +.icofont-cabbage:before +{ + content: "\eb4a"; +} + +.icofont-carrot:before +{ + content: "\eb4b"; +} + +.icofont-cauli-flower:before +{ + content: "\eb4c"; +} + +.icofont-cheese:before +{ + content: "\eb4d"; +} + +.icofont-chef:before +{ + content: "\eb4e"; +} + +.icofont-cherry:before +{ + content: "\eb4f"; +} + +.icofont-chicken-fry:before +{ + content: "\eb50"; +} + +.icofont-chicken:before +{ + content: "\eb51"; +} + +.icofont-cocktail:before +{ + content: "\eb52"; +} + +.icofont-coconut-water:before +{ + content: "\eb53"; +} + +.icofont-coconut:before +{ + content: "\eb54"; +} + +.icofont-coffee-alt:before +{ + content: "\eb55"; +} + +.icofont-coffee-cup:before +{ + content: "\eb56"; +} + +.icofont-coffee-mug:before +{ + content: "\eb57"; +} + +.icofont-coffee-pot:before +{ + content: "\eb58"; +} + +.icofont-cola:before +{ + content: "\eb59"; +} + +.icofont-corn:before +{ + content: "\eb5a"; +} + +.icofont-croissant:before +{ + content: "\eb5b"; +} + +.icofont-crop-plant:before +{ + content: "\eb5c"; +} + +.icofont-cucumber:before +{ + content: "\eb5d"; +} + +.icofont-culinary:before +{ + content: "\eb5e"; +} + +.icofont-cup-cake:before +{ + content: "\eb5f"; +} + +.icofont-dining-table:before +{ + content: "\eb60"; +} + +.icofont-donut:before +{ + content: "\eb61"; +} + +.icofont-egg-plant:before +{ + content: "\eb62"; +} + +.icofont-egg-poached:before +{ + content: "\eb63"; +} + +.icofont-farmer-alt:before +{ + content: "\eb64"; +} + +.icofont-farmer:before +{ + content: "\eb65"; +} + +.icofont-fast-food:before +{ + content: "\eb66"; +} + +.icofont-food-basket:before +{ + content: "\eb67"; +} + +.icofont-food-cart:before +{ + content: "\eb68"; +} + +.icofont-fork-and-knife:before +{ + content: "\eb69"; +} + +.icofont-french-fries:before +{ + content: "\eb6a"; +} + +.icofont-fruits:before +{ + content: "\eb6b"; +} + +.icofont-grapes:before +{ + content: "\eb6c"; +} + +.icofont-honey:before +{ + content: "\eb6d"; +} + +.icofont-hot-dog:before +{ + content: "\eb6e"; +} + +.icofont-ice-cream-alt:before +{ + content: "\eb6f"; +} + +.icofont-ice-cream:before +{ + content: "\eb70"; +} + +.icofont-juice:before +{ + content: "\eb71"; +} + +.icofont-ketchup:before +{ + content: "\eb72"; +} + +.icofont-kiwi:before +{ + content: "\eb73"; +} + +.icofont-layered-cake:before +{ + content: "\eb74"; +} + +.icofont-lemon-alt:before +{ + content: "\eb75"; +} + +.icofont-lemon:before +{ + content: "\eb76"; +} + +.icofont-lobster:before +{ + content: "\eb77"; +} + +.icofont-mango:before +{ + content: "\eb78"; +} + +.icofont-milk:before +{ + content: "\eb79"; +} + +.icofont-mushroom:before +{ + content: "\eb7a"; +} + +.icofont-noodles:before +{ + content: "\eb7b"; +} + +.icofont-onion:before +{ + content: "\eb7c"; +} + +.icofont-orange:before +{ + content: "\eb7d"; +} + +.icofont-pear:before +{ + content: "\eb7e"; +} + +.icofont-peas:before +{ + content: "\eb7f"; +} + +.icofont-pepper:before +{ + content: "\eb80"; +} + +.icofont-pie-alt:before +{ + content: "\eb81"; +} + +.icofont-pie:before +{ + content: "\eb82"; +} + +.icofont-pineapple:before +{ + content: "\eb83"; +} + +.icofont-pizza-slice:before +{ + content: "\eb84"; +} + +.icofont-pizza:before +{ + content: "\eb85"; +} + +.icofont-plant:before +{ + content: "\eb86"; +} + +.icofont-popcorn:before +{ + content: "\eb87"; +} + +.icofont-potato:before +{ + content: "\eb88"; +} + +.icofont-pumpkin:before +{ + content: "\eb89"; +} + +.icofont-raddish:before +{ + content: "\eb8a"; +} + +.icofont-restaurant-menu:before +{ + content: "\eb8b"; +} + +.icofont-restaurant:before +{ + content: "\eb8c"; +} + +.icofont-salt-and-pepper:before +{ + content: "\eb8d"; +} + +.icofont-sandwich:before +{ + content: "\eb8e"; +} + +.icofont-sausage:before +{ + content: "\eb8f"; +} + +.icofont-soft-drinks:before +{ + content: "\eb90"; +} + +.icofont-soup-bowl:before +{ + content: "\eb91"; +} + +.icofont-spoon-and-fork:before +{ + content: "\eb92"; +} + +.icofont-steak:before +{ + content: "\eb93"; +} + +.icofont-strawberry:before +{ + content: "\eb94"; +} + +.icofont-sub-sandwich:before +{ + content: "\eb95"; +} + +.icofont-sushi:before +{ + content: "\eb96"; +} + +.icofont-taco:before +{ + content: "\eb97"; +} + +.icofont-tea-pot:before +{ + content: "\eb98"; +} + +.icofont-tea:before +{ + content: "\eb99"; +} + +.icofont-tomato:before +{ + content: "\eb9a"; +} + +.icofont-watermelon:before +{ + content: "\eb9b"; +} + +.icofont-wheat:before +{ + content: "\eb9c"; +} + +.icofont-baby-backpack:before +{ + content: "\eb9d"; +} + +.icofont-baby-cloth:before +{ + content: "\eb9e"; +} + +.icofont-baby-milk-bottle:before +{ + content: "\eb9f"; +} + +.icofont-baby-trolley:before +{ + content: "\eba0"; +} + +.icofont-baby:before +{ + content: "\eba1"; +} + +.icofont-candy:before +{ + content: "\eba2"; +} + +.icofont-holding-hands:before +{ + content: "\eba3"; +} + +.icofont-infant-nipple:before +{ + content: "\eba4"; +} + +.icofont-kids-scooter:before +{ + content: "\eba5"; +} + +.icofont-safety-pin:before +{ + content: "\eba6"; +} + +.icofont-teddy-bear:before +{ + content: "\eba7"; +} + +.icofont-toy-ball:before +{ + content: "\eba8"; +} + +.icofont-toy-cat:before +{ + content: "\eba9"; +} + +.icofont-toy-duck:before +{ + content: "\ebaa"; +} + +.icofont-toy-elephant:before +{ + content: "\ebab"; +} + +.icofont-toy-hand:before +{ + content: "\ebac"; +} + +.icofont-toy-horse:before +{ + content: "\ebad"; +} + +.icofont-toy-lattu:before +{ + content: "\ebae"; +} + +.icofont-toy-train:before +{ + content: "\ebaf"; +} + +.icofont-burglar:before +{ + content: "\ebb0"; +} + +.icofont-cannon-firing:before +{ + content: "\ebb1"; +} + +.icofont-cc-camera:before +{ + content: "\ebb2"; +} + +.icofont-cop-badge:before +{ + content: "\ebb3"; +} + +.icofont-cop:before +{ + content: "\ebb4"; +} + +.icofont-court-hammer:before +{ + content: "\ebb5"; +} + +.icofont-court:before +{ + content: "\ebb6"; +} + +.icofont-finger-print:before +{ + content: "\ebb7"; +} + +.icofont-gavel:before +{ + content: "\ebb8"; +} + +.icofont-handcuff-alt:before +{ + content: "\ebb9"; +} + +.icofont-handcuff:before +{ + content: "\ebba"; +} + +.icofont-investigation:before +{ + content: "\ebbb"; +} + +.icofont-investigator:before +{ + content: "\ebbc"; +} + +.icofont-jail:before +{ + content: "\ebbd"; +} + +.icofont-judge:before +{ + content: "\ebbe"; +} + +.icofont-law-alt-1:before +{ + content: "\ebbf"; +} + +.icofont-law-alt-2:before +{ + content: "\ebc0"; +} + +.icofont-law-alt-3:before +{ + content: "\ebc1"; +} + +.icofont-law-book:before +{ + content: "\ebc2"; +} + +.icofont-law-document:before +{ + content: "\ebc3"; +} + +.icofont-law-order:before +{ + content: "\ebc4"; +} + +.icofont-law-protect:before +{ + content: "\ebc5"; +} + +.icofont-law-scales:before +{ + content: "\ebc6"; +} + +.icofont-law:before +{ + content: "\ebc7"; +} + +.icofont-lawyer-alt-1:before +{ + content: "\ebc8"; +} + +.icofont-lawyer-alt-2:before +{ + content: "\ebc9"; +} + +.icofont-lawyer:before +{ + content: "\ebca"; +} + +.icofont-legal:before +{ + content: "\ebcb"; +} + +.icofont-pistol:before +{ + content: "\ebcc"; +} + +.icofont-police-badge:before +{ + content: "\ebcd"; +} + +.icofont-police-cap:before +{ + content: "\ebce"; +} + +.icofont-police-car-alt-1:before +{ + content: "\ebcf"; +} + +.icofont-police-car-alt-2:before +{ + content: "\ebd0"; +} + +.icofont-police-car:before +{ + content: "\ebd1"; +} + +.icofont-police-hat:before +{ + content: "\ebd2"; +} + +.icofont-police-van:before +{ + content: "\ebd3"; +} + +.icofont-police:before +{ + content: "\ebd4"; +} + +.icofont-thief-alt:before +{ + content: "\ebd5"; +} + +.icofont-thief:before +{ + content: "\ebd6"; +} + +.icofont-abacus-alt:before +{ + content: "\ebd7"; +} + +.icofont-abacus:before +{ + content: "\ebd8"; +} + +.icofont-angle-180:before +{ + content: "\ebd9"; +} + +.icofont-angle-45:before +{ + content: "\ebda"; +} + +.icofont-angle-90:before +{ + content: "\ebdb"; +} + +.icofont-angle:before +{ + content: "\ebdc"; +} + +.icofont-calculator-alt-1:before +{ + content: "\ebdd"; +} + +.icofont-calculator-alt-2:before +{ + content: "\ebde"; +} + +.icofont-calculator:before +{ + content: "\ebdf"; +} + +.icofont-circle-ruler-alt:before +{ + content: "\ebe0"; +} + +.icofont-circle-ruler:before +{ + content: "\ebe1"; +} + +.icofont-compass-alt-1:before +{ + content: "\ebe2"; +} + +.icofont-compass-alt-2:before +{ + content: "\ebe3"; +} + +.icofont-compass-alt-3:before +{ + content: "\ebe4"; +} + +.icofont-compass-alt-4:before +{ + content: "\ebe5"; +} + +.icofont-golden-ratio:before +{ + content: "\ebe6"; +} + +.icofont-marker-alt-1:before +{ + content: "\ebe7"; +} + +.icofont-marker-alt-2:before +{ + content: "\ebe8"; +} + +.icofont-marker-alt-3:before +{ + content: "\ebe9"; +} + +.icofont-marker:before +{ + content: "\ebea"; +} + +.icofont-math:before +{ + content: "\ebeb"; +} + +.icofont-mathematical-alt-1:before +{ + content: "\ebec"; +} + +.icofont-mathematical-alt-2:before +{ + content: "\ebed"; +} + +.icofont-mathematical:before +{ + content: "\ebee"; +} + +.icofont-pen-alt-1:before +{ + content: "\ebef"; +} + +.icofont-pen-alt-2:before +{ + content: "\ebf0"; +} + +.icofont-pen-alt-3:before +{ + content: "\ebf1"; +} + +.icofont-pen-holder-alt-1:before +{ + content: "\ebf2"; +} + +.icofont-pen-holder:before +{ + content: "\ebf3"; +} + +.icofont-pen:before +{ + content: "\ebf4"; +} + +.icofont-pencil-alt-1:before +{ + content: "\ebf5"; +} + +.icofont-pencil-alt-2:before +{ + content: "\ebf6"; +} + +.icofont-pencil-alt-3:before +{ + content: "\ebf7"; +} + +.icofont-pencil-alt-4:before +{ + content: "\ebf8"; +} + +.icofont-pencil:before +{ + content: "\ebf9"; +} + +.icofont-ruler-alt-1:before +{ + content: "\ebfa"; +} + +.icofont-ruler-alt-2:before +{ + content: "\ebfb"; +} + +.icofont-ruler-compass-alt:before +{ + content: "\ebfc"; +} + +.icofont-ruler-compass:before +{ + content: "\ebfd"; +} + +.icofont-ruler-pencil-alt-1:before +{ + content: "\ebfe"; +} + +.icofont-ruler-pencil-alt-2:before +{ + content: "\ebff"; +} + +.icofont-ruler-pencil:before +{ + content: "\ec00"; +} + +.icofont-ruler:before +{ + content: "\ec01"; +} + +.icofont-rulers-alt:before +{ + content: "\ec02"; +} + +.icofont-rulers:before +{ + content: "\ec03"; +} + +.icofont-square-root:before +{ + content: "\ec04"; +} + +.icofont-ui-calculator:before +{ + content: "\ec05"; +} + +.icofont-aids:before +{ + content: "\ec06"; +} + +.icofont-ambulance-crescent:before +{ + content: "\ec07"; +} + +.icofont-ambulance-cross:before +{ + content: "\ec08"; +} + +.icofont-ambulance:before +{ + content: "\ec09"; +} + +.icofont-autism:before +{ + content: "\ec0a"; +} + +.icofont-bandage:before +{ + content: "\ec0b"; +} + +.icofont-blind:before +{ + content: "\ec0c"; +} + +.icofont-blood-drop:before +{ + content: "\ec0d"; +} + +.icofont-blood-test:before +{ + content: "\ec0e"; +} + +.icofont-blood:before +{ + content: "\ec0f"; +} + +.icofont-brain-alt:before +{ + content: "\ec10"; +} + +.icofont-brain:before +{ + content: "\ec11"; +} + +.icofont-capsule:before +{ + content: "\ec12"; +} + +.icofont-crutch:before +{ + content: "\ec13"; +} + +.icofont-disabled:before +{ + content: "\ec14"; +} + +.icofont-dna-alt-1:before +{ + content: "\ec15"; +} + +.icofont-dna-alt-2:before +{ + content: "\ec16"; +} + +.icofont-dna:before +{ + content: "\ec17"; +} + +.icofont-doctor-alt:before +{ + content: "\ec18"; +} + +.icofont-doctor:before +{ + content: "\ec19"; +} + +.icofont-drug-pack:before +{ + content: "\ec1a"; +} + +.icofont-drug:before +{ + content: "\ec1b"; +} + +.icofont-first-aid-alt:before +{ + content: "\ec1c"; +} + +.icofont-first-aid:before +{ + content: "\ec1d"; +} + +.icofont-heart-beat-alt:before +{ + content: "\ec1e"; +} + +.icofont-heart-beat:before +{ + content: "\ec1f"; +} + +.icofont-heartbeat:before +{ + content: "\ec20"; +} + +.icofont-herbal:before +{ + content: "\ec21"; +} + +.icofont-hospital:before +{ + content: "\ec22"; +} + +.icofont-icu:before +{ + content: "\ec23"; +} + +.icofont-injection-syringe:before +{ + content: "\ec24"; +} + +.icofont-laboratory:before +{ + content: "\ec25"; +} + +.icofont-medical-sign-alt:before +{ + content: "\ec26"; +} + +.icofont-medical-sign:before +{ + content: "\ec27"; +} + +.icofont-nurse-alt:before +{ + content: "\ec28"; +} + +.icofont-nurse:before +{ + content: "\ec29"; +} + +.icofont-nursing-home:before +{ + content: "\ec2a"; +} + +.icofont-operation-theater:before +{ + content: "\ec2b"; +} + +.icofont-paralysis-disability:before +{ + content: "\ec2c"; +} + +.icofont-patient-bed:before +{ + content: "\ec2d"; +} + +.icofont-patient-file:before +{ + content: "\ec2e"; +} + +.icofont-pills:before +{ + content: "\ec2f"; +} + +.icofont-prescription:before +{ + content: "\ec30"; +} + +.icofont-pulse:before +{ + content: "\ec31"; +} + +.icofont-stethoscope-alt:before +{ + content: "\ec32"; +} + +.icofont-stethoscope:before +{ + content: "\ec33"; +} + +.icofont-stretcher:before +{ + content: "\ec34"; +} + +.icofont-surgeon-alt:before +{ + content: "\ec35"; +} + +.icofont-surgeon:before +{ + content: "\ec36"; +} + +.icofont-tablets:before +{ + content: "\ec37"; +} + +.icofont-test-bottle:before +{ + content: "\ec38"; +} + +.icofont-test-tube:before +{ + content: "\ec39"; +} + +.icofont-thermometer-alt:before +{ + content: "\ec3a"; +} + +.icofont-thermometer:before +{ + content: "\ec3b"; +} + +.icofont-tooth:before +{ + content: "\ec3c"; +} + +.icofont-xray:before +{ + content: "\ec3d"; +} + +.icofont-ui-add:before +{ + content: "\ec3e"; +} + +.icofont-ui-alarm:before +{ + content: "\ec3f"; +} + +.icofont-ui-battery:before +{ + content: "\ec40"; +} + +.icofont-ui-block:before +{ + content: "\ec41"; +} + +.icofont-ui-bluetooth:before +{ + content: "\ec42"; +} + +.icofont-ui-brightness:before +{ + content: "\ec43"; +} + +.icofont-ui-browser:before +{ + content: "\ec44"; +} + +.icofont-ui-calendar:before +{ + content: "\ec45"; +} + +.icofont-ui-call:before +{ + content: "\ec46"; +} + +.icofont-ui-camera:before +{ + content: "\ec47"; +} + +.icofont-ui-cart:before +{ + content: "\ec48"; +} + +.icofont-ui-cell-phone:before +{ + content: "\ec49"; +} + +.icofont-ui-chat:before +{ + content: "\ec4a"; +} + +.icofont-ui-check:before +{ + content: "\ec4b"; +} + +.icofont-ui-clip-board:before +{ + content: "\ec4c"; +} + +.icofont-ui-clip:before +{ + content: "\ec4d"; +} + +.icofont-ui-clock:before +{ + content: "\ec4e"; +} + +.icofont-ui-close:before +{ + content: "\ec4f"; +} + +.icofont-ui-contact-list:before +{ + content: "\ec50"; +} + +.icofont-ui-copy:before +{ + content: "\ec51"; +} + +.icofont-ui-cut:before +{ + content: "\ec52"; +} + +.icofont-ui-delete:before +{ + content: "\ec53"; +} + +.icofont-ui-dial-phone:before +{ + content: "\ec54"; +} + +.icofont-ui-edit:before +{ + content: "\ec55"; +} + +.icofont-ui-email:before +{ + content: "\ec56"; +} + +.icofont-ui-file:before +{ + content: "\ec57"; +} + +.icofont-ui-fire-wall:before +{ + content: "\ec58"; +} + +.icofont-ui-flash-light:before +{ + content: "\ec59"; +} + +.icofont-ui-flight:before +{ + content: "\ec5a"; +} + +.icofont-ui-folder:before +{ + content: "\ec5b"; +} + +.icofont-ui-game:before +{ + content: "\ec5c"; +} + +.icofont-ui-handicapped:before +{ + content: "\ec5d"; +} + +.icofont-ui-home:before +{ + content: "\ec5e"; +} + +.icofont-ui-image:before +{ + content: "\ec5f"; +} + +.icofont-ui-laoding:before +{ + content: "\ec60"; +} + +.icofont-ui-lock:before +{ + content: "\ec61"; +} + +.icofont-ui-love-add:before +{ + content: "\ec62"; +} + +.icofont-ui-love-broken:before +{ + content: "\ec63"; +} + +.icofont-ui-love-remove:before +{ + content: "\ec64"; +} + +.icofont-ui-love:before +{ + content: "\ec65"; +} + +.icofont-ui-map:before +{ + content: "\ec66"; +} + +.icofont-ui-message:before +{ + content: "\ec67"; +} + +.icofont-ui-messaging:before +{ + content: "\ec68"; +} + +.icofont-ui-movie:before +{ + content: "\ec69"; +} + +.icofont-ui-music-player:before +{ + content: "\ec6a"; +} + +.icofont-ui-music:before +{ + content: "\ec6b"; +} + +.icofont-ui-mute:before +{ + content: "\ec6c"; +} + +.icofont-ui-network:before +{ + content: "\ec6d"; +} + +.icofont-ui-next:before +{ + content: "\ec6e"; +} + +.icofont-ui-note:before +{ + content: "\ec6f"; +} + +.icofont-ui-office:before +{ + content: "\ec70"; +} + +.icofont-ui-password:before +{ + content: "\ec71"; +} + +.icofont-ui-pause:before +{ + content: "\ec72"; +} + +.icofont-ui-play-stop:before +{ + content: "\ec73"; +} + +.icofont-ui-play:before +{ + content: "\ec74"; +} + +.icofont-ui-pointer:before +{ + content: "\ec75"; +} + +.icofont-ui-power:before +{ + content: "\ec76"; +} + +.icofont-ui-press:before +{ + content: "\ec77"; +} + +.icofont-ui-previous:before +{ + content: "\ec78"; +} + +.icofont-ui-rate-add:before +{ + content: "\ec79"; +} + +.icofont-ui-rate-blank:before +{ + content: "\ec7a"; +} + +.icofont-ui-rate-remove:before +{ + content: "\ec7b"; +} + +.icofont-ui-rating:before +{ + content: "\ec7c"; +} + +.icofont-ui-record:before +{ + content: "\ec7d"; +} + +.icofont-ui-remove:before +{ + content: "\ec7e"; +} + +.icofont-ui-reply:before +{ + content: "\ec7f"; +} + +.icofont-ui-rotation:before +{ + content: "\ec80"; +} + +.icofont-ui-rss:before +{ + content: "\ec81"; +} + +.icofont-ui-search:before +{ + content: "\ec82"; +} + +.icofont-ui-settings:before +{ + content: "\ec83"; +} + +.icofont-ui-social-link:before +{ + content: "\ec84"; +} + +.icofont-ui-tag:before +{ + content: "\ec85"; +} + +.icofont-ui-text-chat:before +{ + content: "\ec86"; +} + +.icofont-ui-text-loading:before +{ + content: "\ec87"; +} + +.icofont-ui-theme:before +{ + content: "\ec88"; +} + +.icofont-ui-timer:before +{ + content: "\ec89"; +} + +.icofont-ui-touch-phone:before +{ + content: "\ec8a"; +} + +.icofont-ui-travel:before +{ + content: "\ec8b"; +} + +.icofont-ui-unlock:before +{ + content: "\ec8c"; +} + +.icofont-ui-user-group:before +{ + content: "\ec8d"; +} + +.icofont-ui-user:before +{ + content: "\ec8e"; +} + +.icofont-ui-v-card:before +{ + content: "\ec8f"; +} + +.icofont-ui-video-chat:before +{ + content: "\ec90"; +} + +.icofont-ui-video-message:before +{ + content: "\ec91"; +} + +.icofont-ui-video-play:before +{ + content: "\ec92"; +} + +.icofont-ui-video:before +{ + content: "\ec93"; +} + +.icofont-ui-volume:before +{ + content: "\ec94"; +} + +.icofont-ui-weather:before +{ + content: "\ec95"; +} + +.icofont-ui-wifi:before +{ + content: "\ec96"; +} + +.icofont-ui-zoom-in:before +{ + content: "\ec97"; +} + +.icofont-ui-zoom-out:before +{ + content: "\ec98"; +} + +.icofont-cassette-player:before +{ + content: "\ec99"; +} + +.icofont-cassette:before +{ + content: "\ec9a"; +} + +.icofont-forward:before +{ + content: "\ec9b"; +} + +.icofont-guiter:before +{ + content: "\ec9c"; +} + +.icofont-movie:before +{ + content: "\ec9d"; +} + +.icofont-multimedia:before +{ + content: "\ec9e"; +} + +.icofont-music-alt:before +{ + content: "\ec9f"; +} + +.icofont-music-disk:before +{ + content: "\eca0"; +} + +.icofont-music-note:before +{ + content: "\eca1"; +} + +.icofont-music-notes:before +{ + content: "\eca2"; +} + +.icofont-music:before +{ + content: "\eca3"; +} + +.icofont-mute-volume:before +{ + content: "\eca4"; +} + +.icofont-pause:before +{ + content: "\eca5"; +} + +.icofont-play-alt-1:before +{ + content: "\eca6"; +} + +.icofont-play-alt-2:before +{ + content: "\eca7"; +} + +.icofont-play-alt-3:before +{ + content: "\eca8"; +} + +.icofont-play-pause:before +{ + content: "\eca9"; +} + +.icofont-play:before +{ + content: "\ecaa"; +} + +.icofont-record:before +{ + content: "\ecab"; +} + +.icofont-retro-music-disk:before +{ + content: "\ecac"; +} + +.icofont-rewind:before +{ + content: "\ecad"; +} + +.icofont-song-notes:before +{ + content: "\ecae"; +} + +.icofont-sound-wave-alt:before +{ + content: "\ecaf"; +} + +.icofont-sound-wave:before +{ + content: "\ecb0"; +} + +.icofont-stop:before +{ + content: "\ecb1"; +} + +.icofont-video-alt:before +{ + content: "\ecb2"; +} + +.icofont-video-cam:before +{ + content: "\ecb3"; +} + +.icofont-video-clapper:before +{ + content: "\ecb4"; +} + +.icofont-video:before +{ + content: "\ecb5"; +} + +.icofont-volume-bar:before +{ + content: "\ecb6"; +} + +.icofont-volume-down:before +{ + content: "\ecb7"; +} + +.icofont-volume-mute:before +{ + content: "\ecb8"; +} + +.icofont-volume-off:before +{ + content: "\ecb9"; +} + +.icofont-volume-up:before +{ + content: "\ecba"; +} + +.icofont-youtube-play:before +{ + content: "\ecbb"; +} + +.icofont-2checkout-alt:before +{ + content: "\ecbc"; +} + +.icofont-2checkout:before +{ + content: "\ecbd"; +} + +.icofont-amazon-alt:before +{ + content: "\ecbe"; +} + +.icofont-amazon:before +{ + content: "\ecbf"; +} + +.icofont-american-express-alt:before +{ + content: "\ecc0"; +} + +.icofont-american-express:before +{ + content: "\ecc1"; +} + +.icofont-apple-pay-alt:before +{ + content: "\ecc2"; +} + +.icofont-apple-pay:before +{ + content: "\ecc3"; +} + +.icofont-bank-transfer-alt:before +{ + content: "\ecc4"; +} + +.icofont-bank-transfer:before +{ + content: "\ecc5"; +} + +.icofont-braintree-alt:before +{ + content: "\ecc6"; +} + +.icofont-braintree:before +{ + content: "\ecc7"; +} + +.icofont-cash-on-delivery-alt:before +{ + content: "\ecc8"; +} + +.icofont-cash-on-delivery:before +{ + content: "\ecc9"; +} + +.icofont-diners-club-alt-1:before +{ + content: "\ecca"; +} + +.icofont-diners-club-alt-2:before +{ + content: "\eccb"; +} + +.icofont-diners-club-alt-3:before +{ + content: "\eccc"; +} + +.icofont-diners-club:before +{ + content: "\eccd"; +} + +.icofont-discover-alt:before +{ + content: "\ecce"; +} + +.icofont-discover:before +{ + content: "\eccf"; +} + +.icofont-eway-alt:before +{ + content: "\ecd0"; +} + +.icofont-eway:before +{ + content: "\ecd1"; +} + +.icofont-google-wallet-alt-1:before +{ + content: "\ecd2"; +} + +.icofont-google-wallet-alt-2:before +{ + content: "\ecd3"; +} + +.icofont-google-wallet-alt-3:before +{ + content: "\ecd4"; +} + +.icofont-google-wallet:before +{ + content: "\ecd5"; +} + +.icofont-jcb-alt:before +{ + content: "\ecd6"; +} + +.icofont-jcb:before +{ + content: "\ecd7"; +} + +.icofont-maestro-alt:before +{ + content: "\ecd8"; +} + +.icofont-maestro:before +{ + content: "\ecd9"; +} + +.icofont-mastercard-alt:before +{ + content: "\ecda"; +} + +.icofont-mastercard:before +{ + content: "\ecdb"; +} + +.icofont-payoneer-alt:before +{ + content: "\ecdc"; +} + +.icofont-payoneer:before +{ + content: "\ecdd"; +} + +.icofont-paypal-alt:before +{ + content: "\ecde"; +} + +.icofont-paypal:before +{ + content: "\ecdf"; +} + +.icofont-sage-alt:before +{ + content: "\ece0"; +} + +.icofont-sage:before +{ + content: "\ece1"; +} + +.icofont-skrill-alt:before +{ + content: "\ece2"; +} + +.icofont-skrill:before +{ + content: "\ece3"; +} + +.icofont-stripe-alt:before +{ + content: "\ece4"; +} + +.icofont-stripe:before +{ + content: "\ece5"; +} + +.icofont-visa-alt:before +{ + content: "\ece6"; +} + +.icofont-visa-electron:before +{ + content: "\ece7"; +} + +.icofont-visa:before +{ + content: "\ece8"; +} + +.icofont-western-union-alt:before +{ + content: "\ece9"; +} + +.icofont-western-union:before +{ + content: "\ecea"; +} + +.icofont-boy:before +{ + content: "\eceb"; +} + +.icofont-business-man-alt-1:before +{ + content: "\ecec"; +} + +.icofont-business-man-alt-2:before +{ + content: "\eced"; +} + +.icofont-business-man-alt-3:before +{ + content: "\ecee"; +} + +.icofont-business-man:before +{ + content: "\ecef"; +} + +.icofont-female:before +{ + content: "\ecf0"; +} + +.icofont-funky-man:before +{ + content: "\ecf1"; +} + +.icofont-girl-alt:before +{ + content: "\ecf2"; +} + +.icofont-girl:before +{ + content: "\ecf3"; +} + +.icofont-group:before +{ + content: "\ecf4"; +} + +.icofont-hotel-boy-alt:before +{ + content: "\ecf5"; +} + +.icofont-hotel-boy:before +{ + content: "\ecf6"; +} + +.icofont-kid:before +{ + content: "\ecf7"; +} + +.icofont-man-in-glasses:before +{ + content: "\ecf8"; +} + +.icofont-people:before +{ + content: "\ecf9"; +} + +.icofont-support:before +{ + content: "\ecfa"; +} + +.icofont-user-alt-1:before +{ + content: "\ecfb"; +} + +.icofont-user-alt-2:before +{ + content: "\ecfc"; +} + +.icofont-user-alt-3:before +{ + content: "\ecfd"; +} + +.icofont-user-alt-4:before +{ + content: "\ecfe"; +} + +.icofont-user-alt-5:before +{ + content: "\ecff"; +} + +.icofont-user-alt-6:before +{ + content: "\ed00"; +} + +.icofont-user-alt-7:before +{ + content: "\ed01"; +} + +.icofont-user-female:before +{ + content: "\ed02"; +} + +.icofont-user-male:before +{ + content: "\ed03"; +} + +.icofont-user-suited:before +{ + content: "\ed04"; +} + +.icofont-user:before +{ + content: "\ed05"; +} + +.icofont-users-alt-1:before +{ + content: "\ed06"; +} + +.icofont-users-alt-2:before +{ + content: "\ed07"; +} + +.icofont-users-alt-3:before +{ + content: "\ed08"; +} + +.icofont-users-alt-4:before +{ + content: "\ed09"; +} + +.icofont-users-alt-5:before +{ + content: "\ed0a"; +} + +.icofont-users-alt-6:before +{ + content: "\ed0b"; +} + +.icofont-users-social:before +{ + content: "\ed0c"; +} + +.icofont-users:before +{ + content: "\ed0d"; +} + +.icofont-waiter-alt:before +{ + content: "\ed0e"; +} + +.icofont-waiter:before +{ + content: "\ed0f"; +} + +.icofont-woman-in-glasses:before +{ + content: "\ed10"; +} + +.icofont-search-1:before +{ + content: "\ed11"; +} + +.icofont-search-2:before +{ + content: "\ed12"; +} + +.icofont-search-document:before +{ + content: "\ed13"; +} + +.icofont-search-folder:before +{ + content: "\ed14"; +} + +.icofont-search-job:before +{ + content: "\ed15"; +} + +.icofont-search-map:before +{ + content: "\ed16"; +} + +.icofont-search-property:before +{ + content: "\ed17"; +} + +.icofont-search-restaurant:before +{ + content: "\ed18"; +} + +.icofont-search-stock:before +{ + content: "\ed19"; +} + +.icofont-search-user:before +{ + content: "\ed1a"; +} + +.icofont-search:before +{ + content: "\ed1b"; +} + +.icofont-500px:before +{ + content: "\ed1c"; +} + +.icofont-aim:before +{ + content: "\ed1d"; +} + +.icofont-badoo:before +{ + content: "\ed1e"; +} + +.icofont-baidu-tieba:before +{ + content: "\ed1f"; +} + +.icofont-bbm-messenger:before +{ + content: "\ed20"; +} + +.icofont-bebo:before +{ + content: "\ed21"; +} + +.icofont-behance:before +{ + content: "\ed22"; +} + +.icofont-blogger:before +{ + content: "\ed23"; +} + +.icofont-bootstrap:before +{ + content: "\ed24"; +} + +.icofont-brightkite:before +{ + content: "\ed25"; +} + +.icofont-cloudapp:before +{ + content: "\ed26"; +} + +.icofont-concrete5:before +{ + content: "\ed27"; +} + +.icofont-delicious:before +{ + content: "\ed28"; +} + +.icofont-designbump:before +{ + content: "\ed29"; +} + +.icofont-designfloat:before +{ + content: "\ed2a"; +} + +.icofont-deviantart:before +{ + content: "\ed2b"; +} + +.icofont-digg:before +{ + content: "\ed2c"; +} + +.icofont-dotcms:before +{ + content: "\ed2d"; +} + +.icofont-dribbble:before +{ + content: "\ed2e"; +} + +.icofont-dribble:before +{ + content: "\ed2f"; +} + +.icofont-dropbox:before +{ + content: "\ed30"; +} + +.icofont-ebuddy:before +{ + content: "\ed31"; +} + +.icofont-ello:before +{ + content: "\ed32"; +} + +.icofont-ember:before +{ + content: "\ed33"; +} + +.icofont-envato:before +{ + content: "\ed34"; +} + +.icofont-evernote:before +{ + content: "\ed35"; +} + +.icofont-facebook-messenger:before +{ + content: "\ed36"; +} + +.icofont-facebook:before +{ + content: "\ed37"; +} + +.icofont-feedburner:before +{ + content: "\ed38"; +} + +.icofont-flikr:before +{ + content: "\ed39"; +} + +.icofont-folkd:before +{ + content: "\ed3a"; +} + +.icofont-foursquare:before +{ + content: "\ed3b"; +} + +.icofont-friendfeed:before +{ + content: "\ed3c"; +} + +.icofont-ghost:before +{ + content: "\ed3d"; +} + +.icofont-github:before +{ + content: "\ed3e"; +} + +.icofont-gnome:before +{ + content: "\ed3f"; +} + +.icofont-google-buzz:before +{ + content: "\ed40"; +} + +.icofont-google-hangouts:before +{ + content: "\ed41"; +} + +.icofont-google-map:before +{ + content: "\ed42"; +} + +.icofont-google-plus:before +{ + content: "\ed43"; +} + +.icofont-google-talk:before +{ + content: "\ed44"; +} + +.icofont-hype-machine:before +{ + content: "\ed45"; +} + +.icofont-instagram:before +{ + content: "\ed46"; +} + +.icofont-kakaotalk:before +{ + content: "\ed47"; +} + +.icofont-kickstarter:before +{ + content: "\ed48"; +} + +.icofont-kik:before +{ + content: "\ed49"; +} + +.icofont-kiwibox:before +{ + content: "\ed4a"; +} + +.icofont-line-messenger:before +{ + content: "\ed4b"; +} + +.icofont-line:before +{ + content: "\ed4c"; +} + +.icofont-linkedin:before +{ + content: "\ed4d"; +} + +.icofont-linux-mint:before +{ + content: "\ed4e"; +} + +.icofont-live-messenger:before +{ + content: "\ed4f"; +} + +.icofont-livejournal:before +{ + content: "\ed50"; +} + +.icofont-magento:before +{ + content: "\ed51"; +} + +.icofont-meetme:before +{ + content: "\ed52"; +} + +.icofont-meetup:before +{ + content: "\ed53"; +} + +.icofont-mixx:before +{ + content: "\ed54"; +} + +.icofont-newsvine:before +{ + content: "\ed55"; +} + +.icofont-nimbuss:before +{ + content: "\ed56"; +} + +.icofont-odnoklassniki:before +{ + content: "\ed57"; +} + +.icofont-opencart:before +{ + content: "\ed58"; +} + +.icofont-oscommerce:before +{ + content: "\ed59"; +} + +.icofont-pandora:before +{ + content: "\ed5a"; +} + +.icofont-photobucket:before +{ + content: "\ed5b"; +} + +.icofont-picasa:before +{ + content: "\ed5c"; +} + +.icofont-pinterest:before +{ + content: "\ed5d"; +} + +.icofont-prestashop:before +{ + content: "\ed5e"; +} + +.icofont-qik:before +{ + content: "\ed5f"; +} + +.icofont-qq:before +{ + content: "\ed60"; +} + +.icofont-readernaut:before +{ + content: "\ed61"; +} + +.icofont-reddit:before +{ + content: "\ed62"; +} + +.icofont-renren:before +{ + content: "\ed63"; +} + +.icofont-rss:before +{ + content: "\ed64"; +} + +.icofont-shopify:before +{ + content: "\ed65"; +} + +.icofont-silverstripe:before +{ + content: "\ed66"; +} + +.icofont-skype:before +{ + content: "\ed67"; +} + +.icofont-slack:before +{ + content: "\ed68"; +} + +.icofont-slashdot:before +{ + content: "\ed69"; +} + +.icofont-slidshare:before +{ + content: "\ed6a"; +} + +.icofont-smugmug:before +{ + content: "\ed6b"; +} + +.icofont-snapchat:before +{ + content: "\ed6c"; +} + +.icofont-soundcloud:before +{ + content: "\ed6d"; +} + +.icofont-spotify:before +{ + content: "\ed6e"; +} + +.icofont-stack-exchange:before +{ + content: "\ed6f"; +} + +.icofont-stack-overflow:before +{ + content: "\ed70"; +} + +.icofont-steam:before +{ + content: "\ed71"; +} + +.icofont-stumbleupon:before +{ + content: "\ed72"; +} + +.icofont-tagged:before +{ + content: "\ed73"; +} + +.icofont-technorati:before +{ + content: "\ed74"; +} + +.icofont-telegram:before +{ + content: "\ed75"; +} + +.icofont-tinder:before +{ + content: "\ed76"; +} + +.icofont-trello:before +{ + content: "\ed77"; +} + +.icofont-tumblr:before +{ + content: "\ed78"; +} + +.icofont-twitch:before +{ + content: "\ed79"; +} + +.icofont-twitter:before +{ + content: "\ed7a"; +} + +.icofont-typo3:before +{ + content: "\ed7b"; +} + +.icofont-ubercart:before +{ + content: "\ed7c"; +} + +.icofont-viber:before +{ + content: "\ed7d"; +} + +.icofont-viddler:before +{ + content: "\ed7e"; +} + +.icofont-vimeo:before +{ + content: "\ed7f"; +} + +.icofont-vine:before +{ + content: "\ed80"; +} + +.icofont-virb:before +{ + content: "\ed81"; +} + +.icofont-virtuemart:before +{ + content: "\ed82"; +} + +.icofont-vk:before +{ + content: "\ed83"; +} + +.icofont-wechat:before +{ + content: "\ed84"; +} + +.icofont-weibo:before +{ + content: "\ed85"; +} + +.icofont-whatsapp:before +{ + content: "\ed86"; +} + +.icofont-xing:before +{ + content: "\ed87"; +} + +.icofont-yahoo:before +{ + content: "\ed88"; +} + +.icofont-yelp:before +{ + content: "\ed89"; +} + +.icofont-youku:before +{ + content: "\ed8a"; +} + +.icofont-youtube:before +{ + content: "\ed8b"; +} + +.icofont-zencart:before +{ + content: "\ed8c"; +} + +.icofont-badminton-birdie:before +{ + content: "\ed8d"; +} + +.icofont-baseball:before +{ + content: "\ed8e"; +} + +.icofont-baseballer:before +{ + content: "\ed8f"; +} + +.icofont-basketball-hoop:before +{ + content: "\ed90"; +} + +.icofont-basketball:before +{ + content: "\ed91"; +} + +.icofont-billiard-ball:before +{ + content: "\ed92"; +} + +.icofont-boot-alt-1:before +{ + content: "\ed93"; +} + +.icofont-boot-alt-2:before +{ + content: "\ed94"; +} + +.icofont-boot:before +{ + content: "\ed95"; +} + +.icofont-bowling-alt:before +{ + content: "\ed96"; +} + +.icofont-bowling:before +{ + content: "\ed97"; +} + +.icofont-canoe:before +{ + content: "\ed98"; +} + +.icofont-cheer-leader:before +{ + content: "\ed99"; +} + +.icofont-climbing:before +{ + content: "\ed9a"; +} + +.icofont-corner:before +{ + content: "\ed9b"; +} + +.icofont-field-alt:before +{ + content: "\ed9c"; +} + +.icofont-field:before +{ + content: "\ed9d"; +} + +.icofont-football-alt:before +{ + content: "\ed9e"; +} + +.icofont-football-american:before +{ + content: "\ed9f"; +} + +.icofont-football:before +{ + content: "\eda0"; +} + +.icofont-foul:before +{ + content: "\eda1"; +} + +.icofont-goal-keeper:before +{ + content: "\eda2"; +} + +.icofont-goal:before +{ + content: "\eda3"; +} + +.icofont-golf-alt:before +{ + content: "\eda4"; +} + +.icofont-golf-bag:before +{ + content: "\eda5"; +} + +.icofont-golf-cart:before +{ + content: "\eda6"; +} + +.icofont-golf-field:before +{ + content: "\eda7"; +} + +.icofont-golf:before +{ + content: "\eda8"; +} + +.icofont-golfer:before +{ + content: "\eda9"; +} + +.icofont-helmet:before +{ + content: "\edaa"; +} + +.icofont-hockey-alt:before +{ + content: "\edab"; +} + +.icofont-hockey:before +{ + content: "\edac"; +} + +.icofont-ice-skate:before +{ + content: "\edad"; +} + +.icofont-jersey-alt:before +{ + content: "\edae"; +} + +.icofont-jersey:before +{ + content: "\edaf"; +} + +.icofont-jumping:before +{ + content: "\edb0"; +} + +.icofont-kick:before +{ + content: "\edb1"; +} + +.icofont-leg:before +{ + content: "\edb2"; +} + +.icofont-match-review:before +{ + content: "\edb3"; +} + +.icofont-medal-sport:before +{ + content: "\edb4"; +} + +.icofont-offside:before +{ + content: "\edb5"; +} + +.icofont-olympic-logo:before +{ + content: "\edb6"; +} + +.icofont-olympic:before +{ + content: "\edb7"; +} + +.icofont-padding:before +{ + content: "\edb8"; +} + +.icofont-penalty-card:before +{ + content: "\edb9"; +} + +.icofont-racer:before +{ + content: "\edba"; +} + +.icofont-racing-car:before +{ + content: "\edbb"; +} + +.icofont-racing-flag-alt:before +{ + content: "\edbc"; +} + +.icofont-racing-flag:before +{ + content: "\edbd"; +} + +.icofont-racings-wheel:before +{ + content: "\edbe"; +} + +.icofont-referee:before +{ + content: "\edbf"; +} + +.icofont-refree-jersey:before +{ + content: "\edc0"; +} + +.icofont-result-sport:before +{ + content: "\edc1"; +} + +.icofont-rugby-ball:before +{ + content: "\edc2"; +} + +.icofont-rugby-player:before +{ + content: "\edc3"; +} + +.icofont-rugby:before +{ + content: "\edc4"; +} + +.icofont-runner-alt-1:before +{ + content: "\edc5"; +} + +.icofont-runner-alt-2:before +{ + content: "\edc6"; +} + +.icofont-runner:before +{ + content: "\edc7"; +} + +.icofont-score-board:before +{ + content: "\edc8"; +} + +.icofont-skiing-man:before +{ + content: "\edc9"; +} + +.icofont-skydiving-goggles:before +{ + content: "\edca"; +} + +.icofont-snow-mobile:before +{ + content: "\edcb"; +} + +.icofont-steering:before +{ + content: "\edcc"; +} + +.icofont-stopwatch:before +{ + content: "\edcd"; +} + +.icofont-substitute:before +{ + content: "\edce"; +} + +.icofont-swimmer:before +{ + content: "\edcf"; +} + +.icofont-table-tennis:before +{ + content: "\edd0"; +} + +.icofont-team-alt:before +{ + content: "\edd1"; +} + +.icofont-team:before +{ + content: "\edd2"; +} + +.icofont-tennis-player:before +{ + content: "\edd3"; +} + +.icofont-tennis:before +{ + content: "\edd4"; +} + +.icofont-tracking:before +{ + content: "\edd5"; +} + +.icofont-trophy-alt:before +{ + content: "\edd6"; +} + +.icofont-trophy:before +{ + content: "\edd7"; +} + +.icofont-volleyball-alt:before +{ + content: "\edd8"; +} + +.icofont-volleyball-fire:before +{ + content: "\edd9"; +} + +.icofont-volleyball:before +{ + content: "\edda"; +} + +.icofont-water-bottle:before +{ + content: "\eddb"; +} + +.icofont-whistle-alt:before +{ + content: "\eddc"; +} + +.icofont-whistle:before +{ + content: "\eddd"; +} + +.icofont-win-trophy:before +{ + content: "\edde"; +} + +.icofont-align-center:before +{ + content: "\eddf"; +} + +.icofont-align-left:before +{ + content: "\ede0"; +} + +.icofont-align-right:before +{ + content: "\ede1"; +} + +.icofont-all-caps:before +{ + content: "\ede2"; +} + +.icofont-bold:before +{ + content: "\ede3"; +} + +.icofont-brush:before +{ + content: "\ede4"; +} + +.icofont-clip-board:before +{ + content: "\ede5"; +} + +.icofont-code-alt:before +{ + content: "\ede6"; +} + +.icofont-color-bucket:before +{ + content: "\ede7"; +} + +.icofont-color-picker:before +{ + content: "\ede8"; +} + +.icofont-copy-invert:before +{ + content: "\ede9"; +} + +.icofont-copy:before +{ + content: "\edea"; +} + +.icofont-cut:before +{ + content: "\edeb"; +} + +.icofont-delete-alt:before +{ + content: "\edec"; +} + +.icofont-edit-alt:before +{ + content: "\eded"; +} + +.icofont-eraser-alt:before +{ + content: "\edee"; +} + +.icofont-font:before +{ + content: "\edef"; +} + +.icofont-heading:before +{ + content: "\edf0"; +} + +.icofont-indent:before +{ + content: "\edf1"; +} + +.icofont-italic-alt:before +{ + content: "\edf2"; +} + +.icofont-italic:before +{ + content: "\edf3"; +} + +.icofont-justify-all:before +{ + content: "\edf4"; +} + +.icofont-justify-center:before +{ + content: "\edf5"; +} + +.icofont-justify-left:before +{ + content: "\edf6"; +} + +.icofont-justify-right:before +{ + content: "\edf7"; +} + +.icofont-link-broken:before +{ + content: "\edf8"; +} + +.icofont-outdent:before +{ + content: "\edf9"; +} + +.icofont-paper-clip:before +{ + content: "\edfa"; +} + +.icofont-paragraph:before +{ + content: "\edfb"; +} + +.icofont-pin:before +{ + content: "\edfc"; +} + +.icofont-printer:before +{ + content: "\edfd"; +} + +.icofont-redo:before +{ + content: "\edfe"; +} + +.icofont-rotation:before +{ + content: "\edff"; +} + +.icofont-save:before +{ + content: "\ee00"; +} + +.icofont-small-cap:before +{ + content: "\ee01"; +} + +.icofont-strike-through:before +{ + content: "\ee02"; +} + +.icofont-sub-listing:before +{ + content: "\ee03"; +} + +.icofont-subscript:before +{ + content: "\ee04"; +} + +.icofont-superscript:before +{ + content: "\ee05"; +} + +.icofont-table:before +{ + content: "\ee06"; +} + +.icofont-text-height:before +{ + content: "\ee07"; +} + +.icofont-text-width:before +{ + content: "\ee08"; +} + +.icofont-trash:before +{ + content: "\ee09"; +} + +.icofont-underline:before +{ + content: "\ee0a"; +} + +.icofont-undo:before +{ + content: "\ee0b"; +} + +.icofont-air-balloon:before +{ + content: "\ee0c"; +} + +.icofont-airplane-alt:before +{ + content: "\ee0d"; +} + +.icofont-airplane:before +{ + content: "\ee0e"; +} + +.icofont-articulated-truck:before +{ + content: "\ee0f"; +} + +.icofont-auto-mobile:before +{ + content: "\ee10"; +} + +.icofont-auto-rickshaw:before +{ + content: "\ee11"; +} + +.icofont-bicycle-alt-1:before +{ + content: "\ee12"; +} + +.icofont-bicycle-alt-2:before +{ + content: "\ee13"; +} + +.icofont-bicycle:before +{ + content: "\ee14"; +} + +.icofont-bus-alt-1:before +{ + content: "\ee15"; +} + +.icofont-bus-alt-2:before +{ + content: "\ee16"; +} + +.icofont-bus-alt-3:before +{ + content: "\ee17"; +} + +.icofont-bus:before +{ + content: "\ee18"; +} + +.icofont-cab:before +{ + content: "\ee19"; +} + +.icofont-cable-car:before +{ + content: "\ee1a"; +} + +.icofont-car-alt-1:before +{ + content: "\ee1b"; +} + +.icofont-car-alt-2:before +{ + content: "\ee1c"; +} + +.icofont-car-alt-3:before +{ + content: "\ee1d"; +} + +.icofont-car-alt-4:before +{ + content: "\ee1e"; +} + +.icofont-car:before +{ + content: "\ee1f"; +} + +.icofont-delivery-time:before +{ + content: "\ee20"; +} + +.icofont-fast-delivery:before +{ + content: "\ee21"; +} + +.icofont-fire-truck-alt:before +{ + content: "\ee22"; +} + +.icofont-fire-truck:before +{ + content: "\ee23"; +} + +.icofont-free-delivery:before +{ + content: "\ee24"; +} + +.icofont-helicopter:before +{ + content: "\ee25"; +} + +.icofont-motor-bike-alt:before +{ + content: "\ee26"; +} + +.icofont-motor-bike:before +{ + content: "\ee27"; +} + +.icofont-motor-biker:before +{ + content: "\ee28"; +} + +.icofont-oil-truck:before +{ + content: "\ee29"; +} + +.icofont-rickshaw:before +{ + content: "\ee2a"; +} + +.icofont-rocket-alt-1:before +{ + content: "\ee2b"; +} + +.icofont-rocket-alt-2:before +{ + content: "\ee2c"; +} + +.icofont-rocket:before +{ + content: "\ee2d"; +} + +.icofont-sail-boat-alt-1:before +{ + content: "\ee2e"; +} + +.icofont-sail-boat-alt-2:before +{ + content: "\ee2f"; +} + +.icofont-sail-boat:before +{ + content: "\ee30"; +} + +.icofont-scooter:before +{ + content: "\ee31"; +} + +.icofont-sea-plane:before +{ + content: "\ee32"; +} + +.icofont-ship-alt:before +{ + content: "\ee33"; +} + +.icofont-ship:before +{ + content: "\ee34"; +} + +.icofont-speed-boat:before +{ + content: "\ee35"; +} + +.icofont-taxi:before +{ + content: "\ee36"; +} + +.icofont-tractor:before +{ + content: "\ee37"; +} + +.icofont-train-line:before +{ + content: "\ee38"; +} + +.icofont-train-steam:before +{ + content: "\ee39"; +} + +.icofont-tram:before +{ + content: "\ee3a"; +} + +.icofont-truck-alt:before +{ + content: "\ee3b"; +} + +.icofont-truck-loaded:before +{ + content: "\ee3c"; +} + +.icofont-truck:before +{ + content: "\ee3d"; +} + +.icofont-van-alt:before +{ + content: "\ee3e"; +} + +.icofont-van:before +{ + content: "\ee3f"; +} + +.icofont-yacht:before +{ + content: "\ee40"; +} + +.icofont-5-star-hotel:before +{ + content: "\ee41"; +} + +.icofont-air-ticket:before +{ + content: "\ee42"; +} + +.icofont-beach-bed:before +{ + content: "\ee43"; +} + +.icofont-beach:before +{ + content: "\ee44"; +} + +.icofont-camping-vest:before +{ + content: "\ee45"; +} + +.icofont-direction-sign:before +{ + content: "\ee46"; +} + +.icofont-hill-side:before +{ + content: "\ee47"; +} + +.icofont-hill:before +{ + content: "\ee48"; +} + +.icofont-hotel:before +{ + content: "\ee49"; +} + +.icofont-island-alt:before +{ + content: "\ee4a"; +} + +.icofont-island:before +{ + content: "\ee4b"; +} + +.icofont-sandals-female:before +{ + content: "\ee4c"; +} + +.icofont-sandals-male:before +{ + content: "\ee4d"; +} + +.icofont-travelling:before +{ + content: "\ee4e"; +} + +.icofont-breakdown:before +{ + content: "\ee4f"; +} + +.icofont-celsius:before +{ + content: "\ee50"; +} + +.icofont-clouds:before +{ + content: "\ee51"; +} + +.icofont-cloudy:before +{ + content: "\ee52"; +} + +.icofont-dust:before +{ + content: "\ee53"; +} + +.icofont-eclipse:before +{ + content: "\ee54"; +} + +.icofont-fahrenheit:before +{ + content: "\ee55"; +} + +.icofont-forest-fire:before +{ + content: "\ee56"; +} + +.icofont-full-night:before +{ + content: "\ee57"; +} + +.icofont-full-sunny:before +{ + content: "\ee58"; +} + +.icofont-hail-night:before +{ + content: "\ee59"; +} + +.icofont-hail-rainy-night:before +{ + content: "\ee5a"; +} + +.icofont-hail-rainy-sunny:before +{ + content: "\ee5b"; +} + +.icofont-hail-rainy:before +{ + content: "\ee5c"; +} + +.icofont-hail-sunny:before +{ + content: "\ee5d"; +} + +.icofont-hail-thunder-night:before +{ + content: "\ee5e"; +} + +.icofont-hail-thunder-sunny:before +{ + content: "\ee5f"; +} + +.icofont-hail-thunder:before +{ + content: "\ee60"; +} + +.icofont-hail:before +{ + content: "\ee61"; +} + +.icofont-hill-night:before +{ + content: "\ee62"; +} + +.icofont-hill-sunny:before +{ + content: "\ee63"; +} + +.icofont-hurricane:before +{ + content: "\ee64"; +} + +.icofont-meteor:before +{ + content: "\ee65"; +} + +.icofont-night:before +{ + content: "\ee66"; +} + +.icofont-rainy-night:before +{ + content: "\ee67"; +} + +.icofont-rainy-sunny:before +{ + content: "\ee68"; +} + +.icofont-rainy-thunder:before +{ + content: "\ee69"; +} + +.icofont-rainy:before +{ + content: "\ee6a"; +} + +.icofont-snow-alt:before +{ + content: "\ee6b"; +} + +.icofont-snow-flake:before +{ + content: "\ee6c"; +} + +.icofont-snow-temp:before +{ + content: "\ee6d"; +} + +.icofont-snow:before +{ + content: "\ee6e"; +} + +.icofont-snowy-hail:before +{ + content: "\ee6f"; +} + +.icofont-snowy-night-hail:before +{ + content: "\ee70"; +} + +.icofont-snowy-night-rainy:before +{ + content: "\ee71"; +} + +.icofont-snowy-night:before +{ + content: "\ee72"; +} + +.icofont-snowy-rainy:before +{ + content: "\ee73"; +} + +.icofont-snowy-sunny-hail:before +{ + content: "\ee74"; +} + +.icofont-snowy-sunny-rainy:before +{ + content: "\ee75"; +} + +.icofont-snowy-sunny:before +{ + content: "\ee76"; +} + +.icofont-snowy-thunder-night:before +{ + content: "\ee77"; +} + +.icofont-snowy-thunder-sunny:before +{ + content: "\ee78"; +} + +.icofont-snowy-thunder:before +{ + content: "\ee79"; +} + +.icofont-snowy-windy-night:before +{ + content: "\ee7a"; +} + +.icofont-snowy-windy-sunny:before +{ + content: "\ee7b"; +} + +.icofont-snowy-windy:before +{ + content: "\ee7c"; +} + +.icofont-snowy:before +{ + content: "\ee7d"; +} + +.icofont-sun-alt:before +{ + content: "\ee7e"; +} + +.icofont-sun-rise:before +{ + content: "\ee7f"; +} + +.icofont-sun-set:before +{ + content: "\ee80"; +} + +.icofont-sun:before +{ + content: "\ee81"; +} + +.icofont-sunny-day-temp:before +{ + content: "\ee82"; +} + +.icofont-sunny:before +{ + content: "\ee83"; +} + +.icofont-thunder-light:before +{ + content: "\ee84"; +} + +.icofont-tornado:before +{ + content: "\ee85"; +} + +.icofont-umbrella-alt:before +{ + content: "\ee86"; +} + +.icofont-umbrella:before +{ + content: "\ee87"; +} + +.icofont-volcano:before +{ + content: "\ee88"; +} + +.icofont-wave:before +{ + content: "\ee89"; +} + +.icofont-wind-scale-0:before +{ + content: "\ee8a"; +} + +.icofont-wind-scale-1:before +{ + content: "\ee8b"; +} + +.icofont-wind-scale-10:before +{ + content: "\ee8c"; +} + +.icofont-wind-scale-11:before +{ + content: "\ee8d"; +} + +.icofont-wind-scale-12:before +{ + content: "\ee8e"; +} + +.icofont-wind-scale-2:before +{ + content: "\ee8f"; +} + +.icofont-wind-scale-3:before +{ + content: "\ee90"; +} + +.icofont-wind-scale-4:before +{ + content: "\ee91"; +} + +.icofont-wind-scale-5:before +{ + content: "\ee92"; +} + +.icofont-wind-scale-6:before +{ + content: "\ee93"; +} + +.icofont-wind-scale-7:before +{ + content: "\ee94"; +} + +.icofont-wind-scale-8:before +{ + content: "\ee95"; +} + +.icofont-wind-scale-9:before +{ + content: "\ee96"; +} + +.icofont-wind-waves:before +{ + content: "\ee97"; +} + +.icofont-wind:before +{ + content: "\ee98"; +} + +.icofont-windy-hail:before +{ + content: "\ee99"; +} + +.icofont-windy-night:before +{ + content: "\ee9a"; +} + +.icofont-windy-raining:before +{ + content: "\ee9b"; +} + +.icofont-windy-sunny:before +{ + content: "\ee9c"; +} + +.icofont-windy-thunder-raining:before +{ + content: "\ee9d"; +} + +.icofont-windy-thunder:before +{ + content: "\ee9e"; +} + +.icofont-windy:before +{ + content: "\ee9f"; +} + +.icofont-addons:before +{ + content: "\eea0"; +} + +.icofont-address-book:before +{ + content: "\eea1"; +} + +.icofont-adjust:before +{ + content: "\eea2"; +} + +.icofont-alarm:before +{ + content: "\eea3"; +} + +.icofont-anchor:before +{ + content: "\eea4"; +} + +.icofont-archive:before +{ + content: "\eea5"; +} + +.icofont-at:before +{ + content: "\eea6"; +} + +.icofont-attachment:before +{ + content: "\eea7"; +} + +.icofont-audio:before +{ + content: "\eea8"; +} + +.icofont-automation:before +{ + content: "\eea9"; +} + +.icofont-badge:before +{ + content: "\eeaa"; +} + +.icofont-bag-alt:before +{ + content: "\eeab"; +} + +.icofont-bag:before +{ + content: "\eeac"; +} + +.icofont-ban:before +{ + content: "\eead"; +} + +.icofont-bar-code:before +{ + content: "\eeae"; +} + +.icofont-bars:before +{ + content: "\eeaf"; +} + +.icofont-basket:before +{ + content: "\eeb0"; +} + +.icofont-battery-empty:before +{ + content: "\eeb1"; +} + +.icofont-battery-full:before +{ + content: "\eeb2"; +} + +.icofont-battery-half:before +{ + content: "\eeb3"; +} + +.icofont-battery-low:before +{ + content: "\eeb4"; +} + +.icofont-beaker:before +{ + content: "\eeb5"; +} + +.icofont-beard:before +{ + content: "\eeb6"; +} + +.icofont-bed:before +{ + content: "\eeb7"; +} + +.icofont-bell:before +{ + content: "\eeb8"; +} + +.icofont-beverage:before +{ + content: "\eeb9"; +} + +.icofont-bill:before +{ + content: "\eeba"; +} + +.icofont-bin:before +{ + content: "\eebb"; +} + +.icofont-binary:before +{ + content: "\eebc"; +} + +.icofont-binoculars:before +{ + content: "\eebd"; +} + +.icofont-bluetooth:before +{ + content: "\eebe"; +} + +.icofont-bomb:before +{ + content: "\eebf"; +} + +.icofont-book-mark:before +{ + content: "\eec0"; +} + +.icofont-box:before +{ + content: "\eec1"; +} + +.icofont-briefcase:before +{ + content: "\eec2"; +} + +.icofont-broken:before +{ + content: "\eec3"; +} + +.icofont-bucket:before +{ + content: "\eec4"; +} + +.icofont-bucket1:before +{ + content: "\eec5"; +} + +.icofont-bucket2:before +{ + content: "\eec6"; +} + +.icofont-bug:before +{ + content: "\eec7"; +} + +.icofont-building:before +{ + content: "\eec8"; +} + +.icofont-bulb-alt:before +{ + content: "\eec9"; +} + +.icofont-bullet:before +{ + content: "\eeca"; +} + +.icofont-bullhorn:before +{ + content: "\eecb"; +} + +.icofont-bullseye:before +{ + content: "\eecc"; +} + +.icofont-calendar:before +{ + content: "\eecd"; +} + +.icofont-camera-alt:before +{ + content: "\eece"; +} + +.icofont-camera:before +{ + content: "\eecf"; +} + +.icofont-card:before +{ + content: "\eed0"; +} + +.icofont-cart-alt:before +{ + content: "\eed1"; +} + +.icofont-cart:before +{ + content: "\eed2"; +} + +.icofont-cc:before +{ + content: "\eed3"; +} + +.icofont-charging:before +{ + content: "\eed4"; +} + +.icofont-chat:before +{ + content: "\eed5"; +} + +.icofont-check-alt:before +{ + content: "\eed6"; +} + +.icofont-check-circled:before +{ + content: "\eed7"; +} + +.icofont-check:before +{ + content: "\eed8"; +} + +.icofont-checked:before +{ + content: "\eed9"; +} + +.icofont-children-care:before +{ + content: "\eeda"; +} + +.icofont-clip:before +{ + content: "\eedb"; +} + +.icofont-clock-time:before +{ + content: "\eedc"; +} + +.icofont-close-circled:before +{ + content: "\eedd"; +} + +.icofont-close-line-circled:before +{ + content: "\eede"; +} + +.icofont-close-line-squared-alt:before +{ + content: "\eedf"; +} + +.icofont-close-line-squared:before +{ + content: "\eee0"; +} + +.icofont-close-line:before +{ + content: "\eee1"; +} + +.icofont-close-squared-alt:before +{ + content: "\eee2"; +} + +.icofont-close-squared:before +{ + content: "\eee3"; +} + +.icofont-close:before +{ + content: "\eee4"; +} + +.icofont-cloud-download:before +{ + content: "\eee5"; +} + +.icofont-cloud-refresh:before +{ + content: "\eee6"; +} + +.icofont-cloud-upload:before +{ + content: "\eee7"; +} + +.icofont-cloud:before +{ + content: "\eee8"; +} + +.icofont-code-not-allowed:before +{ + content: "\eee9"; +} + +.icofont-code:before +{ + content: "\eeea"; +} + +.icofont-comment:before +{ + content: "\eeeb"; +} + +.icofont-compass-alt:before +{ + content: "\eeec"; +} + +.icofont-compass:before +{ + content: "\eeed"; +} + +.icofont-computer:before +{ + content: "\eeee"; +} + +.icofont-connection:before +{ + content: "\eeef"; +} + +.icofont-console:before +{ + content: "\eef0"; +} + +.icofont-contacts:before +{ + content: "\eef1"; +} + +.icofont-contrast:before +{ + content: "\eef2"; +} + +.icofont-copyright:before +{ + content: "\eef3"; +} + +.icofont-credit-card:before +{ + content: "\eef4"; +} + +.icofont-crop:before +{ + content: "\eef5"; +} + +.icofont-crown:before +{ + content: "\eef6"; +} + +.icofont-cube:before +{ + content: "\eef7"; +} + +.icofont-cubes:before +{ + content: "\eef8"; +} + +.icofont-dashboard-web:before +{ + content: "\eef9"; +} + +.icofont-dashboard:before +{ + content: "\eefa"; +} + +.icofont-data:before +{ + content: "\eefb"; +} + +.icofont-database-add:before +{ + content: "\eefc"; +} + +.icofont-database-locked:before +{ + content: "\eefd"; +} + +.icofont-database-remove:before +{ + content: "\eefe"; +} + +.icofont-database:before +{ + content: "\eeff"; +} + +.icofont-delete:before +{ + content: "\ef00"; +} + +.icofont-diamond:before +{ + content: "\ef01"; +} + +.icofont-dice-multiple:before +{ + content: "\ef02"; +} + +.icofont-dice:before +{ + content: "\ef03"; +} + +.icofont-disc:before +{ + content: "\ef04"; +} + +.icofont-diskette:before +{ + content: "\ef05"; +} + +.icofont-document-folder:before +{ + content: "\ef06"; +} + +.icofont-download-alt:before +{ + content: "\ef07"; +} + +.icofont-download:before +{ + content: "\ef08"; +} + +.icofont-downloaded:before +{ + content: "\ef09"; +} + +.icofont-drag:before +{ + content: "\ef0a"; +} + +.icofont-drag1:before +{ + content: "\ef0b"; +} + +.icofont-drag2:before +{ + content: "\ef0c"; +} + +.icofont-drag3:before +{ + content: "\ef0d"; +} + +.icofont-earth:before +{ + content: "\ef0e"; +} + +.icofont-ebook:before +{ + content: "\ef0f"; +} + +.icofont-edit:before +{ + content: "\ef10"; +} + +.icofont-eject:before +{ + content: "\ef11"; +} + +.icofont-email:before +{ + content: "\ef12"; +} + +.icofont-envelope-open:before +{ + content: "\ef13"; +} + +.icofont-envelope:before +{ + content: "\ef14"; +} + +.icofont-eraser:before +{ + content: "\ef15"; +} + +.icofont-error:before +{ + content: "\ef16"; +} + +.icofont-excavator:before +{ + content: "\ef17"; +} + +.icofont-exchange:before +{ + content: "\ef18"; +} + +.icofont-exclamation-circle:before +{ + content: "\ef19"; +} + +.icofont-exclamation-square:before +{ + content: "\ef1a"; +} + +.icofont-exclamation-tringle:before +{ + content: "\ef1b"; +} + +.icofont-exclamation:before +{ + content: "\ef1c"; +} + +.icofont-exit:before +{ + content: "\ef1d"; +} + +.icofont-expand:before +{ + content: "\ef1e"; +} + +.icofont-external-link:before +{ + content: "\ef1f"; +} + +.icofont-external:before +{ + content: "\ef20"; +} + +.icofont-eye-alt:before +{ + content: "\ef21"; +} + +.icofont-eye-blocked:before +{ + content: "\ef22"; +} + +.icofont-eye-dropper:before +{ + content: "\ef23"; +} + +.icofont-eye:before +{ + content: "\ef24"; +} + +.icofont-favourite:before +{ + content: "\ef25"; +} + +.icofont-fax:before +{ + content: "\ef26"; +} + +.icofont-file-fill:before +{ + content: "\ef27"; +} + +.icofont-film:before +{ + content: "\ef28"; +} + +.icofont-filter:before +{ + content: "\ef29"; +} + +.icofont-fire-alt:before +{ + content: "\ef2a"; +} + +.icofont-fire-burn:before +{ + content: "\ef2b"; +} + +.icofont-fire:before +{ + content: "\ef2c"; +} + +.icofont-flag-alt-1:before +{ + content: "\ef2d"; +} + +.icofont-flag-alt-2:before +{ + content: "\ef2e"; +} + +.icofont-flag:before +{ + content: "\ef2f"; +} + +.icofont-flame-torch:before +{ + content: "\ef30"; +} + +.icofont-flash-light:before +{ + content: "\ef31"; +} + +.icofont-flash:before +{ + content: "\ef32"; +} + +.icofont-flask:before +{ + content: "\ef33"; +} + +.icofont-focus:before +{ + content: "\ef34"; +} + +.icofont-folder-open:before +{ + content: "\ef35"; +} + +.icofont-folder:before +{ + content: "\ef36"; +} + +.icofont-foot-print:before +{ + content: "\ef37"; +} + +.icofont-garbage:before +{ + content: "\ef38"; +} + +.icofont-gear-alt:before +{ + content: "\ef39"; +} + +.icofont-gear:before +{ + content: "\ef3a"; +} + +.icofont-gears:before +{ + content: "\ef3b"; +} + +.icofont-gift:before +{ + content: "\ef3c"; +} + +.icofont-glass:before +{ + content: "\ef3d"; +} + +.icofont-globe:before +{ + content: "\ef3e"; +} + +.icofont-graffiti:before +{ + content: "\ef3f"; +} + +.icofont-grocery:before +{ + content: "\ef40"; +} + +.icofont-hand:before +{ + content: "\ef41"; +} + +.icofont-hanger:before +{ + content: "\ef42"; +} + +.icofont-hard-disk:before +{ + content: "\ef43"; +} + +.icofont-heart-alt:before +{ + content: "\ef44"; +} + +.icofont-heart:before +{ + content: "\ef45"; +} + +.icofont-history:before +{ + content: "\ef46"; +} + +.icofont-home:before +{ + content: "\ef47"; +} + +.icofont-horn:before +{ + content: "\ef48"; +} + +.icofont-hour-glass:before +{ + content: "\ef49"; +} + +.icofont-id:before +{ + content: "\ef4a"; +} + +.icofont-image:before +{ + content: "\ef4b"; +} + +.icofont-inbox:before +{ + content: "\ef4c"; +} + +.icofont-infinite:before +{ + content: "\ef4d"; +} + +.icofont-info-circle:before +{ + content: "\ef4e"; +} + +.icofont-info-square:before +{ + content: "\ef4f"; +} + +.icofont-info:before +{ + content: "\ef50"; +} + +.icofont-institution:before +{ + content: "\ef51"; +} + +.icofont-interface:before +{ + content: "\ef52"; +} + +.icofont-invisible:before +{ + content: "\ef53"; +} + +.icofont-jacket:before +{ + content: "\ef54"; +} + +.icofont-jar:before +{ + content: "\ef55"; +} + +.icofont-jewlery:before +{ + content: "\ef56"; +} + +.icofont-karate:before +{ + content: "\ef57"; +} + +.icofont-key-hole:before +{ + content: "\ef58"; +} + +.icofont-key:before +{ + content: "\ef59"; +} + +.icofont-label:before +{ + content: "\ef5a"; +} + +.icofont-lamp:before +{ + content: "\ef5b"; +} + +.icofont-layers:before +{ + content: "\ef5c"; +} + +.icofont-layout:before +{ + content: "\ef5d"; +} + +.icofont-leaf:before +{ + content: "\ef5e"; +} + +.icofont-leaflet:before +{ + content: "\ef5f"; +} + +.icofont-learn:before +{ + content: "\ef60"; +} + +.icofont-lego:before +{ + content: "\ef61"; +} + +.icofont-lens:before +{ + content: "\ef62"; +} + +.icofont-letter:before +{ + content: "\ef63"; +} + +.icofont-letterbox:before +{ + content: "\ef64"; +} + +.icofont-library:before +{ + content: "\ef65"; +} + +.icofont-license:before +{ + content: "\ef66"; +} + +.icofont-life-bouy:before +{ + content: "\ef67"; +} + +.icofont-life-buoy:before +{ + content: "\ef68"; +} + +.icofont-life-jacket:before +{ + content: "\ef69"; +} + +.icofont-life-ring:before +{ + content: "\ef6a"; +} + +.icofont-light-bulb:before +{ + content: "\ef6b"; +} + +.icofont-lighter:before +{ + content: "\ef6c"; +} + +.icofont-lightning-ray:before +{ + content: "\ef6d"; +} + +.icofont-like:before +{ + content: "\ef6e"; +} + +.icofont-line-height:before +{ + content: "\ef6f"; +} + +.icofont-link-alt:before +{ + content: "\ef70"; +} + +.icofont-link:before +{ + content: "\ef71"; +} + +.icofont-list:before +{ + content: "\ef72"; +} + +.icofont-listening:before +{ + content: "\ef73"; +} + +.icofont-listine-dots:before +{ + content: "\ef74"; +} + +.icofont-listing-box:before +{ + content: "\ef75"; +} + +.icofont-listing-number:before +{ + content: "\ef76"; +} + +.icofont-live-support:before +{ + content: "\ef77"; +} + +.icofont-location-arrow:before +{ + content: "\ef78"; +} + +.icofont-location-pin:before +{ + content: "\ef79"; +} + +.icofont-lock:before +{ + content: "\ef7a"; +} + +.icofont-login:before +{ + content: "\ef7b"; +} + +.icofont-logout:before +{ + content: "\ef7c"; +} + +.icofont-lollipop:before +{ + content: "\ef7d"; +} + +.icofont-long-drive:before +{ + content: "\ef7e"; +} + +.icofont-look:before +{ + content: "\ef7f"; +} + +.icofont-loop:before +{ + content: "\ef80"; +} + +.icofont-luggage:before +{ + content: "\ef81"; +} + +.icofont-lunch:before +{ + content: "\ef82"; +} + +.icofont-lungs:before +{ + content: "\ef83"; +} + +.icofont-magic-alt:before +{ + content: "\ef84"; +} + +.icofont-magic:before +{ + content: "\ef85"; +} + +.icofont-magnet:before +{ + content: "\ef86"; +} + +.icofont-mail-box:before +{ + content: "\ef87"; +} + +.icofont-mail:before +{ + content: "\ef88"; +} + +.icofont-male:before +{ + content: "\ef89"; +} + +.icofont-map-pins:before +{ + content: "\ef8a"; +} + +.icofont-map:before +{ + content: "\ef8b"; +} + +.icofont-maximize:before +{ + content: "\ef8c"; +} + +.icofont-measure:before +{ + content: "\ef8d"; +} + +.icofont-medicine:before +{ + content: "\ef8e"; +} + +.icofont-mega-phone:before +{ + content: "\ef8f"; +} + +.icofont-megaphone-alt:before +{ + content: "\ef90"; +} + +.icofont-megaphone:before +{ + content: "\ef91"; +} + +.icofont-memorial:before +{ + content: "\ef92"; +} + +.icofont-memory-card:before +{ + content: "\ef93"; +} + +.icofont-mic-mute:before +{ + content: "\ef94"; +} + +.icofont-mic:before +{ + content: "\ef95"; +} + +.icofont-military:before +{ + content: "\ef96"; +} + +.icofont-mill:before +{ + content: "\ef97"; +} + +.icofont-minus-circle:before +{ + content: "\ef98"; +} + +.icofont-minus-square:before +{ + content: "\ef99"; +} + +.icofont-minus:before +{ + content: "\ef9a"; +} + +.icofont-mobile-phone:before +{ + content: "\ef9b"; +} + +.icofont-molecule:before +{ + content: "\ef9c"; +} + +.icofont-money:before +{ + content: "\ef9d"; +} + +.icofont-moon:before +{ + content: "\ef9e"; +} + +.icofont-mop:before +{ + content: "\ef9f"; +} + +.icofont-muffin:before +{ + content: "\efa0"; +} + +.icofont-mustache:before +{ + content: "\efa1"; +} + +.icofont-navigation-menu:before +{ + content: "\efa2"; +} + +.icofont-navigation:before +{ + content: "\efa3"; +} + +.icofont-network-tower:before +{ + content: "\efa4"; +} + +.icofont-network:before +{ + content: "\efa5"; +} + +.icofont-news:before +{ + content: "\efa6"; +} + +.icofont-newspaper:before +{ + content: "\efa7"; +} + +.icofont-no-smoking:before +{ + content: "\efa8"; +} + +.icofont-not-allowed:before +{ + content: "\efa9"; +} + +.icofont-notebook:before +{ + content: "\efaa"; +} + +.icofont-notepad:before +{ + content: "\efab"; +} + +.icofont-notification:before +{ + content: "\efac"; +} + +.icofont-numbered:before +{ + content: "\efad"; +} + +.icofont-opposite:before +{ + content: "\efae"; +} + +.icofont-optic:before +{ + content: "\efaf"; +} + +.icofont-options:before +{ + content: "\efb0"; +} + +.icofont-package:before +{ + content: "\efb1"; +} + +.icofont-page:before +{ + content: "\efb2"; +} + +.icofont-paint:before +{ + content: "\efb3"; +} + +.icofont-paper-plane:before +{ + content: "\efb4"; +} + +.icofont-paperclip:before +{ + content: "\efb5"; +} + +.icofont-papers:before +{ + content: "\efb6"; +} + +.icofont-pay:before +{ + content: "\efb7"; +} + +.icofont-penguin-linux:before +{ + content: "\efb8"; +} + +.icofont-pestle:before +{ + content: "\efb9"; +} + +.icofont-phone-circle:before +{ + content: "\efba"; +} + +.icofont-phone:before +{ + content: "\efbb"; +} + +.icofont-picture:before +{ + content: "\efbc"; +} + +.icofont-pine:before +{ + content: "\efbd"; +} + +.icofont-pixels:before +{ + content: "\efbe"; +} + +.icofont-plugin:before +{ + content: "\efbf"; +} + +.icofont-plus-circle:before +{ + content: "\efc0"; +} + +.icofont-plus-square:before +{ + content: "\efc1"; +} + +.icofont-plus:before +{ + content: "\efc2"; +} + +.icofont-polygonal:before +{ + content: "\efc3"; +} + +.icofont-power:before +{ + content: "\efc4"; +} + +.icofont-price:before +{ + content: "\efc5"; +} + +.icofont-print:before +{ + content: "\efc6"; +} + +.icofont-puzzle:before +{ + content: "\efc7"; +} + +.icofont-qr-code:before +{ + content: "\efc8"; +} + +.icofont-queen:before +{ + content: "\efc9"; +} + +.icofont-question-circle:before +{ + content: "\efca"; +} + +.icofont-question-square:before +{ + content: "\efcb"; +} + +.icofont-question:before +{ + content: "\efcc"; +} + +.icofont-quote-left:before +{ + content: "\efcd"; +} + +.icofont-quote-right:before +{ + content: "\efce"; +} + +.icofont-random:before +{ + content: "\efcf"; +} + +.icofont-recycle:before +{ + content: "\efd0"; +} + +.icofont-refresh:before +{ + content: "\efd1"; +} + +.icofont-repair:before +{ + content: "\efd2"; +} + +.icofont-reply-all:before +{ + content: "\efd3"; +} + +.icofont-reply:before +{ + content: "\efd4"; +} + +.icofont-resize:before +{ + content: "\efd5"; +} + +.icofont-responsive:before +{ + content: "\efd6"; +} + +.icofont-retweet:before +{ + content: "\efd7"; +} + +.icofont-road:before +{ + content: "\efd8"; +} + +.icofont-robot:before +{ + content: "\efd9"; +} + +.icofont-royal:before +{ + content: "\efda"; +} + +.icofont-rss-feed:before +{ + content: "\efdb"; +} + +.icofont-safety:before +{ + content: "\efdc"; +} + +.icofont-sale-discount:before +{ + content: "\efdd"; +} + +.icofont-satellite:before +{ + content: "\efde"; +} + +.icofont-send-mail:before +{ + content: "\efdf"; +} + +.icofont-server:before +{ + content: "\efe0"; +} + +.icofont-settings-alt:before +{ + content: "\efe1"; +} + +.icofont-settings:before +{ + content: "\efe2"; +} + +.icofont-share-alt:before +{ + content: "\efe3"; +} + +.icofont-share-boxed:before +{ + content: "\efe4"; +} + +.icofont-share:before +{ + content: "\efe5"; +} + +.icofont-shield:before +{ + content: "\efe6"; +} + +.icofont-shopping-cart:before +{ + content: "\efe7"; +} + +.icofont-sign-in:before +{ + content: "\efe8"; +} + +.icofont-sign-out:before +{ + content: "\efe9"; +} + +.icofont-signal:before +{ + content: "\efea"; +} + +.icofont-site-map:before +{ + content: "\efeb"; +} + +.icofont-smart-phone:before +{ + content: "\efec"; +} + +.icofont-soccer:before +{ + content: "\efed"; +} + +.icofont-sort-alt:before +{ + content: "\efee"; +} + +.icofont-sort:before +{ + content: "\efef"; +} + +.icofont-space:before +{ + content: "\eff0"; +} + +.icofont-spanner:before +{ + content: "\eff1"; +} + +.icofont-speech-comments:before +{ + content: "\eff2"; +} + +.icofont-speed-meter:before +{ + content: "\eff3"; +} + +.icofont-spinner-alt-1:before +{ + content: "\eff4"; +} + +.icofont-spinner-alt-2:before +{ + content: "\eff5"; +} + +.icofont-spinner-alt-3:before +{ + content: "\eff6"; +} + +.icofont-spinner-alt-4:before +{ + content: "\eff7"; +} + +.icofont-spinner-alt-5:before +{ + content: "\eff8"; +} + +.icofont-spinner-alt-6:before +{ + content: "\eff9"; +} + +.icofont-spinner:before +{ + content: "\effa"; +} + +.icofont-spreadsheet:before +{ + content: "\effb"; +} + +.icofont-square:before +{ + content: "\effc"; +} + +.icofont-ssl-security:before +{ + content: "\effd"; +} + +.icofont-star-alt-1:before +{ + content: "\effe"; +} + +.icofont-star-alt-2:before +{ + content: "\efff"; +} + +.icofont-star:before +{ + content: "\f000"; +} + +.icofont-street-view:before +{ + content: "\f001"; +} + +.icofont-support-faq:before +{ + content: "\f002"; +} + +.icofont-tack-pin:before +{ + content: "\f003"; +} + +.icofont-tag:before +{ + content: "\f004"; +} + +.icofont-tags:before +{ + content: "\f005"; +} + +.icofont-tasks-alt:before +{ + content: "\f006"; +} + +.icofont-tasks:before +{ + content: "\f007"; +} + +.icofont-telephone:before +{ + content: "\f008"; +} + +.icofont-telescope:before +{ + content: "\f009"; +} + +.icofont-terminal:before +{ + content: "\f00a"; +} + +.icofont-thumbs-down:before +{ + content: "\f00b"; +} + +.icofont-thumbs-up:before +{ + content: "\f00c"; +} + +.icofont-tick-boxed:before +{ + content: "\f00d"; +} + +.icofont-tick-mark:before +{ + content: "\f00e"; +} + +.icofont-ticket:before +{ + content: "\f00f"; +} + +.icofont-tie:before +{ + content: "\f010"; +} + +.icofont-toggle-off:before +{ + content: "\f011"; +} + +.icofont-toggle-on:before +{ + content: "\f012"; +} + +.icofont-tools-alt-2:before +{ + content: "\f013"; +} + +.icofont-tools:before +{ + content: "\f014"; +} + +.icofont-touch:before +{ + content: "\f015"; +} + +.icofont-traffic-light:before +{ + content: "\f016"; +} + +.icofont-transparent:before +{ + content: "\f017"; +} + +.icofont-tree:before +{ + content: "\f018"; +} + +.icofont-unique-idea:before +{ + content: "\f019"; +} + +.icofont-unlock:before +{ + content: "\f01a"; +} + +.icofont-unlocked:before +{ + content: "\f01b"; +} + +.icofont-upload-alt:before +{ + content: "\f01c"; +} + +.icofont-upload:before +{ + content: "\f01d"; +} + +.icofont-usb-drive:before +{ + content: "\f01e"; +} + +.icofont-usb:before +{ + content: "\f01f"; +} + +.icofont-vector-path:before +{ + content: "\f020"; +} + +.icofont-verification-check:before +{ + content: "\f021"; +} + +.icofont-wall-clock:before +{ + content: "\f022"; +} + +.icofont-wall:before +{ + content: "\f023"; +} + +.icofont-wallet:before +{ + content: "\f024"; +} + +.icofont-warning-alt:before +{ + content: "\f025"; +} + +.icofont-warning:before +{ + content: "\f026"; +} + +.icofont-water-drop:before +{ + content: "\f027"; +} + +.icofont-web:before +{ + content: "\f028"; +} + +.icofont-wheelchair:before +{ + content: "\f029"; +} + +.icofont-wifi-alt:before +{ + content: "\f02a"; +} + +.icofont-wifi:before +{ + content: "\f02b"; +} + +.icofont-world:before +{ + content: "\f02c"; +} + +.icofont-zigzag:before +{ + content: "\f02d"; +} + +.icofont-zipped:before +{ + content: "\f02e"; +} + +.icofont-xs +{ + font-size: .5em; +} + +.icofont-sm +{ + font-size: .75em; +} + +.icofont-md +{ + font-size: 1.25em; +} + +.icofont-lg +{ + font-size: 1.5em; +} + +.icofont-1x +{ + font-size: 1em; +} + +.icofont-2x +{ + font-size: 2em; +} + +.icofont-3x +{ + font-size: 3em; +} + +.icofont-4x +{ + font-size: 4em; +} + +.icofont-5x +{ + font-size: 5em; +} + +.icofont-6x +{ + font-size: 6em; +} + +.icofont-7x +{ + font-size: 7em; +} + +.icofont-8x +{ + font-size: 8em; +} + +.icofont-9x +{ + font-size: 9em; +} + +.icofont-10x +{ + font-size: 10em; +} + +.icofont-fw +{ + text-align: center; + width: 1.25em; +} + +.icofont-ul +{ + list-style-type: none; + padding-left: 0; + margin-left: 0; +} + +.icofont-ul > li +{ + position: relative; + line-height: 2em; +} + +.icofont-ul > li .icofont +{ + display: inline-block; + vertical-align: middle; +} + +.icofont-border +{ + border: solid 0.08em #f1f1f1; + border-radius: .1em; + padding: .2em .25em .15em; +} + +.icofont-pull-left +{ + float: left; +} + +.icofont-pull-right +{ + float: right; +} + +.icofont.icofont-pull-left +{ + margin-right: .3em; +} + +.icofont.icofont-pull-right +{ + margin-left: .3em; +} + +.icofont-spin +{ + -webkit-animation: icofont-spin 2s infinite linear; + animation: icofont-spin 2s infinite linear; + display: inline-block; +} + +.icofont-pulse +{ + -webkit-animation: icofont-spin 1s infinite steps(8); + animation: icofont-spin 1s infinite steps(8); + display: inline-block; +} + +@-webkit-keyframes icofont-spin +{ + 0% + { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% + { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes icofont-spin +{ + 0% + { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% + { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.icofont-rotate-90 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +.icofont-rotate-180 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +.icofont-rotate-270 +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +.icofont-flip-horizontal +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.icofont-flip-vertical +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +.icofont-flip-horizontal.icofont-flip-vertical +{ + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); +} + +:root .icofont-rotate-90, + :root .icofont-rotate-180, + :root .icofont-rotate-270, + :root .icofont-flip-horizontal, + :root .icofont-flip-vertical +{ + -webkit-filter: none; + filter: none; + display: inline-block; +} + +.icofont-inverse +{ + color: #fff; +} + +.sr-only +{ + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +.sr-only-focusable:active, + .sr-only-focusable:focus +{ + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; +} + \ No newline at end of file diff --git a/html/css/jquery.fancybox.css b/html/css/jquery.fancybox.css new file mode 100644 index 0000000..0ed0785 --- /dev/null +++ b/html/css/jquery.fancybox.css @@ -0,0 +1,740 @@ +@charset "UTF-8"; +.fancybox-enabled { + overflow: hidden; } + +.fancybox-enabled body { + overflow: visible; + height: 100%; } + +.fancybox-is-hidden { + position: absolute; + top: -9999px; + left: -9999px; + visibility: hidden; } + +.fancybox-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 99993; + -webkit-tap-highlight-color: transparent; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transform: translateZ(0); + transform: translateZ(0); } + +/* Make sure that the first one is on the top */ +.fancybox-container ~ .fancybox-container { + z-index: 99992; } + +.fancybox-outer, +.fancybox-inner, +.fancybox-bg, +.fancybox-stage { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; } + +.fancybox-outer { + overflow-y: auto; + -webkit-overflow-scrolling: touch; } + +.fancybox-bg { + background: #1e1e1e; + opacity: 0; + transition-duration: inherit; + transition-property: opacity; + transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); } + +.fancybox-is-open .fancybox-bg { + opacity: 0.87; + transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); } + +.fancybox-infobar, +.fancybox-toolbar, +.fancybox-caption-wrap { + position: absolute; + direction: ltr; + z-index: 99997; + opacity: 0; + visibility: hidden; + transition: opacity .25s, visibility 0s linear .25s; + box-sizing: border-box; } + +.fancybox-show-infobar .fancybox-infobar, +.fancybox-show-toolbar .fancybox-toolbar, +.fancybox-show-caption .fancybox-caption-wrap { + opacity: 1; + visibility: visible; + transition: opacity .25s, visibility 0s; } + +.fancybox-infobar { + top: 0; + left: 50%; + margin-left: -79px; } + +.fancybox-infobar__body { + display: inline-block; + width: 70px; + line-height: 44px; + font-size: 13px; + font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; + text-align: center; + color: #ddd; + background-color: rgba(30, 30, 30, 0.7); + pointer-events: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-touch-callout: none; + -webkit-tap-highlight-color: transparent; + -webkit-font-smoothing: subpixel-antialiased; } + +.fancybox-toolbar { + top: 0; + right: 0; } + +.fancybox-stage { + overflow: hidden; + direction: ltr; + z-index: 99994; + -webkit-transform: translate3d(0, 0, 0); } + +.fancybox-slide { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + margin: 0; + padding: 0; + overflow: auto; + outline: none; + white-space: normal; + box-sizing: border-box; + text-align: center; + z-index: 99994; + -webkit-overflow-scrolling: touch; + display: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transition-property: opacity, -webkit-transform; + transition-property: transform, opacity; + transition-property: transform, opacity, -webkit-transform; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; } + +.fancybox-slide::before { + content: ''; + display: inline-block; + vertical-align: middle; + height: 100%; + width: 0; } + +.fancybox-is-sliding .fancybox-slide, +.fancybox-slide--previous, +.fancybox-slide--current, +.fancybox-slide--next { + display: block; } + +.fancybox-slide--image { + overflow: visible; } + +.fancybox-slide--image::before { + display: none; } + +.fancybox-slide--video .fancybox-content, +.fancybox-slide--video iframe { + background: #000; } + +.fancybox-slide--map .fancybox-content, +.fancybox-slide--map iframe { + background: #E5E3DF; } + +.fancybox-slide--next { + z-index: 99995; } + +.fancybox-slide > * { + display: inline-block; + position: relative; + padding: 24px; + margin: 44px 0 44px; + border-width: 0; + vertical-align: middle; + text-align: left; + background-color: #fff; + overflow: auto; + box-sizing: border-box; } + +.fancybox-slide .fancybox-image-wrap { + position: absolute; + top: 0; + left: 0; + margin: 0; + padding: 0; + border: 0; + z-index: 99995; + background: transparent; + cursor: default; + overflow: visible; + -webkit-transform-origin: top left; + -ms-transform-origin: top left; + transform-origin: top left; + background-size: 100% 100%; + background-repeat: no-repeat; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.fancybox-can-zoomOut .fancybox-image-wrap { + cursor: -webkit-zoom-out; + cursor: zoom-out; } + +.fancybox-can-zoomIn .fancybox-image-wrap { + cursor: -webkit-zoom-in; + cursor: zoom-in; } + +.fancybox-can-drag .fancybox-image-wrap { + cursor: -webkit-grab; + cursor: grab; } + +.fancybox-is-dragging .fancybox-image-wrap { + cursor: -webkit-grabbing; + cursor: grabbing; } + +.fancybox-image, +.fancybox-spaceball { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + margin: 0; + padding: 0; + border: 0; + max-width: none; + max-height: none; } + +.fancybox-spaceball { + z-index: 1; } + +.fancybox-slide--iframe .fancybox-content { + padding: 0; + width: 80%; + height: 80%; + max-width: calc(100% - 100px); + max-height: calc(100% - 88px); + overflow: visible; + background: #fff; } + +.fancybox-iframe { + display: block; + margin: 0; + padding: 0; + border: 0; + width: 100%; + height: 100%; + background: #fff; } + +.fancybox-error { + margin: 0; + padding: 40px; + width: 100%; + max-width: 380px; + background: #fff; + cursor: default; } + +.fancybox-error p { + margin: 0; + padding: 0; + color: #444; + font: 16px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; } + +.fancybox-close-small { + position: absolute; + top: 0; + right: 0; + width: 44px; + height: 44px; + padding: 0; + margin: 0; + border: 0; + border-radius: 0; + outline: none; + background: transparent; + z-index: 10; + cursor: pointer; } + +.fancybox-close-small:after { + content: '×'; + position: absolute; + top: 5px; + right: 5px; + width: 30px; + height: 30px; + font: 20px/30px Arial,"Helvetica Neue",Helvetica,sans-serif; + color: #888; + font-weight: 300; + text-align: center; + border-radius: 50%; + border-width: 0; + background: #fff; + transition: background .25s; + box-sizing: border-box; + z-index: 2; } + +.fancybox-close-small:focus:after { + outline: 1px dotted #888; } + +.fancybox-close-small:hover:after { + color: #555; + background: #eee; } + +.fancybox-slide--iframe .fancybox-close-small { + top: 0; + right: -44px; } + +.fancybox-slide--iframe .fancybox-close-small:after { + background: transparent; + font-size: 35px; + color: #aaa; } + +.fancybox-slide--iframe .fancybox-close-small:hover:after { + color: #fff; } + +/* Caption */ +.fancybox-caption-wrap { + bottom: 0; + left: 0; + right: 0; + padding: 60px 30px 0 30px; + background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%); + pointer-events: none; } + +.fancybox-caption { + padding: 30px 0; + border-top: 1px solid rgba(255, 255, 255, 0.4); + font-size: 14px; + font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; + color: #fff; + line-height: 20px; + -webkit-text-size-adjust: none; } + +.fancybox-caption a, +.fancybox-caption button, +.fancybox-caption select { + pointer-events: all; } + +.fancybox-caption a { + color: #fff; + text-decoration: underline; } + +/* Buttons */ +.fancybox-button { + display: inline-block; + position: relative; + margin: 0; + padding: 0; + border: 0; + width: 44px; + height: 44px; + line-height: 44px; + text-align: center; + background: transparent; + color: #ddd; + border-radius: 0; + cursor: pointer; + vertical-align: top; + outline: none; } + +.fancybox-button[disabled] { + cursor: default; + pointer-events: none; } + +.fancybox-infobar__body, .fancybox-button { + background: rgba(30, 30, 30, 0.6); } + +.fancybox-button:hover:not([disabled]) { + color: #fff; + background: rgba(0, 0, 0, 0.8); } + +.fancybox-button::before, +.fancybox-button::after { + content: ''; + pointer-events: none; + position: absolute; + background-color: currentColor; + color: currentColor; + opacity: 0.9; + box-sizing: border-box; + display: inline-block; } + +.fancybox-button[disabled]::before, +.fancybox-button[disabled]::after { + opacity: 0.3; } + +.fancybox-button--left::after, +.fancybox-button--right::after { + top: 18px; + width: 6px; + height: 6px; + background: transparent; + border-top: solid 2px currentColor; + border-right: solid 2px currentColor; } + +.fancybox-button--left::after { + left: 20px; + -webkit-transform: rotate(-135deg); + -ms-transform: rotate(-135deg); + transform: rotate(-135deg); } + +.fancybox-button--right::after { + right: 20px; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); } + +.fancybox-button--left { + border-bottom-left-radius: 5px; } + +.fancybox-button--right { + border-bottom-right-radius: 5px; } + +.fancybox-button--close::before, .fancybox-button--close::after { + content: ''; + display: inline-block; + position: absolute; + height: 2px; + width: 16px; + top: calc(50% - 1px); + left: calc(50% - 8px); } + +.fancybox-button--close::before { + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); } + +.fancybox-button--close::after { + -webkit-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + transform: rotate(-45deg); } + +/* Navigation arrows */ +.fancybox-arrow { + position: absolute; + top: 50%; + margin: -50px 0 0 0; + height: 100px; + width: 54px; + padding: 0; + border: 0; + outline: none; + background: none; + cursor: pointer; + z-index: 99995; + opacity: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + transition: opacity .25s; } + +.fancybox-arrow::after { + content: ''; + position: absolute; + top: 28px; + width: 44px; + height: 44px; + background-color: rgba(30, 30, 30, 0.8); + background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=); + background-repeat: no-repeat; + background-position: center center; + background-size: 24px 24px; } + +.fancybox-arrow--right { + right: 0; } + +.fancybox-arrow--left { + left: 0; + -webkit-transform: scaleX(-1); + -ms-transform: scaleX(-1); + transform: scaleX(-1); } + +.fancybox-arrow--right::after, +.fancybox-arrow--left::after { + left: 0; } + +.fancybox-show-nav .fancybox-arrow { + opacity: 0.6; } + +.fancybox-show-nav .fancybox-arrow[disabled] { + opacity: 0.3; } + +/* Loading indicator */ +.fancybox-loading { + border: 6px solid rgba(100, 100, 100, 0.4); + border-top: 6px solid rgba(255, 255, 255, 0.6); + border-radius: 100%; + height: 50px; + width: 50px; + -webkit-animation: fancybox-rotate .8s infinite linear; + animation: fancybox-rotate .8s infinite linear; + background: transparent; + position: absolute; + top: 50%; + left: 50%; + margin-top: -25px; + margin-left: -25px; + z-index: 99999; } + +@-webkit-keyframes fancybox-rotate { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + to { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); } } + +@keyframes fancybox-rotate { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + to { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); } } + +/* Transition effects */ +.fancybox-animated { + transition-timing-function: cubic-bezier(0, 0, 0.25, 1); } + +/* transitionEffect: slide */ +.fancybox-fx-slide.fancybox-slide--previous { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + opacity: 0; } + +.fancybox-fx-slide.fancybox-slide--next { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + opacity: 0; } + +.fancybox-fx-slide.fancybox-slide--current { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; } + +/* transitionEffect: fade */ +.fancybox-fx-fade.fancybox-slide--previous, +.fancybox-fx-fade.fancybox-slide--next { + opacity: 0; + transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } + +.fancybox-fx-fade.fancybox-slide--current { + opacity: 1; } + +/* transitionEffect: zoom-in-out */ +.fancybox-fx-zoom-in-out.fancybox-slide--previous { + -webkit-transform: scale3d(1.5, 1.5, 1.5); + transform: scale3d(1.5, 1.5, 1.5); + opacity: 0; } + +.fancybox-fx-zoom-in-out.fancybox-slide--next { + -webkit-transform: scale3d(0.5, 0.5, 0.5); + transform: scale3d(0.5, 0.5, 0.5); + opacity: 0; } + +.fancybox-fx-zoom-in-out.fancybox-slide--current { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + opacity: 1; } + +/* transitionEffect: rotate */ +.fancybox-fx-rotate.fancybox-slide--previous { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + transform: rotate(-360deg); + opacity: 0; } + +.fancybox-fx-rotate.fancybox-slide--next { + -webkit-transform: rotate(360deg); + -ms-transform: rotate(360deg); + transform: rotate(360deg); + opacity: 0; } + +.fancybox-fx-rotate.fancybox-slide--current { + -webkit-transform: rotate(0deg); + -ms-transform: rotate(0deg); + transform: rotate(0deg); + opacity: 1; } + +/* transitionEffect: circular */ +.fancybox-fx-circular.fancybox-slide--previous { + -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); + transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); + opacity: 0; } + +.fancybox-fx-circular.fancybox-slide--next { + -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); + transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); + opacity: 0; } + +.fancybox-fx-circular.fancybox-slide--current { + -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0); + transform: scale3d(1, 1, 1) translate3d(0, 0, 0); + opacity: 1; } + +/* transitionEffect: tube */ +.fancybox-fx-tube.fancybox-slide--previous { + -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); + transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); } + +.fancybox-fx-tube.fancybox-slide--next { + -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); + transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); } + +.fancybox-fx-tube.fancybox-slide--current { + -webkit-transform: translate3d(0, 0, 0) scale(1); + transform: translate3d(0, 0, 0) scale(1); } + +/* Styling for Small-Screen Devices */ +@media all and (max-width: 800px) { + .fancybox-infobar { + left: 0; + margin-left: 0; } + .fancybox-button--left, + .fancybox-button--right { + display: none !important; } + .fancybox-caption { + padding: 20px 0; + margin: 0; } } + +/* Fullscreen */ +.fancybox-button--fullscreen::before { + width: 15px; + height: 11px; + left: calc(50% - 7px); + top: calc(50% - 6px); + border: 2px solid; + background: none; } + +/* Slideshow button */ +.fancybox-button--play::before, +.fancybox-button--pause::before { + top: calc(50% - 6px); + left: calc(50% - 4px); + background: transparent; } + +.fancybox-button--play::before { + width: 0; + height: 0; + border-top: 6px inset transparent; + border-bottom: 6px inset transparent; + border-left: 10px solid; + border-radius: 1px; } + +.fancybox-button--pause::before { + width: 7px; + height: 11px; + border-style: solid; + border-width: 0 2px 0 2px; } + +/* Thumbs */ +.fancybox-thumbs { + display: none; } + +.fancybox-button--thumbs { + display: none; } + +@media all and (min-width: 800px) { + .fancybox-button--thumbs { + display: inline-block; } + .fancybox-button--thumbs span { + font-size: 23px; } + .fancybox-button--thumbs::before { + width: 3px; + height: 3px; + top: calc(50% - 2px); + left: calc(50% - 2px); + box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0; } + .fancybox-thumbs { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: auto; + width: 220px; + margin: 0; + padding: 5px 5px 0 0; + background: #fff; + word-break: normal; + -webkit-tap-highlight-color: transparent; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + box-sizing: border-box; + z-index: 99995; } + .fancybox-show-thumbs .fancybox-thumbs { + display: block; } + .fancybox-show-thumbs .fancybox-inner { + right: 220px; } + .fancybox-thumbs > ul { + list-style: none; + position: absolute; + position: relative; + width: 100%; + height: 100%; + margin: 0; + padding: 0; + overflow-x: hidden; + overflow-y: auto; + font-size: 0; } + .fancybox-thumbs > ul > li { + float: left; + overflow: hidden; + max-width: 50%; + padding: 0; + margin: 0; + width: 105px; + height: 75px; + position: relative; + cursor: pointer; + outline: none; + border: 5px solid transparent; + border-top-width: 0; + border-right-width: 0; + -webkit-tap-highlight-color: transparent; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + box-sizing: border-box; } + li.fancybox-thumbs-loading { + background: rgba(0, 0, 0, 0.1); } + .fancybox-thumbs > ul > li > img { + position: absolute; + top: 0; + left: 0; + min-width: 100%; + min-height: 100%; + max-width: none; + max-height: none; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .fancybox-thumbs > ul > li:before { + content: ''; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + border-radius: 2px; + border: 4px solid #4ea7f9; + z-index: 99991; + opacity: 0; + transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .fancybox-thumbs > ul > li.fancybox-thumbs-active:before { + opacity: 1; } } diff --git a/html/css/nice-select.css b/html/css/nice-select.css new file mode 100644 index 0000000..d72a7cb --- /dev/null +++ b/html/css/nice-select.css @@ -0,0 +1,138 @@ +.nice-select { + -webkit-tap-highlight-color: transparent; + background-color: #fff; + border-radius: 5px; + border: solid 1px #e8e8e8; + box-sizing: border-box; + clear: both; + cursor: pointer; + display: block; + float: left; + font-family: inherit; + font-size: 14px; + font-weight: normal; + height: 42px; + line-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 30px; + position: relative; + text-align: left !important; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; + width: auto; } + .nice-select:hover { + border-color: #dbdbdb; } + .nice-select:active, .nice-select.open, .nice-select:focus { + border-color: #999; } + .nice-select:after { + border-bottom: 2px solid #999; + border-right: 2px solid #999; + content: ''; + display: block; + height: 5px; + margin-top: -4px; + pointer-events: none; + position: absolute; + right: 12px; + top: 50%; + -webkit-transform-origin: 66% 66%; + -ms-transform-origin: 66% 66%; + transform-origin: 66% 66%; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-transition: all 0.15s ease-in-out; + transition: all 0.15s ease-in-out; + width: 5px; } + .nice-select.open:after { + -webkit-transform: rotate(-135deg); + -ms-transform: rotate(-135deg); + transform: rotate(-135deg); } + .nice-select.open .list { + opacity: 1; + pointer-events: auto; + -webkit-transform: scale(1) translateY(0); + -ms-transform: scale(1) translateY(0); + transform: scale(1) translateY(0); } + .nice-select.disabled { + border-color: #ededed; + color: #999; + pointer-events: none; } + .nice-select.disabled:after { + border-color: #cccccc; } + .nice-select.wide { + width: 100%; } + .nice-select.wide .list { + left: 0 !important; + right: 0 !important; } + .nice-select.right { + float: right; } + .nice-select.right .list { + left: auto; + right: 0; } + .nice-select.small { + font-size: 12px; + height: 36px; + line-height: 34px; } + .nice-select.small:after { + height: 4px; + width: 4px; } + .nice-select.small .option { + line-height: 34px; + min-height: 34px; } + .nice-select .list { + background-color: #fff; + border-radius: 5px; + box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); + box-sizing: border-box; + margin-top: 4px; + opacity: 0; + overflow: hidden; + padding: 0; + pointer-events: none; + position: absolute; + top: 100%; + left: 0; + -webkit-transform-origin: 50% 0; + -ms-transform-origin: 50% 0; + transform-origin: 50% 0; + -webkit-transform: scale(0.75) translateY(-21px); + -ms-transform: scale(0.75) translateY(-21px); + transform: scale(0.75) translateY(-21px); + -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + z-index: 9; } + .nice-select .list:hover .option:not(:hover) { + background-color: transparent !important; } + .nice-select .option { + cursor: pointer; + font-weight: 400; + line-height: 40px; + list-style: none; + min-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 29px; + text-align: left; + -webkit-transition: all 0.2s; + transition: all 0.2s; } + .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { + background-color: #f6f6f6; } + .nice-select .option.selected { + font-weight: bold; } + .nice-select .option.disabled { + background-color: transparent; + color: #999; + cursor: default; } + +.no-csspointerevents .nice-select .list { + display: none; } + +.no-csspointerevents .nice-select.open .list { + display: block; } diff --git a/html/css/plugins.css b/html/css/plugins.css new file mode 100644 index 0000000..8104222 --- /dev/null +++ b/html/css/plugins.css @@ -0,0 +1,122 @@ + +/*! Magnific Popup - v1.1.0 - 2016-02-20 +* http://dimsemenov.com/plugins/magnific-popup/ +* Copyright (c) 2016 Dmitry Semenov; */ +.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} + + +/*-------- slinky-menu css --------*/ + +.slinky-menu { + overflow: hidden; + -webkit-transform: translateZ(0); + transform: translateZ(0); } + .slinky-menu > ul { + left: 0; + position: relative; + -webkit-transform: translateZ(0); + transform: translateZ(0); } + .slinky-menu ul, + .slinky-menu li { + list-style: none; + margin: 0; } + .slinky-menu ul { + width: 100%; } + .slinky-menu a { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .slinky-menu a span { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + line-height: 1.4; } + .slinky-menu li ul { + display: none; + left: 100%; + position: absolute; + top: 0; } + .slinky-menu .header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .slinky-menu .header .title { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + line-height: 1.4; + margin: 0; + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + +.slinky-theme-default { + background: #f6f7f8; } + .slinky-theme-default .title { + color: #333; + padding: 1em; } + .slinky-theme-default li { + line-height: 1; } + .slinky-theme-default a:not(.back) { + color: #333; + padding: 1em; } + .slinky-theme-default a:not(.back):hover { + background: rgba(90, 200, 250, 0.25); } + .slinky-theme-default a:not(.back):active { + background: rgba(90, 200, 250, 0.5); } + .slinky-theme-default .next::after { + margin-left: 1em; } + .slinky-theme-default .back::before { + padding: 0; + -webkit-transform: scaleX(-1); + transform: scaleY(-1); } + .slinky-theme-default .next:hover::after, + .slinky-theme-default .back:hover::before { + opacity: 1; } + .slinky-theme-default .next:active::after, + .slinky-theme-default .back:active::before { + opacity: 1; } + + + +.slinky-theme-default .next::after { + content: "\eaca"; + font-family: 'icofont'; + opacity: 1; + transition: all .3 ease 0s; + color: #000; + font-size: 30px; + line-height: 20px; +} + +.slinky-theme-default .next:hover::after { + color: #ed6436; +} + + + +.slinky-theme-default .back::before { + content: "\eac9"; + font-family: 'icofont'; + opacity: 1; + transition: all .3s ease 0s; + color: #fff; + font-size: 33px; + line-height: 20px; + padding: 7px 1px; +background-color: #ed6436; +} + +.slinky-theme-default .back:hover::before { + background-color: #000; +} + + + + + + + diff --git a/html/css/responsive.css b/html/css/responsive.css new file mode 100644 index 0000000..a3cf769 --- /dev/null +++ b/html/css/responsive.css @@ -0,0 +1,959 @@ +/*=============== Extra Large(xl) Device ===============*/ + +@media (min-width: 1200px) and (max-width: 1600px) { + .wrapper.wrapper-boxed-layout { + margin: 0 50px; + width: calc(100% - 100px); + } + .wrapper-boxed-layout .header-sticky.sticky { + left: 50px; + right: 50px; + } + .header-menu-list>li>a { + padding: 7px 13px; + } + .slider-area.fixed-height .single-slide .row { + height: 700px; + } + .container-fluid .slider-content { + max-width: 65%; + } + .slider-content h1 { + font-size: 75px; + line-height: 90px; + } + .footer-title { + font-size: 16px; + } + .wrapper-boxed-layout .slider-content h1 { + font-size: 65px; + line-height: 85px; + } + .quick-thumb-content .modal-lg { + max-width: 900px; + } +} + + +/*=============== Large(LG) Device ===============*/ + +@media (min-width: 992px) and (max-width: 1199px) { + .container-fluid { + padding-left: 15px; + padding-right: 15px; + } + .header-menu-list>li, + .cart-box>ul>li { + padding: 20px 0; + } + .header-menu-list>li>a { + padding: 7px 11px; + } + .marketing-text p { + font-size: 35px; + } + .quick-thumb-content .modal-lg { + margin: 0 auto; + } + .marketing-text h3 { + font-size: 50px; + margin-bottom: 15px; + } + .header-menu-list ul.common_ddown.megamenu { + left: -160px; + width: 930px; + } + .header-menu-list>li>ul.common_ddown li a { + font-size: 13px; + } + .slider-area.fixed-height .single-slide .row { + height: 600px; + } + .container-fluid .slider-content { + max-width: 70%; + } + .slider-content h4 { + font-size: 20px; + margin-bottom: 15px; + } + .slider-content h1 { + font-size: 50px; + line-height: 60px; + margin-bottom: 20px; + } + .slider-content .small-btn a { + margin-top: 40px; + } + .main-feature-icon { + height: 50px; + width: 50px; + line-height: 50px; + font-size: 20px; + } + .main-feature-content h4 { + font-size: 16px; + } + .pro-tabs-area li a { + padding: 0 15px; + } + .footer_contact li span { + width: 25%; + } + .promotion-content h2 { + font-size: 40px; + } + .stroller-content h3 { + font-size: 50px; + } + .footer_widget { + margin-bottom: 30px; + } + .footer-top.adp_bottom { + padding-bottom: 50px; + } + .single-feature-logo { + margin-bottom: 30px; + } + .feature-logo-area.adp_bottom { + padding-bottom: 30px; + } + .wrapper.wrapper-boxed-layout { + margin: 0 50px; + width: calc(100% - 100px); + } + .wrapper-boxed-layout .header-sticky.sticky { + left: 50px; + right: 50px; + } + .class_list_view .single-template-product .pro-img { + width: 40%; + } + .class_list_view .single-template-product .product_content_wrap { + width: 60%; + } + .product_additional_information button { + margin-bottom: 5px; + } + .pv_class { + min-width: 100px; + } + .quick-thumb-content .modal-lg { + max-width: 800px; + } + .small-list-title a { + font-size: 14px; +} +.grid-blog-content h4 a { +font-size: 16px; +} + +} + + +/*=============== Medium (md) Device ===============*/ + +@media (min-width: 768px) and (max-width: 991px) { + .slider-area.fixed-height .single-slide .row { + height: 500px; + } + .container-fluid .slider-content { + max-width: 80%; + } + .single-slide .slider-content p { + font-size: 15px; + max-width: 100%; + } + .slider-content .small-btn a { + margin-top: 30px; + padding: 0 30px; + height: 40px; + line-height: 40px; + font-size: 14px; + } + .main-feature-center-img { + margin: auto; + max-width: 400px; + width: 100%; + } + .main-features .single-main-features:not(:last-child) { + margin-bottom: 20px; + } + .main-features-bottom .single-main-features { + padding-left: 0; + } + .main-features-top .single-main-features { + padding-right: 0; + } + .main-feature-icon { + height: 60px; + width: 60px; + line-height: 60px; + font-size: 25px; + } + .feature_left_side, + .feature_right_side { + margin-top: 30px; + } + .main-feature-content h4 { + font-size: 16px; + } + .slider-content h1 { + font-size: 40px; + line-height: 50px; + margin-bottom: 20px; + } + .slider-content h4 { + font-size: 18px; + margin-bottom: 15px; + } + .pro-tabs-area li { + width: 25%; + margin-bottom: 15px; + } + .single-promotion-wrapper .promotion-img { + margin-bottom: 20px; + } + .product-widget-chunk-wrapper { + margin-bottom: 20px; + } + .product-widget-area.small_with_banner.adp_bottom { + padding-bottom: 40px; + } + .single-feature-logo { + margin-bottom: 20px; + } + .feature-logo-area.adp_bottom { + padding-bottom: 40px; + } + .footer_widget { + margin-bottom: 30px; + } + .footer-top.adp_bottom { + padding-bottom: 50px; + } + .cart-box { + padding-right: 40px; + } + .mean-container .mean-nav ul { + max-height: 300px; + } + .sticky .mean-container a.meanmenu-reveal { + top: -37px; + } + .subscribe_area_pop { + max-width: 700px; + } + .promotion-content .promotion-social { + margin-top: 15px; + } + .promotion-social.social-icon ul li a { + height: 30px; + line-height: 30px; + padding: 0 8px; + } + .discount-offer-wrapper h1 { + font-size: 40px; + margin-bottom: 10px; + line-height: 40px; + } + .promotion-content h3 { + font-size: 24px; + margin-bottom: 10px; + } + .promotion-content .prodcut-price { + font-size: 18px; + margin-top: 10px; + } + .small-btn a { + margin-top: 15px; + } + .promotion-countdown-inner .product-countdown .count { + width: 70px; + height: 70px; + padding: 7px; + margin-right: 20px; + } + .promotion-content { + padding-left: 0; + } + .promotion-countdown-inner .product-countdown .count p { + line-height: 26px; + font-size: 22px; + } + .promotion-countdown-inner { + padding-bottom: 10px; + padding-top: 10px; + } + .social-icon ul li { + margin-right: 5px; + margin-bottom: 5px; + } + .promotion-product-area { + padding: 60px 0; + } + .best_feature_area .single-contact { + margin-top: 30px; + } + .stroller-content h4 { + font-size: 16px; + } + .stroller-content h3 { + font-size: 40px; + } + .stroller-content h3 { + font-size: 40px; + margin-bottom: 20px; + } + .stroller-content .small-btn a { + margin-top: 20px; + } + .stroller-content p { + font-size: 16px; + margin-bottom: 20px; + line-height: 24px; + } + .countdown_promotion_banner { + padding-top: 80px; + padding-bottom: 80px; + } + .pricing-table-area .single-pricing-table { + margin-bottom: 20px; + } + .pricing-table-area.adp_bottom { + padding-bottom: 60px; + } + .our-team { + margin-bottom: 20px; + } + .our-team-wrapper.adp_bottom { + padding-bottom: 60px; + } + .section-title h2 { + font-size: 26px; + padding-bottom: 20px; + } + .promotion-content h2 { + font-size: 40px; + } + .best_feature_content h3 { + font-size: 32px; + } + .main-features.best_pet_food .single-main-features { + width: 50%; + margin-bottom: 30px !important; + } + .main-features.best_pet_food .main-features-top, + .main-features.best_pet_food .main-features-bottom { + display: flex; + flex-wrap: wrap; + } + .main-features.best_pet_food .main-feature-center-img { + margin-bottom: 20px; + } + .wrapper.wrapper-boxed-layout { + margin: 0 50px; + width: calc(100% - 100px); + } + .wrapper-boxed-layout .header-sticky.sticky { + left: 50px; + right: 50px; + } + .wrapper-boxed-layout .container-fluid { + padding-left: 15px; + padding-right: 15px; + } + .wrapper-boxed-layout .subscribe_area_pop { + margin-left: 0; + } + .sidebar.shop-sidebar { + margin-top: 50px; + } + .product_additional_information button { + margin-bottom: 5px; + } + .pv_class { + min-width: 100px; + } + .product_details_wrap_3 .thubnail-desc, + .product_details_wrap_2 .thubnail-desc { + margin-top: 30px; + } + .cart-main-area .table-responsive .table>tbody>tr>td { + min-width: 130px; + } + .cart-main-area .table-responsive .table>tbody>tr>td { + min-width: 170px; + } + .cart-main-area table td.product-name { + min-width: 230px; + } + .cart-main-area.wish-list .product-add-to-cart a { + font-weight: 500; + padding: 10px 15px; + width: 150px; + } + .quick-thumb-content .modal-lg { + max-width: 710px; + } + .click_common { + display: none; + } + .header-style-five .text-center, + .header-style-six .text-center { + text-align: left !important; + } + .container-fluid { + padding-left: 40px; + padding-right: 40px; + } + .header-sticky .logo_hide_class { + display: block; + } + .header-sticky .settings_cart_hide { + display: block; + } + .header_eight_top .cart-box { + display: none; + } + .header_eight_top .logo { + display: none; + } + .header_msg p { + text-align: center; + margin-top: 10px; + } + .header-style-eight .categorie-search-box { + right: -150px; + } + .subscribe_area_left h1 { + font-size: 30px; + } + .header-style-seven .mean-container a.meanmenu-reveal { + top: -42px; + } + .error-text>p { + padding: 0; + } + .class_list_view .single-template-product .pro-img { + width: 40%; + } +} + + +/*=============== Small (sm) Device ===============*/ + +@media (max-width: 767px) { + .wrapper { + overflow: hidden; + } + .container-fluid { + padding-left: 15px; + padding-right: 15px; + } + .cart-box { + padding-right: 40px; + } + .cart-box>ul>li:not(:first-child) { + margin-left: 20px; + } + .logo { + max-width: 110px; + } + .sticky .mean-container a.meanmenu-reveal { + top: -35px; + } + .slider-area.fixed-height .single-slide .row { + height: 400px; + } + .slider-content h1 { + font-size: 30px; + line-height: 40px; + margin-bottom: 15px; + } + .container-fluid .slider-content { + max-width: 100%; + } + .slider-content h4 { + font-size: 18px; + margin-bottom: 15px; + } + .single-slide .slider-content p { + font-size: 14px; + line-height: 22px; + max-width: 100%; + } + .slider-content .small-btn a { + margin-top: 25px; + padding: 0 30px; + height: 40px; + line-height: 40px; + font-size: 14px; + } + .default_arrow .slick-arrow { + font-size: 20px; + height: 50px; + width: 50px; + line-height: 50px; + } + .adp_top { + padding-top: 50px; + } + .adp_bottom { + padding-bottom: 50px; + } + .section-title>span { + font-size: 16px; + line-height: 20px; + } + .section-title h2 { + font-size: 24px; + padding-bottom: 15px; + } + .main-features .single-main-features:not(:last-child) { + margin-bottom: 20px; + } + .single_feature_wrapper .feature_img_side { + order: 2; + margin: 20px 0; + } + .main-feature-icon { + height: 60px; + width: 60px; + line-height: 60px; + font-size: 24px; + } + .pro-tabs-area li { + width: 50%; + padding-right: 5px; + margin-bottom: 5px; + } + .collective-product.adp_bottom { + padding-bottom: 30px; + } + .featured-product.adp_bottom { + padding-bottom: 30px; + } + .testmonial-area.adp_bottom { + padding-bottom: 30px; + } + .portfolio-area.adp_bottom { + padding-bottom: 30px; + } + .food-category-area.adp_bottom { + padding-bottom: 30px; + } + .banner-area.adp_bottom { + padding-bottom: 30px; + } + .promotion-content h2 { + font-size: 30px; + margin-bottom: 10px; + } + .promoton_price { + font-size: 24px; + } + .psl_price { + font-size: 26px; + } + .promotion-img { + margin-bottom: 15px; + } + .product-widget-area.small_with_banner.adp_bottom { + padding-bottom: 50px; + } + .feature-logo-area.adp_bottom { + padding-bottom: 40px; + } + .service-area.adp_bottom { + padding-bottom: 40px; + } + .single-feature-logo { + margin-bottom: 10px; + } + .footer_widget { + margin-bottom: 30px; + } + .footer-top.adp_bottom { + padding-bottom: 20px; + } + .footer-copyright { + margin-bottom: 10px; + } + .footer-bottom-right { + margin-bottom: 10px; + } + .footer-bottom { + padding-top: 15px; + padding-bottom: 15px; + } + .header-menu-list>li, + .cart-box>ul>li { + padding: 25px 0; + position: relative; + } + .mean-container a.meanmenu-reveal { + top: -45px; + } + .popup_wrapper { + display: none; + } + .cart-box-width { + right: -80px; + } + .promotion-content { + padding-left: 0; + } + .promotion-content .promotion-social { + margin-top: 15px; + } + .promotion-social.social-icon ul li a { + height: 30px; + line-height: 30px; + padding: 0 8px; + } + .discount-offer-wrapper h1 { + font-size: 40px; + margin-bottom: 10px; + line-height: 40px; + } + .promotion-content h3 { + font-size: 24px; + margin-bottom: 10px; + } + .promotion-content .prodcut-price { + font-size: 18px; + margin-top: 10px; + } + .small-btn a { + margin-top: 15px; + } + .promotion-countdown-inner .product-countdown .count { + width: 70px; + height: 70px; + padding: 7px; + margin-right: 10px; + } + .promotion-content { + padding-left: 0; + } + .promotion-countdown-inner .product-countdown .count p { + line-height: 26px; + font-size: 22px; + } + .promotion-countdown-inner { + padding-bottom: 10px; + padding-top: 10px; + } + .social-icon ul li { + margin-right: 5px; + margin-bottom: 5px; + } + .promotion-product-area { + padding: 60px 0; + } + .promotion-content { + margin-top: 20px; + } + .footer-copyright { + text-align: center; + } + .support_pay.text-end { + text-align: center !important; + } + .default_arrow.small_arrow .slick-arrow { + height: 40px; + width: 40px; + line-height: 40px; + font-size: 20px; + } + .best_feature_content h3 { + font-size: 24px; + } + .single_care_feature { + max-width: 100%; + } + .single-contact { + margin-top: 30px; + } + .stroller-content h4 { + font-size: 16px; + } + .stroller-content h3 { + font-size: 36px; + margin-bottom: 15px; + } + .stroller-content p { + font-size: 16px; + margin-bottom: 20px; + line-height: 22px; + } + .stroller-content .small-btn a { + margin-top: 30px; + } + .stroller-img { + margin-top: 30px; + } + .countdown_promotion_banner { + padding-top: 60px; + padding-bottom: 60px; + } + .testmonial-content h4 { + font-size: 20px; + } + .pricing-table-area .single-pricing-table h4 { + font-size: 20px; + } + .pricing-table-area .single-pricing-table { + margin-bottom: 20px; + } + .pricing-table-area.adp_bottom { + padding-bottom: 30px; + } + .our-team { + margin-bottom: 20px; + } + .our-team-wrapper.adp_bottom { + padding-bottom: 30px; + } + .footer_contact li span { + width: 25%; + } + .container .slider-content { + max-width: 100%; + } + .best_pet_food .main-feature-content h4 { + font-size: 18px; + } + .best_pet_food .main-feature-img { + max-width: 25%; + } + .best_pet_food .main-feature-content { + max-width: 75%; + } + .best_pet_food .main-features-top .main-feature-content { + padding-right: 15px; + } + .main-features.best_pet_food .single-main-features:not(:last-child) { + margin-bottom: 20px; + } + .best_pet_food .main-feature-center-img { + margin: 20px 0; + } + .best_pet_food .main-features-top .single-main-features { + justify-content: left; + } + .lookbook_pointer { + display: none; + } + .special_minimal_slider .single-slide .slider-content { + padding: 10px; + } + .special_minimal_slider .single-slide .slider-content h1 { + font-size: 24px; + line-height: 32px; + margin-bottom: 10px; + } + .special_minimal_slider .single-slide .slider-content h4 { + margin-bottom: 5px; + font-size: 16px; + } + .special_minimal_slider .single-slide .slider-content .small-btn a { + margin-top: 20px; + padding: 0 20px; + height: 35px; + line-height: 34px; + font-size: 12px; + } + .apointment-contact-section .single-contact .contact-form .con-head h3 { + font-size: 20px; + } + .wrapper.wrapper-boxed-layout { + margin: 0; + width: calc(100% - 0px); + } + .wrapper-boxed-layout .header-sticky.sticky { + left: 0; + right: 0; + } + .sidebar.shop-sidebar { + margin-top: 50px; + } + .shop-pagination-area .pagi_left { + text-align: center; + margin-bottom: 10px; + } + .shop-pagination-area.border-default { + padding: 10px; + } + .grid-list-top { + flex-wrap: wrap; + } + .grid-list-top .nice-select.sorter { + width: 90%; + } + .grid-list-top .nice-select .list { + z-index: 999; + } + .class_list_view .single-template-product { + flex-wrap: wrap; + } + .class_list_view .single-template-product .pro-img { + width: 100%; + } + .class_list_view .single-template-product .product_content_wrap { + width: 100%; + } + .breadcrumb-area { + padding: 50px 0; + } + .product_additional_information button { + margin-bottom: 5px; + } + .thubnail-desc { + margin-top: 20px; + } + .quantity { + width: 60px; + } + .details_action_wraper a { + padding: 0px 10px; + } + .main-product-thumbnail .thubnail-desc { + margin-top: 30px; + } + .product-varient-wrapper { + flex-wrap: wrap; + } + .pv_class { + margin-bottom: 10px; + } + .modal-body h4 { + font-size: 20px; + } + .cart-main-area .table-responsive .table>tbody>tr>td { + min-width: 130px; + } + .cart-main-area .table-responsive .table>tbody>tr>td { + min-width: 170px; + } + .cart-main-area table td.product-name { + min-width: 230px; + } + .cart-main-area.wish-list .product-add-to-cart a { + font-weight: 500; + padding: 10px 15px; + width: 150px; + } + .your-order { + padding: 10px; + } + .buttons-cart a { + margin-top: 5px; + } + .cart_totals h2 { + font-size: 20px; + float: left; + } + .blog-dtl-header { + font-size: 18px; + } + .single-comment { + flex-wrap: wrap; + } + .single-comment .comment-img { + margin-right: 0; + width: 100%; + margin-bottom: 10px; + } + .tags-social .tags { + margin-bottom: 10px; + } + .meta-box.meta-blog { + margin-bottom: 10px; + margin-top: 10px; + padding-bottom: 10px; + } + .single-fondle-blog { + margin-bottom: 20px; + } + .blog-area .row [class*="col-"] { + margin-bottom: 20px; + } + .skill-area .login-btn { + margin-top: 12px; + } + .quick-thumb-content .modal-lg { + margin: 30px auto; + } + .modal-content .modal-body { + padding: 0 20px 20px; + } + .thubnail-desc h3 { + font-size: 20px; + } + .pv_class { + min-width: 100%; + } + .details_action_wraper a { + width: 140px; + margin-bottom: 10px; + } + .details_action_wraper ul { + flex-wrap: wrap; + } + .categorie-search-box { + right: -100px; + width: 275px; + } + .currency-selector.cart-box-width { + right: -45px; + } + .click_common { + display: none; + } + .row.header_eight_top { + display: none; + } + .header-style-eight .logo_hide_class { + display: block; + } + .header-style-eight .settings_cart_hide { + display: block; + } + .header-style-eight .mean-container a.meanmenu-reveal { + top: -50px; + } + .small-list-title a { + font-size: 14px; + } + .error-text>p { + padding: 0; + } + #search-form { + width: 100%; + } + .find_error { + flex-wrap: wrap; + } + .btn_error { + margin-top: 20px; + } +} + + +/* landscape Mobile :480px. */ + +@media only screen and (min-width: 480px) and (max-width: 767px) { + .grid-list-view { + width: 50%; + } + .buttons-cart a { + margin-top: 0; + } + .single-feature-logo__image { + width: 10%; + } + #search-form { + width: 300px; + } +} \ No newline at end of file diff --git a/html/css/slick-slider.css b/html/css/slick-slider.css new file mode 100644 index 0000000..eb0e287 --- /dev/null +++ b/html/css/slick-slider.css @@ -0,0 +1,16 @@ + +/* + + Slick Slider + Version: 1.8.1 + Author: Ken Wheeler + Website: http://kenwheeler.github.io + Docs: http://kenwheeler.github.io/slick + Repo: http://github.com/kenwheeler/slick + Issues: http://github.com/kenwheeler/slick/issues + */ + .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} + + + + diff --git a/html/faq.html b/html/faq.html new file mode 100644 index 0000000..08045c4 --- /dev/null +++ b/html/faq.html @@ -0,0 +1,980 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + + + + +
+ +
+
+
+
+ #Experience +

Frequently AQ

+
+
+
+
+
+ +
+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent nisl lorem, dictum id pellentesque at, vestibulum ut arcu. Curabitur erat libero, egestas eu tincidunt ac, rutrum ac justo. Vivamus condimentum laoreet lectus, blandit posuere tortor aliquam vitae. Curabitur molestie eros.

+
+
+
+
+ +
+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent nisl lorem, dictum id pellentesque at, vestibulum ut arcu. Curabitur erat libero, egestas eu tincidunt ac, rutrum ac justo. Vivamus condimentum laoreet lectus, blandit posuere tortor aliquam vitae. Curabitur molestie eros.

+
+
+
+
+ +
+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent nisl lorem, dictum id pellentesque at, vestibulum ut arcu. Curabitur erat libero, egestas eu tincidunt ac, rutrum ac justo. Vivamus condimentum laoreet lectus, blandit posuere tortor aliquam vitae. Curabitur molestie eros.

+
+
+
+
+ +
+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent nisl lorem, dictum id pellentesque at, vestibulum ut arcu. Curabitur erat libero, egestas eu tincidunt ac, rutrum ac justo. Vivamus condimentum laoreet lectus, blandit posuere tortor aliquam vitae. Curabitur molestie eros.

+
+
+
+
+ +
+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent nisl lorem, dictum id pellentesque at, vestibulum ut arcu. Curabitur erat libero, egestas eu tincidunt ac, rutrum ac justo. Vivamus condimentum laoreet lectus, blandit posuere tortor aliquam vitae. Curabitur molestie eros.

+
+
+
+
+
+
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/fonts/Stroke-Gap-Icons.eot b/html/fonts/Stroke-Gap-Icons.eot new file mode 100644 index 0000000..5889559 Binary files /dev/null and b/html/fonts/Stroke-Gap-Icons.eot differ diff --git a/html/fonts/Stroke-Gap-Icons.svg b/html/fonts/Stroke-Gap-Icons.svg new file mode 100644 index 0000000..ed8a2e9 --- /dev/null +++ b/html/fonts/Stroke-Gap-Icons.svg @@ -0,0 +1,224 @@ + + + + + +{ + "fontFamily": "Stroke-Gap-Icons", + "majorVersion": 1, + "minorVersion": 0, + "version": "Version 1.0", + "fontId": "Stroke-Gap-Icons", + "psName": "Stroke-Gap-Icons", + "subFamily": "Regular", + "fullName": "Stroke-Gap-Icons", + "description": "Generated by IcoMoon" +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/fonts/Stroke-Gap-Icons.ttf b/html/fonts/Stroke-Gap-Icons.ttf new file mode 100644 index 0000000..16632f2 Binary files /dev/null and b/html/fonts/Stroke-Gap-Icons.ttf differ diff --git a/html/fonts/Stroke-Gap-Icons.woff b/html/fonts/Stroke-Gap-Icons.woff new file mode 100644 index 0000000..f1f7d5c Binary files /dev/null and b/html/fonts/Stroke-Gap-Icons.woff differ diff --git a/html/fonts/fontawesome-webfont.eot b/html/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/html/fonts/fontawesome-webfont.eot differ diff --git a/html/fonts/fontawesome-webfont.svg b/html/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..5c01a2c --- /dev/null +++ b/html/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/html/fonts/fontawesome-webfont.ttf b/html/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/html/fonts/fontawesome-webfont.ttf differ diff --git a/html/fonts/fontawesome-webfont.woff b/html/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/html/fonts/fontawesome-webfont.woff differ diff --git a/html/fonts/fontawesome-webfont.woff2 b/html/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/html/fonts/fontawesome-webfont.woff2 differ diff --git a/html/fonts/georgia_italic-webfont.woff b/html/fonts/georgia_italic-webfont.woff new file mode 100644 index 0000000..b00b8bc Binary files /dev/null and b/html/fonts/georgia_italic-webfont.woff differ diff --git a/html/fonts/georgia_italic-webfont.woff2 b/html/fonts/georgia_italic-webfont.woff2 new file mode 100644 index 0000000..baee6d2 Binary files /dev/null and b/html/fonts/georgia_italic-webfont.woff2 differ diff --git a/html/fonts/icofont.eot b/html/fonts/icofont.eot new file mode 100644 index 0000000..56e15db Binary files /dev/null and b/html/fonts/icofont.eot differ diff --git a/html/fonts/icofont.svg b/html/fonts/icofont.svg new file mode 100644 index 0000000..8535ec6 --- /dev/null +++ b/html/fonts/icofont.svg @@ -0,0 +1,2105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/fonts/icofont.ttf b/html/fonts/icofont.ttf new file mode 100644 index 0000000..ba6d235 Binary files /dev/null and b/html/fonts/icofont.ttf differ diff --git a/html/fonts/icofont.woff b/html/fonts/icofont.woff new file mode 100644 index 0000000..48002ce Binary files /dev/null and b/html/fonts/icofont.woff differ diff --git a/html/fonts/icofont.woff2 b/html/fonts/icofont.woff2 new file mode 100644 index 0000000..75f03d7 Binary files /dev/null and b/html/fonts/icofont.woff2 differ diff --git a/html/img/404.png b/html/img/404.png new file mode 100644 index 0000000..64b7c78 Binary files /dev/null and b/html/img/404.png differ diff --git a/html/img/banner/banner_1.png b/html/img/banner/banner_1.png new file mode 100644 index 0000000..8f19532 Binary files /dev/null and b/html/img/banner/banner_1.png differ diff --git a/html/img/banner/banner_2.png b/html/img/banner/banner_2.png new file mode 100644 index 0000000..aea145f Binary files /dev/null and b/html/img/banner/banner_2.png differ diff --git a/html/img/banner/banner_3.png b/html/img/banner/banner_3.png new file mode 100644 index 0000000..9d9d1dc Binary files /dev/null and b/html/img/banner/banner_3.png differ diff --git a/html/img/banner/banner_4.png b/html/img/banner/banner_4.png new file mode 100644 index 0000000..25756b7 Binary files /dev/null and b/html/img/banner/banner_4.png differ diff --git a/html/img/banner/banner_5.png b/html/img/banner/banner_5.png new file mode 100644 index 0000000..0f24b23 Binary files /dev/null and b/html/img/banner/banner_5.png differ diff --git a/html/img/banner/banner_6.png b/html/img/banner/banner_6.png new file mode 100644 index 0000000..0d2b3b8 Binary files /dev/null and b/html/img/banner/banner_6.png differ diff --git a/html/img/banner/banner_7.png b/html/img/banner/banner_7.png new file mode 100644 index 0000000..d29e17e Binary files /dev/null and b/html/img/banner/banner_7.png differ diff --git a/html/img/banner/banner_8.png b/html/img/banner/banner_8.png new file mode 100644 index 0000000..9a87919 Binary files /dev/null and b/html/img/banner/banner_8.png differ diff --git a/html/img/banner/best_feature.png b/html/img/banner/best_feature.png new file mode 100644 index 0000000..95feb71 Binary files /dev/null and b/html/img/banner/best_feature.png differ diff --git a/html/img/banner/best_feature_2.png b/html/img/banner/best_feature_2.png new file mode 100644 index 0000000..8293799 Binary files /dev/null and b/html/img/banner/best_feature_2.png differ diff --git a/html/img/banner/best_item_1.png b/html/img/banner/best_item_1.png new file mode 100644 index 0000000..ce47938 Binary files /dev/null and b/html/img/banner/best_item_1.png differ diff --git a/html/img/banner/best_item_2.png b/html/img/banner/best_item_2.png new file mode 100644 index 0000000..d1bebcd Binary files /dev/null and b/html/img/banner/best_item_2.png differ diff --git a/html/img/banner/best_pet_food.png b/html/img/banner/best_pet_food.png new file mode 100644 index 0000000..f1e2432 Binary files /dev/null and b/html/img/banner/best_pet_food.png differ diff --git a/html/img/banner/best_pet_food_1.png b/html/img/banner/best_pet_food_1.png new file mode 100644 index 0000000..ef23d6f Binary files /dev/null and b/html/img/banner/best_pet_food_1.png differ diff --git a/html/img/banner/best_pet_food_2.png b/html/img/banner/best_pet_food_2.png new file mode 100644 index 0000000..fade074 Binary files /dev/null and b/html/img/banner/best_pet_food_2.png differ diff --git a/html/img/banner/best_pet_food_3.png b/html/img/banner/best_pet_food_3.png new file mode 100644 index 0000000..c6ee651 Binary files /dev/null and b/html/img/banner/best_pet_food_3.png differ diff --git a/html/img/banner/lookbook_banner - Copy.jpg b/html/img/banner/lookbook_banner - Copy.jpg new file mode 100644 index 0000000..0961f85 Binary files /dev/null and b/html/img/banner/lookbook_banner - Copy.jpg differ diff --git a/html/img/banner/lookbook_banner.jpg b/html/img/banner/lookbook_banner.jpg new file mode 100644 index 0000000..223aa3f Binary files /dev/null and b/html/img/banner/lookbook_banner.jpg differ diff --git a/html/img/banner/mega_menu.png b/html/img/banner/mega_menu.png new file mode 100644 index 0000000..2d74ad8 Binary files /dev/null and b/html/img/banner/mega_menu.png differ diff --git a/html/img/banner/mega_menu_2.png b/html/img/banner/mega_menu_2.png new file mode 100644 index 0000000..d8ab69c Binary files /dev/null and b/html/img/banner/mega_menu_2.png differ diff --git a/html/img/banner/product_banner.png b/html/img/banner/product_banner.png new file mode 100644 index 0000000..613c6bd Binary files /dev/null and b/html/img/banner/product_banner.png differ diff --git a/html/img/banner/product_banner_2.png b/html/img/banner/product_banner_2.png new file mode 100644 index 0000000..8af384f Binary files /dev/null and b/html/img/banner/product_banner_2.png differ diff --git a/html/img/banner/product_banner_3.png b/html/img/banner/product_banner_3.png new file mode 100644 index 0000000..fd8bb37 Binary files /dev/null and b/html/img/banner/product_banner_3.png differ diff --git a/html/img/banner/product_banner_4.png b/html/img/banner/product_banner_4.png new file mode 100644 index 0000000..89334ca Binary files /dev/null and b/html/img/banner/product_banner_4.png differ diff --git a/html/img/banner/promotoion_banner_1.jpg b/html/img/banner/promotoion_banner_1.jpg new file mode 100644 index 0000000..c4bdb29 Binary files /dev/null and b/html/img/banner/promotoion_banner_1.jpg differ diff --git a/html/img/banner/promotoion_banner_2.jpg b/html/img/banner/promotoion_banner_2.jpg new file mode 100644 index 0000000..73a4c2d Binary files /dev/null and b/html/img/banner/promotoion_banner_2.jpg differ diff --git a/html/img/banner/summer_sale.jpg b/html/img/banner/summer_sale.jpg new file mode 100644 index 0000000..a3ca8ba Binary files /dev/null and b/html/img/banner/summer_sale.jpg differ diff --git a/html/img/bg/app_bg.jpg b/html/img/bg/app_bg.jpg new file mode 100644 index 0000000..f26167c Binary files /dev/null and b/html/img/bg/app_bg.jpg differ diff --git a/html/img/bg/bg1.jpg b/html/img/bg/bg1.jpg new file mode 100644 index 0000000..14e6ac0 Binary files /dev/null and b/html/img/bg/bg1.jpg differ diff --git a/html/img/bg/breadcrumb_bg.jpg b/html/img/bg/breadcrumb_bg.jpg new file mode 100644 index 0000000..e7283b0 Binary files /dev/null and b/html/img/bg/breadcrumb_bg.jpg differ diff --git a/html/img/bg/breadcrumb_bg_2.jpg b/html/img/bg/breadcrumb_bg_2.jpg new file mode 100644 index 0000000..8e1d44e Binary files /dev/null and b/html/img/bg/breadcrumb_bg_2.jpg differ diff --git a/html/img/bg/common_bg.jpg b/html/img/bg/common_bg.jpg new file mode 100644 index 0000000..97dd072 Binary files /dev/null and b/html/img/bg/common_bg.jpg differ diff --git a/html/img/bg/countdown_img.png b/html/img/bg/countdown_img.png new file mode 100644 index 0000000..2926100 Binary files /dev/null and b/html/img/bg/countdown_img.png differ diff --git a/html/img/bg/footer_bg.jpg b/html/img/bg/footer_bg.jpg new file mode 100644 index 0000000..9ee7c2a Binary files /dev/null and b/html/img/bg/footer_bg.jpg differ diff --git a/html/img/bg/footer_bg_2.jpg b/html/img/bg/footer_bg_2.jpg new file mode 100644 index 0000000..ce68ee1 Binary files /dev/null and b/html/img/bg/footer_bg_2.jpg differ diff --git a/html/img/bg/promotion-1.jpg b/html/img/bg/promotion-1.jpg new file mode 100644 index 0000000..cf005c5 Binary files /dev/null and b/html/img/bg/promotion-1.jpg differ diff --git a/html/img/bg/team-bg.png b/html/img/bg/team-bg.png new file mode 100644 index 0000000..03bed5c Binary files /dev/null and b/html/img/bg/team-bg.png differ diff --git a/html/img/blog/blg10.png b/html/img/blog/blg10.png new file mode 100644 index 0000000..48afc45 Binary files /dev/null and b/html/img/blog/blg10.png differ diff --git a/html/img/blog/blg11.png b/html/img/blog/blg11.png new file mode 100644 index 0000000..e91e810 Binary files /dev/null and b/html/img/blog/blg11.png differ diff --git a/html/img/blog/blg8.png b/html/img/blog/blg8.png new file mode 100644 index 0000000..2af1554 Binary files /dev/null and b/html/img/blog/blg8.png differ diff --git a/html/img/blog/blg9.png b/html/img/blog/blg9.png new file mode 100644 index 0000000..08a417d Binary files /dev/null and b/html/img/blog/blg9.png differ diff --git a/html/img/blog/blog_1.jpg b/html/img/blog/blog_1.jpg new file mode 100644 index 0000000..dea0f65 Binary files /dev/null and b/html/img/blog/blog_1.jpg differ diff --git a/html/img/blog/blog_2.jpg b/html/img/blog/blog_2.jpg new file mode 100644 index 0000000..9ed0ae4 Binary files /dev/null and b/html/img/blog/blog_2.jpg differ diff --git a/html/img/blog/blog_3.jpg b/html/img/blog/blog_3.jpg new file mode 100644 index 0000000..3f920e5 Binary files /dev/null and b/html/img/blog/blog_3.jpg differ diff --git a/html/img/blog/blog_4.jpg b/html/img/blog/blog_4.jpg new file mode 100644 index 0000000..3868974 Binary files /dev/null and b/html/img/blog/blog_4.jpg differ diff --git a/html/img/blog/blog_5.jpg b/html/img/blog/blog_5.jpg new file mode 100644 index 0000000..99ccd93 Binary files /dev/null and b/html/img/blog/blog_5.jpg differ diff --git a/html/img/blog/blog_6.jpg b/html/img/blog/blog_6.jpg new file mode 100644 index 0000000..74ae245 Binary files /dev/null and b/html/img/blog/blog_6.jpg differ diff --git a/html/img/blog/blog_details.jpg b/html/img/blog/blog_details.jpg new file mode 100644 index 0000000..8fded7b Binary files /dev/null and b/html/img/blog/blog_details.jpg differ diff --git a/html/img/blog/full_slider_10.jpg b/html/img/blog/full_slider_10.jpg new file mode 100644 index 0000000..8f4cb1e Binary files /dev/null and b/html/img/blog/full_slider_10.jpg differ diff --git a/html/img/blog/full_slider_5.jpg b/html/img/blog/full_slider_5.jpg new file mode 100644 index 0000000..950e27c Binary files /dev/null and b/html/img/blog/full_slider_5.jpg differ diff --git a/html/img/blog/full_slider_8.jpg b/html/img/blog/full_slider_8.jpg new file mode 100644 index 0000000..d4befa6 Binary files /dev/null and b/html/img/blog/full_slider_8.jpg differ diff --git a/html/img/blog/slider_1.jpg b/html/img/blog/slider_1.jpg new file mode 100644 index 0000000..9319328 Binary files /dev/null and b/html/img/blog/slider_1.jpg differ diff --git a/html/img/blog/slider_10.jpg b/html/img/blog/slider_10.jpg new file mode 100644 index 0000000..a11b0e6 Binary files /dev/null and b/html/img/blog/slider_10.jpg differ diff --git a/html/img/blog/slider_13.jpg b/html/img/blog/slider_13.jpg new file mode 100644 index 0000000..30708c3 Binary files /dev/null and b/html/img/blog/slider_13.jpg differ diff --git a/html/img/blog/slider_5.jpg b/html/img/blog/slider_5.jpg new file mode 100644 index 0000000..8d86982 Binary files /dev/null and b/html/img/blog/slider_5.jpg differ diff --git a/html/img/blog/slider_6.jpg b/html/img/blog/slider_6.jpg new file mode 100644 index 0000000..165f98e Binary files /dev/null and b/html/img/blog/slider_6.jpg differ diff --git a/html/img/brand/b1.png b/html/img/brand/b1.png new file mode 100644 index 0000000..8d3adba Binary files /dev/null and b/html/img/brand/b1.png differ diff --git a/html/img/brand/b2.png b/html/img/brand/b2.png new file mode 100644 index 0000000..84e3d46 Binary files /dev/null and b/html/img/brand/b2.png differ diff --git a/html/img/brand/b3.png b/html/img/brand/b3.png new file mode 100644 index 0000000..618d94d Binary files /dev/null and b/html/img/brand/b3.png differ diff --git a/html/img/brand/b4.png b/html/img/brand/b4.png new file mode 100644 index 0000000..d32f9ad Binary files /dev/null and b/html/img/brand/b4.png differ diff --git a/html/img/brand/b5.png b/html/img/brand/b5.png new file mode 100644 index 0000000..a27b66b Binary files /dev/null and b/html/img/brand/b5.png differ diff --git a/html/img/favicon.png b/html/img/favicon.png new file mode 100644 index 0000000..13d1307 Binary files /dev/null and b/html/img/favicon.png differ diff --git a/html/img/icons/1.png b/html/img/icons/1.png new file mode 100644 index 0000000..e4f8e97 Binary files /dev/null and b/html/img/icons/1.png differ diff --git a/html/img/icons/10.png b/html/img/icons/10.png new file mode 100644 index 0000000..746ede6 Binary files /dev/null and b/html/img/icons/10.png differ diff --git a/html/img/icons/11.png b/html/img/icons/11.png new file mode 100644 index 0000000..a747765 Binary files /dev/null and b/html/img/icons/11.png differ diff --git a/html/img/icons/12.png b/html/img/icons/12.png new file mode 100644 index 0000000..3bac7a6 Binary files /dev/null and b/html/img/icons/12.png differ diff --git a/html/img/icons/13.png b/html/img/icons/13.png new file mode 100644 index 0000000..dd68ebb Binary files /dev/null and b/html/img/icons/13.png differ diff --git a/html/img/icons/14.png b/html/img/icons/14.png new file mode 100644 index 0000000..132b232 Binary files /dev/null and b/html/img/icons/14.png differ diff --git a/html/img/icons/15.png b/html/img/icons/15.png new file mode 100644 index 0000000..c73567f Binary files /dev/null and b/html/img/icons/15.png differ diff --git a/html/img/icons/16.png b/html/img/icons/16.png new file mode 100644 index 0000000..92557ba Binary files /dev/null and b/html/img/icons/16.png differ diff --git a/html/img/icons/2.png b/html/img/icons/2.png new file mode 100644 index 0000000..d5b6156 Binary files /dev/null and b/html/img/icons/2.png differ diff --git a/html/img/icons/3.png b/html/img/icons/3.png new file mode 100644 index 0000000..02595c0 Binary files /dev/null and b/html/img/icons/3.png differ diff --git a/html/img/icons/4.png b/html/img/icons/4.png new file mode 100644 index 0000000..c11a77a Binary files /dev/null and b/html/img/icons/4.png differ diff --git a/html/img/icons/5.png b/html/img/icons/5.png new file mode 100644 index 0000000..2844d7e Binary files /dev/null and b/html/img/icons/5.png differ diff --git a/html/img/icons/6.png b/html/img/icons/6.png new file mode 100644 index 0000000..d8d946d Binary files /dev/null and b/html/img/icons/6.png differ diff --git a/html/img/icons/7.png b/html/img/icons/7.png new file mode 100644 index 0000000..ef9cd6f Binary files /dev/null and b/html/img/icons/7.png differ diff --git a/html/img/icons/8.png b/html/img/icons/8.png new file mode 100644 index 0000000..a0bda52 Binary files /dev/null and b/html/img/icons/8.png differ diff --git a/html/img/icons/9.png b/html/img/icons/9.png new file mode 100644 index 0000000..a9a2e3d Binary files /dev/null and b/html/img/icons/9.png differ diff --git a/html/img/icons/app-store.png b/html/img/icons/app-store.png new file mode 100644 index 0000000..69d3a04 Binary files /dev/null and b/html/img/icons/app-store.png differ diff --git a/html/img/icons/care_01.png b/html/img/icons/care_01.png new file mode 100644 index 0000000..2a90635 Binary files /dev/null and b/html/img/icons/care_01.png differ diff --git a/html/img/icons/care_02.png b/html/img/icons/care_02.png new file mode 100644 index 0000000..02595c0 Binary files /dev/null and b/html/img/icons/care_02.png differ diff --git a/html/img/icons/care_03.png b/html/img/icons/care_03.png new file mode 100644 index 0000000..c11a77a Binary files /dev/null and b/html/img/icons/care_03.png differ diff --git a/html/img/icons/care_04.png b/html/img/icons/care_04.png new file mode 100644 index 0000000..b6d7af5 Binary files /dev/null and b/html/img/icons/care_04.png differ diff --git a/html/img/icons/ctg_1.png b/html/img/icons/ctg_1.png new file mode 100644 index 0000000..951f120 Binary files /dev/null and b/html/img/icons/ctg_1.png differ diff --git a/html/img/icons/ctg_2.png b/html/img/icons/ctg_2.png new file mode 100644 index 0000000..44b9e84 Binary files /dev/null and b/html/img/icons/ctg_2.png differ diff --git a/html/img/icons/ctg_3.png b/html/img/icons/ctg_3.png new file mode 100644 index 0000000..54fc2da Binary files /dev/null and b/html/img/icons/ctg_3.png differ diff --git a/html/img/icons/ctg_4.png b/html/img/icons/ctg_4.png new file mode 100644 index 0000000..3945490 Binary files /dev/null and b/html/img/icons/ctg_4.png differ diff --git a/html/img/icons/ctg_5.png b/html/img/icons/ctg_5.png new file mode 100644 index 0000000..05b70c1 Binary files /dev/null and b/html/img/icons/ctg_5.png differ diff --git a/html/img/icons/ctg_6.png b/html/img/icons/ctg_6.png new file mode 100644 index 0000000..5771e19 Binary files /dev/null and b/html/img/icons/ctg_6.png differ diff --git a/html/img/icons/ctg_7.png b/html/img/icons/ctg_7.png new file mode 100644 index 0000000..768d819 Binary files /dev/null and b/html/img/icons/ctg_7.png differ diff --git a/html/img/icons/payments.png b/html/img/icons/payments.png new file mode 100644 index 0000000..f7189b5 Binary files /dev/null and b/html/img/icons/payments.png differ diff --git a/html/img/icons/play-store.png b/html/img/icons/play-store.png new file mode 100644 index 0000000..0b5e900 Binary files /dev/null and b/html/img/icons/play-store.png differ diff --git a/html/img/icons/price_1.png b/html/img/icons/price_1.png new file mode 100644 index 0000000..5771e19 Binary files /dev/null and b/html/img/icons/price_1.png differ diff --git a/html/img/icons/price_2.png b/html/img/icons/price_2.png new file mode 100644 index 0000000..14d69c5 Binary files /dev/null and b/html/img/icons/price_2.png differ diff --git a/html/img/icons/price_3.png b/html/img/icons/price_3.png new file mode 100644 index 0000000..31ceef9 Binary files /dev/null and b/html/img/icons/price_3.png differ diff --git a/html/img/icons/secure_pay.jpg b/html/img/icons/secure_pay.jpg new file mode 100644 index 0000000..1c37812 Binary files /dev/null and b/html/img/icons/secure_pay.jpg differ diff --git a/html/img/icons/service_1.png b/html/img/icons/service_1.png new file mode 100644 index 0000000..6f8a6f4 Binary files /dev/null and b/html/img/icons/service_1.png differ diff --git a/html/img/icons/service_2.png b/html/img/icons/service_2.png new file mode 100644 index 0000000..1298477 Binary files /dev/null and b/html/img/icons/service_2.png differ diff --git a/html/img/icons/service_3.png b/html/img/icons/service_3.png new file mode 100644 index 0000000..b6d7af5 Binary files /dev/null and b/html/img/icons/service_3.png differ diff --git a/html/img/icons/service_4.png b/html/img/icons/service_4.png new file mode 100644 index 0000000..2fc4555 Binary files /dev/null and b/html/img/icons/service_4.png differ diff --git a/html/img/logo/logo.png b/html/img/logo/logo.png new file mode 100644 index 0000000..8520070 Binary files /dev/null and b/html/img/logo/logo.png differ diff --git a/html/img/logo/logo02.png b/html/img/logo/logo02.png new file mode 100644 index 0000000..f9cf8a8 Binary files /dev/null and b/html/img/logo/logo02.png differ diff --git a/html/img/logo/logo2.png b/html/img/logo/logo2.png new file mode 100644 index 0000000..1e1ab67 Binary files /dev/null and b/html/img/logo/logo2.png differ diff --git a/html/img/portfolio/inst_port_1.jpg b/html/img/portfolio/inst_port_1.jpg new file mode 100644 index 0000000..3bb514d Binary files /dev/null and b/html/img/portfolio/inst_port_1.jpg differ diff --git a/html/img/portfolio/inst_port_2.jpg b/html/img/portfolio/inst_port_2.jpg new file mode 100644 index 0000000..e4974e6 Binary files /dev/null and b/html/img/portfolio/inst_port_2.jpg differ diff --git a/html/img/portfolio/inst_port_3.jpg b/html/img/portfolio/inst_port_3.jpg new file mode 100644 index 0000000..281e3fa Binary files /dev/null and b/html/img/portfolio/inst_port_3.jpg differ diff --git a/html/img/portfolio/inst_port_4.jpg b/html/img/portfolio/inst_port_4.jpg new file mode 100644 index 0000000..3b6f29a Binary files /dev/null and b/html/img/portfolio/inst_port_4.jpg differ diff --git a/html/img/portfolio/inst_port_5.jpg b/html/img/portfolio/inst_port_5.jpg new file mode 100644 index 0000000..a38b04f Binary files /dev/null and b/html/img/portfolio/inst_port_5.jpg differ diff --git a/html/img/portfolio/inst_port_6.jpg b/html/img/portfolio/inst_port_6.jpg new file mode 100644 index 0000000..2ffe4ab Binary files /dev/null and b/html/img/portfolio/inst_port_6.jpg differ diff --git a/html/img/portfolio/inst_port_7.jpg b/html/img/portfolio/inst_port_7.jpg new file mode 100644 index 0000000..acbf2d1 Binary files /dev/null and b/html/img/portfolio/inst_port_7.jpg differ diff --git a/html/img/portfolio/inst_port_8.jpg b/html/img/portfolio/inst_port_8.jpg new file mode 100644 index 0000000..ff3cc83 Binary files /dev/null and b/html/img/portfolio/inst_port_8.jpg differ diff --git a/html/img/portfolio/inst_port_9.jpg b/html/img/portfolio/inst_port_9.jpg new file mode 100644 index 0000000..3feb628 Binary files /dev/null and b/html/img/portfolio/inst_port_9.jpg differ diff --git a/html/img/portfolio/port_1.jpg b/html/img/portfolio/port_1.jpg new file mode 100644 index 0000000..4d9c01f Binary files /dev/null and b/html/img/portfolio/port_1.jpg differ diff --git a/html/img/portfolio/port_2.jpg b/html/img/portfolio/port_2.jpg new file mode 100644 index 0000000..9b4362a Binary files /dev/null and b/html/img/portfolio/port_2.jpg differ diff --git a/html/img/portfolio/port_3.jpg b/html/img/portfolio/port_3.jpg new file mode 100644 index 0000000..0e563d2 Binary files /dev/null and b/html/img/portfolio/port_3.jpg differ diff --git a/html/img/portfolio/port_4.jpg b/html/img/portfolio/port_4.jpg new file mode 100644 index 0000000..1cf6ef4 Binary files /dev/null and b/html/img/portfolio/port_4.jpg differ diff --git a/html/img/portfolio/port_5.jpg b/html/img/portfolio/port_5.jpg new file mode 100644 index 0000000..b7dc5d3 Binary files /dev/null and b/html/img/portfolio/port_5.jpg differ diff --git a/html/img/portfolio/port_6.jpg b/html/img/portfolio/port_6.jpg new file mode 100644 index 0000000..063af4c Binary files /dev/null and b/html/img/portfolio/port_6.jpg differ diff --git a/html/img/portfolio/port_7.jpg b/html/img/portfolio/port_7.jpg new file mode 100644 index 0000000..963f176 Binary files /dev/null and b/html/img/portfolio/port_7.jpg differ diff --git a/html/img/portfolio/port_8.jpg b/html/img/portfolio/port_8.jpg new file mode 100644 index 0000000..af44d0a Binary files /dev/null and b/html/img/portfolio/port_8.jpg differ diff --git a/html/img/portfolio/port_9.jpg b/html/img/portfolio/port_9.jpg new file mode 100644 index 0000000..350f4be Binary files /dev/null and b/html/img/portfolio/port_9.jpg differ diff --git a/html/img/products/p1.jpg b/html/img/products/p1.jpg new file mode 100644 index 0000000..7145b29 Binary files /dev/null and b/html/img/products/p1.jpg differ diff --git a/html/img/products/p10.jpg b/html/img/products/p10.jpg new file mode 100644 index 0000000..0163720 Binary files /dev/null and b/html/img/products/p10.jpg differ diff --git a/html/img/products/p11.jpg b/html/img/products/p11.jpg new file mode 100644 index 0000000..fd7d514 Binary files /dev/null and b/html/img/products/p11.jpg differ diff --git a/html/img/products/p12.jpg b/html/img/products/p12.jpg new file mode 100644 index 0000000..19bb1f6 Binary files /dev/null and b/html/img/products/p12.jpg differ diff --git a/html/img/products/p13.jpg b/html/img/products/p13.jpg new file mode 100644 index 0000000..63c9594 Binary files /dev/null and b/html/img/products/p13.jpg differ diff --git a/html/img/products/p14.jpg b/html/img/products/p14.jpg new file mode 100644 index 0000000..5ac02b1 Binary files /dev/null and b/html/img/products/p14.jpg differ diff --git a/html/img/products/p15.jpg b/html/img/products/p15.jpg new file mode 100644 index 0000000..ecb25c0 Binary files /dev/null and b/html/img/products/p15.jpg differ diff --git a/html/img/products/p16.jpg b/html/img/products/p16.jpg new file mode 100644 index 0000000..c4fb176 Binary files /dev/null and b/html/img/products/p16.jpg differ diff --git a/html/img/products/p17.jpg b/html/img/products/p17.jpg new file mode 100644 index 0000000..aa884f9 Binary files /dev/null and b/html/img/products/p17.jpg differ diff --git a/html/img/products/p18.jpg b/html/img/products/p18.jpg new file mode 100644 index 0000000..5893e77 Binary files /dev/null and b/html/img/products/p18.jpg differ diff --git a/html/img/products/p19.jpg b/html/img/products/p19.jpg new file mode 100644 index 0000000..3328f75 Binary files /dev/null and b/html/img/products/p19.jpg differ diff --git a/html/img/products/p2.jpg b/html/img/products/p2.jpg new file mode 100644 index 0000000..1f6914a Binary files /dev/null and b/html/img/products/p2.jpg differ diff --git a/html/img/products/p20.jpg b/html/img/products/p20.jpg new file mode 100644 index 0000000..1c1b227 Binary files /dev/null and b/html/img/products/p20.jpg differ diff --git a/html/img/products/p21.jpg b/html/img/products/p21.jpg new file mode 100644 index 0000000..aa848a9 Binary files /dev/null and b/html/img/products/p21.jpg differ diff --git a/html/img/products/p22.jpg b/html/img/products/p22.jpg new file mode 100644 index 0000000..c209eb4 Binary files /dev/null and b/html/img/products/p22.jpg differ diff --git a/html/img/products/p23.jpg b/html/img/products/p23.jpg new file mode 100644 index 0000000..ef19e44 Binary files /dev/null and b/html/img/products/p23.jpg differ diff --git a/html/img/products/p24.jpg b/html/img/products/p24.jpg new file mode 100644 index 0000000..53c3531 Binary files /dev/null and b/html/img/products/p24.jpg differ diff --git a/html/img/products/p25.jpg b/html/img/products/p25.jpg new file mode 100644 index 0000000..eec4f22 Binary files /dev/null and b/html/img/products/p25.jpg differ diff --git a/html/img/products/p26.jpg b/html/img/products/p26.jpg new file mode 100644 index 0000000..1150de9 Binary files /dev/null and b/html/img/products/p26.jpg differ diff --git a/html/img/products/p27.jpg b/html/img/products/p27.jpg new file mode 100644 index 0000000..48df355 Binary files /dev/null and b/html/img/products/p27.jpg differ diff --git a/html/img/products/p28.jpg b/html/img/products/p28.jpg new file mode 100644 index 0000000..9c53282 Binary files /dev/null and b/html/img/products/p28.jpg differ diff --git a/html/img/products/p29.jpg b/html/img/products/p29.jpg new file mode 100644 index 0000000..d18d7fe Binary files /dev/null and b/html/img/products/p29.jpg differ diff --git a/html/img/products/p3.jpg b/html/img/products/p3.jpg new file mode 100644 index 0000000..8445439 Binary files /dev/null and b/html/img/products/p3.jpg differ diff --git a/html/img/products/p30.jpg b/html/img/products/p30.jpg new file mode 100644 index 0000000..6108ef0 Binary files /dev/null and b/html/img/products/p30.jpg differ diff --git a/html/img/products/p31.jpg b/html/img/products/p31.jpg new file mode 100644 index 0000000..23805f5 Binary files /dev/null and b/html/img/products/p31.jpg differ diff --git a/html/img/products/p32.jpg b/html/img/products/p32.jpg new file mode 100644 index 0000000..acf0452 Binary files /dev/null and b/html/img/products/p32.jpg differ diff --git a/html/img/products/p33.jpg b/html/img/products/p33.jpg new file mode 100644 index 0000000..49b743d Binary files /dev/null and b/html/img/products/p33.jpg differ diff --git a/html/img/products/p34.jpg b/html/img/products/p34.jpg new file mode 100644 index 0000000..040a91d Binary files /dev/null and b/html/img/products/p34.jpg differ diff --git a/html/img/products/p35.jpg b/html/img/products/p35.jpg new file mode 100644 index 0000000..6d075a6 Binary files /dev/null and b/html/img/products/p35.jpg differ diff --git a/html/img/products/p36.jpg b/html/img/products/p36.jpg new file mode 100644 index 0000000..cbbacc7 Binary files /dev/null and b/html/img/products/p36.jpg differ diff --git a/html/img/products/p37.jpg b/html/img/products/p37.jpg new file mode 100644 index 0000000..7a66ee1 Binary files /dev/null and b/html/img/products/p37.jpg differ diff --git a/html/img/products/p38.jpg b/html/img/products/p38.jpg new file mode 100644 index 0000000..4eb3f80 Binary files /dev/null and b/html/img/products/p38.jpg differ diff --git a/html/img/products/p39.jpg b/html/img/products/p39.jpg new file mode 100644 index 0000000..9df01f2 Binary files /dev/null and b/html/img/products/p39.jpg differ diff --git a/html/img/products/p4.jpg b/html/img/products/p4.jpg new file mode 100644 index 0000000..16f8cb3 Binary files /dev/null and b/html/img/products/p4.jpg differ diff --git a/html/img/products/p40.jpg b/html/img/products/p40.jpg new file mode 100644 index 0000000..588f927 Binary files /dev/null and b/html/img/products/p40.jpg differ diff --git a/html/img/products/p41.jpg b/html/img/products/p41.jpg new file mode 100644 index 0000000..9679338 Binary files /dev/null and b/html/img/products/p41.jpg differ diff --git a/html/img/products/p42.jpg b/html/img/products/p42.jpg new file mode 100644 index 0000000..2650293 Binary files /dev/null and b/html/img/products/p42.jpg differ diff --git a/html/img/products/p43.jpg b/html/img/products/p43.jpg new file mode 100644 index 0000000..4aeee49 Binary files /dev/null and b/html/img/products/p43.jpg differ diff --git a/html/img/products/p44.jpg b/html/img/products/p44.jpg new file mode 100644 index 0000000..19192dd Binary files /dev/null and b/html/img/products/p44.jpg differ diff --git a/html/img/products/p45.jpg b/html/img/products/p45.jpg new file mode 100644 index 0000000..e8bd674 Binary files /dev/null and b/html/img/products/p45.jpg differ diff --git a/html/img/products/p46.jpg b/html/img/products/p46.jpg new file mode 100644 index 0000000..3776b32 Binary files /dev/null and b/html/img/products/p46.jpg differ diff --git a/html/img/products/p47.jpg b/html/img/products/p47.jpg new file mode 100644 index 0000000..8a0cb9f Binary files /dev/null and b/html/img/products/p47.jpg differ diff --git a/html/img/products/p48.jpg b/html/img/products/p48.jpg new file mode 100644 index 0000000..c735468 Binary files /dev/null and b/html/img/products/p48.jpg differ diff --git a/html/img/products/p49.jpg b/html/img/products/p49.jpg new file mode 100644 index 0000000..8731089 Binary files /dev/null and b/html/img/products/p49.jpg differ diff --git a/html/img/products/p5.jpg b/html/img/products/p5.jpg new file mode 100644 index 0000000..7b3bad9 Binary files /dev/null and b/html/img/products/p5.jpg differ diff --git a/html/img/products/p50.jpg b/html/img/products/p50.jpg new file mode 100644 index 0000000..b7df69d Binary files /dev/null and b/html/img/products/p50.jpg differ diff --git a/html/img/products/p6.jpg b/html/img/products/p6.jpg new file mode 100644 index 0000000..e474aa6 Binary files /dev/null and b/html/img/products/p6.jpg differ diff --git a/html/img/products/p7.jpg b/html/img/products/p7.jpg new file mode 100644 index 0000000..6fe042b Binary files /dev/null and b/html/img/products/p7.jpg differ diff --git a/html/img/products/p8.jpg b/html/img/products/p8.jpg new file mode 100644 index 0000000..444eaad Binary files /dev/null and b/html/img/products/p8.jpg differ diff --git a/html/img/products/p9.jpg b/html/img/products/p9.jpg new file mode 100644 index 0000000..3be8305 Binary files /dev/null and b/html/img/products/p9.jpg differ diff --git a/html/img/slider/full_slider_1.jpg b/html/img/slider/full_slider_1.jpg new file mode 100644 index 0000000..9eca52e Binary files /dev/null and b/html/img/slider/full_slider_1.jpg differ diff --git a/html/img/slider/full_slider_10.jpg b/html/img/slider/full_slider_10.jpg new file mode 100644 index 0000000..8f4cb1e Binary files /dev/null and b/html/img/slider/full_slider_10.jpg differ diff --git a/html/img/slider/full_slider_11.jpg b/html/img/slider/full_slider_11.jpg new file mode 100644 index 0000000..d87910a Binary files /dev/null and b/html/img/slider/full_slider_11.jpg differ diff --git a/html/img/slider/full_slider_2.jpg b/html/img/slider/full_slider_2.jpg new file mode 100644 index 0000000..8fded7b Binary files /dev/null and b/html/img/slider/full_slider_2.jpg differ diff --git a/html/img/slider/full_slider_3.jpg b/html/img/slider/full_slider_3.jpg new file mode 100644 index 0000000..61fc446 Binary files /dev/null and b/html/img/slider/full_slider_3.jpg differ diff --git a/html/img/slider/full_slider_4.jpg b/html/img/slider/full_slider_4.jpg new file mode 100644 index 0000000..f3be92d Binary files /dev/null and b/html/img/slider/full_slider_4.jpg differ diff --git a/html/img/slider/full_slider_5.jpg b/html/img/slider/full_slider_5.jpg new file mode 100644 index 0000000..950e27c Binary files /dev/null and b/html/img/slider/full_slider_5.jpg differ diff --git a/html/img/slider/full_slider_6.jpg b/html/img/slider/full_slider_6.jpg new file mode 100644 index 0000000..606ef0a Binary files /dev/null and b/html/img/slider/full_slider_6.jpg differ diff --git a/html/img/slider/full_slider_7.jpg b/html/img/slider/full_slider_7.jpg new file mode 100644 index 0000000..33aca23 Binary files /dev/null and b/html/img/slider/full_slider_7.jpg differ diff --git a/html/img/slider/full_slider_8.jpg b/html/img/slider/full_slider_8.jpg new file mode 100644 index 0000000..d4befa6 Binary files /dev/null and b/html/img/slider/full_slider_8.jpg differ diff --git a/html/img/slider/full_slider_9.jpg b/html/img/slider/full_slider_9.jpg new file mode 100644 index 0000000..f81dc91 Binary files /dev/null and b/html/img/slider/full_slider_9.jpg differ diff --git a/html/img/slider/slider_1.jpg b/html/img/slider/slider_1.jpg new file mode 100644 index 0000000..9319328 Binary files /dev/null and b/html/img/slider/slider_1.jpg differ diff --git a/html/img/slider/slider_10.jpg b/html/img/slider/slider_10.jpg new file mode 100644 index 0000000..a11b0e6 Binary files /dev/null and b/html/img/slider/slider_10.jpg differ diff --git a/html/img/slider/slider_11.jpg b/html/img/slider/slider_11.jpg new file mode 100644 index 0000000..d54d5f3 Binary files /dev/null and b/html/img/slider/slider_11.jpg differ diff --git a/html/img/slider/slider_12.jpg b/html/img/slider/slider_12.jpg new file mode 100644 index 0000000..aff04d0 Binary files /dev/null and b/html/img/slider/slider_12.jpg differ diff --git a/html/img/slider/slider_13.jpg b/html/img/slider/slider_13.jpg new file mode 100644 index 0000000..30708c3 Binary files /dev/null and b/html/img/slider/slider_13.jpg differ diff --git a/html/img/slider/slider_2.jpg b/html/img/slider/slider_2.jpg new file mode 100644 index 0000000..ff41236 Binary files /dev/null and b/html/img/slider/slider_2.jpg differ diff --git a/html/img/slider/slider_3.jpg b/html/img/slider/slider_3.jpg new file mode 100644 index 0000000..e526c51 Binary files /dev/null and b/html/img/slider/slider_3.jpg differ diff --git a/html/img/slider/slider_4.jpg b/html/img/slider/slider_4.jpg new file mode 100644 index 0000000..60cb86c Binary files /dev/null and b/html/img/slider/slider_4.jpg differ diff --git a/html/img/slider/slider_5.jpg b/html/img/slider/slider_5.jpg new file mode 100644 index 0000000..8d86982 Binary files /dev/null and b/html/img/slider/slider_5.jpg differ diff --git a/html/img/slider/slider_6.jpg b/html/img/slider/slider_6.jpg new file mode 100644 index 0000000..165f98e Binary files /dev/null and b/html/img/slider/slider_6.jpg differ diff --git a/html/img/slider/slider_7.jpg b/html/img/slider/slider_7.jpg new file mode 100644 index 0000000..afda0fb Binary files /dev/null and b/html/img/slider/slider_7.jpg differ diff --git a/html/img/slider/slider_8.jpg b/html/img/slider/slider_8.jpg new file mode 100644 index 0000000..3a108c4 Binary files /dev/null and b/html/img/slider/slider_8.jpg differ diff --git a/html/img/slider/slider_9.jpg b/html/img/slider/slider_9.jpg new file mode 100644 index 0000000..a8cfee3 Binary files /dev/null and b/html/img/slider/slider_9.jpg differ diff --git a/html/img/team/1.jpg b/html/img/team/1.jpg new file mode 100644 index 0000000..087358d Binary files /dev/null and b/html/img/team/1.jpg differ diff --git a/html/img/team/2.jpg b/html/img/team/2.jpg new file mode 100644 index 0000000..03702e7 Binary files /dev/null and b/html/img/team/2.jpg differ diff --git a/html/img/team/3.jpg b/html/img/team/3.jpg new file mode 100644 index 0000000..fad15a9 Binary files /dev/null and b/html/img/team/3.jpg differ diff --git a/html/img/team/4.jpg b/html/img/team/4.jpg new file mode 100644 index 0000000..4795f77 Binary files /dev/null and b/html/img/team/4.jpg differ diff --git a/html/img/testmonial/01.png b/html/img/testmonial/01.png new file mode 100644 index 0000000..40b8e7b Binary files /dev/null and b/html/img/testmonial/01.png differ diff --git a/html/img/testmonial/02.png b/html/img/testmonial/02.png new file mode 100644 index 0000000..c2627ca Binary files /dev/null and b/html/img/testmonial/02.png differ diff --git a/html/img/testmonial/03.png b/html/img/testmonial/03.png new file mode 100644 index 0000000..3c5192e Binary files /dev/null and b/html/img/testmonial/03.png differ diff --git a/html/img/testmonial/04.png b/html/img/testmonial/04.png new file mode 100644 index 0000000..f82acb0 Binary files /dev/null and b/html/img/testmonial/04.png differ diff --git a/html/img/testmonial/05.png b/html/img/testmonial/05.png new file mode 100644 index 0000000..3d51fdf Binary files /dev/null and b/html/img/testmonial/05.png differ diff --git a/html/img/testmonial/testi_bg.jpg b/html/img/testmonial/testi_bg.jpg new file mode 100644 index 0000000..c19d119 Binary files /dev/null and b/html/img/testmonial/testi_bg.jpg differ diff --git a/html/index-10(minimal).html b/html/index-10(minimal).html new file mode 100644 index 0000000..0aa9592 --- /dev/null +++ b/html/index-10(minimal).html @@ -0,0 +1,2648 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+ + +
+ +
+ +
+ +
+ + + + +
+ +
+ + + + +
+
+ +
+
+ +
+ + +
+ +
+ +
+ +
+ + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+
+
+ #Main Categories +

Feature Categories

+
+
+
+ +
+
+ + + +
+
+ +
+ #Featured Items +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+ + +
+
+

Latest Product Title Here 9

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 12

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + +
+
+
+
+ + + +
+
+
+
+
+

#Best New Feature Product.

+

Discount 30% Off

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+
+ +
+
+ +
+
+ countdown-img +
+
+ +
+
+
+ + + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + + + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+ + + +
+ +
+
+ +
+
+
+
+ + + + + + + + +
+
+ + +
+
+ + + + + +
+
+ +
+ + +
+ +

About Shop

+

Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. + + +

    +
  • +
  • +
  • +
  • +
  • +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-11(box).html b/html/index-11(box).html new file mode 100644 index 0000000..ad1f82b --- /dev/null +++ b/html/index-11(box).html @@ -0,0 +1,9880 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+
+ + +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + + +
+ +
+ + + + +
+ +
+ + +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+
+ +
+ #Best Features +

Awesome Pet Features

+
+ +
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ + + +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+
+ feature-icon +
+ +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ + +
+
+ feature-icon +
+ +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ + +
+ +
+ + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + + +
+ +
+
+

Vaccine Goods

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+ + +
+ +
+ +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ +
+ +
+
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ +
+ +
+
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ + +
+ +
+
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ + +
+ +
+ +
+

Reliable Food

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+
+
+
+ + + + +
+
+
+ #Best Categories +

Feature Categories

+
+
+
+ +
+
+ + + + +
+
+ +
+ #Awesome Feature +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+
+
+ + + + + + + + + + + + + +
+
+ + +
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Cool Smart

+

Super Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ +
+ + + + +
+
+ + + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ +
+
+ +
+

Best Pet Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + + +
+
+
+
+ +
+ #Best Clients +

What our Clients say

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + +
+
+ + +
+ #Awesome Blog +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ +
+ + + + +
+
+
+
+ +
+ #Best Collections +

Best Portfolios Area

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+ +
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Mixed Book Shop +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Bag
+

+ Lorem ipsum dolor. +

+
+
+
+ + +
+ +
+
+ + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+
+ +
+
+
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-12(all_section).html b/html/index-12(all_section).html new file mode 100644 index 0000000..27786c2 --- /dev/null +++ b/html/index-12(all_section).html @@ -0,0 +1,14277 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+ +
+
+

50% Off Winter Collection Click More

+
+
+ + + +
+ +
+ + + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + + +
+ +
+ + + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+ +
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+ +
+ +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+ +
+ + + +
+
+ +
+ #Best Issues +

Awesome Service

+
+ +
+ +
+
+ +
+ service-icon +
+ + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + + + +
+
+ +
+ service-icon +
+ + + +
+

Professional Checkup

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + + + +
+
+ +
+ service-icon +
+ + + +
+

Expart Vaccination

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + + + +
+
+ +
+ service-icon +
+ + + +
+

Book Service 24/7

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + +
+
+
+ + + + +
+
+
+ banner images +
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 1

+
+ $150.00 + $250.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 2

+
+ $90.00 + $100.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 3

+
+ $170.00 + $350.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 4

+
+ $150.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 5

+
+ $70.00 + $80.00 +
+
+ + + +
+
+
+
+ + + +
+
+
+ + + + +
+
+ +
+ #Best Items +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+ + +
+
+

Latest Product Title Here 9

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 12

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + +
+
+
+
+ + + + +
+
+ +
+ #Best Items +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+ + +
+
+

Latest Product Title Here 9

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 12

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + +
+
+
+
+ + + + +
+
+ + +
+
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions.

+
    +
  • For use from newborn to children weighing 15kg/33lbs
  • +
  • Compact, easy to fold and carry
  • +
  • Lockable swivel wheels, easy to push
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ banner-img +
+
+
+
+
+ + +
+
+ + + +
+
+
+
+
+

#Best New Feature Product.

+

Discount 30% Off

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+
+ +
+
+ +
+
+ countdown-img +
+
+ +
+
+
+ + + +
+
+ + +
+
+
+
+
+ banner-img +
+
+
+
+

#Best Cool Smart

+

Super Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+ +
+
+ + + + + + + + + +
+
+ +
+ #Main Feature +

Awesome Pet Features

+
+ +
+
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+
+ feature-icon +
+ +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+
+ +
+
+ + + + +
+
+ +
+ #Main Feature +

Awesome Pet Features

+
+ +
+
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ + +
+ +
+ + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+ + +
+ +
+ +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ +
+ +
+
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ +
+ +
+
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ + +
+ +
+
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+
+ +
+
+ + + + +
+
+ +
+ #Hot Collection +

Awesome Pet Features

+
+ +
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+
+ feature-icon +
+ + + +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+
+ feature-icon +
+ + + + +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+
+
+
+ + + + +
+
+ +
+ #Nice Hot Feature +

Best Pets Food Features

+
+ +
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+ +
+
+ + + + +
+
+ +
+ #Nice Item Select +

Best Pets Food Features

+
+ +
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + + +
+ +
+ +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + +
+ +
+
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + + +
+ +
+ +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + +
+ +
+ +
+ +
+
+
+
+ features-img +
+
+
+
+
+ +
+
+ + + + +
+
+ +
+ #Best Collections +

Best Pets Food Features

+
+ +
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+
+
+
+ features-img +
+
+ +
+
+ +
+
+ feature-icon +
+ + + +
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+ + +
+ +
+
+ feature-icon +
+ + +
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ +
+ +
+
+ feature-icon +
+ + + +
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + +
+ +
+
+ feature-icon +
+ + + +
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ +
+ +
+
+
+
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+ +
+
+ + + + +
+
+
+
+
+

Welcome to Pets Care

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+ +
+ +
+
+ feature-icon +
+ + + +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Professional Gynologists

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Happy Pets

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Positive Reviews

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ +
+ +
+
+
+
+ features-img +
+
+
+
+
+ + + + +
+
+
+
+
+

Welcome to Pets Care

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+ +
+ +
+ + +
+ +
+ +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Professional Gynologists

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Happy Pets

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Positive Reviews

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ +
+ +
+
+
+
+ features-img +
+
+
+
+
+ + + + +
+
+
+
+
+ features-img +
+
+
+
+

Pets Care ! Why Choose Us ?

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic.

+ + +
+ +
+
+ feature-icon +
+ + + +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo not only five.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Professional Gynologists

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo not only five.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Happy Pets

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo not only five.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Positive Reviews

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo not only five.

+
+
+ +
+ + + +
+
+
+
+
+ + + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + + +
+
+ + +
+ #Main Blog +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ + +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ + +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ + +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ + +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ +
+ + + + +
+
+
+
+ +
+ #Best Clients +

What Clients Says

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + +
+
+ +
+ #Alomi Best +

Pricing Table

+
+ +
+
+
+ + + +
pric icon
+ +

Basic Nutrition

+
$29.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + + +
pric icon
+ +

Best Value Pack

+
$39.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+ + + +
pric icon
+ +

Best Nutrition

+
$49.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + + + +
+
+ +
+ #Nice Feature +

Pricing Table

+
+ +
+
+
+ + +
+ +
+ + + +

Basic Nutrition

+
$29.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + +
+ +
+ + + +

Best Value Pack

+
$39.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+ + +
+ +
+ + +

Best Nutrition

+
$49.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + + + +
+
+
+ +
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 50% Off

+
+ +

Deal Product Title Here

+ +
+ Flash Price : +
$150
+
$250
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 45% Off

+
+ +

Best Product Title Here

+ +
+ Flash Price : +
$120
+
$210
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+ +
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 55% Off

+
+ +

Supper Product Title Here

+ +
+ Flash Price : +
$100
+
$200
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+
+ + + + +
+
+
+
+
+

Welcome to Pets Care

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+ +
+ + +
+
+ feature-icon +
+ + + +
+

Professional Checkup

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Expart Vaccination

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Book Service 24/7

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ +
+ +
+
+ + +
+
+
+
+

Request appointment

+

Call: (970)416-0233

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+
+
+ +
+
+ +
+
+ +
+
+
+ +
+ +
+ +
+
+
+
+
+ +
+
+
+ + + + +
+
+
+ #Best Item Cat +

Feature Categories

+
+
+
+ +
+
+ + + +
+
+
+ #Awesome Feature +

Feature Categories

+
+
+
+ +
+
+ + + +
+
+
+ #Nice Categories +

Feature Categories

+
+
+
+
+
+
+ + + +

Bird's

+ (19 items) +
+
+
+
+ + + +

Dog's

+ (11 items) +
+
+
+
+ + + +

Girgity's

+ (09 items) +
+
+
+
+ + + +

Rabbit's

+ (16 items) +
+
+
+
+ + + +

Fish's

+ (18 items) +
+
+
+
+ + + +

Cat's

+ (15 items) +
+
+
+
+ + + +

Other's

+ (11 items) +
+
+
+
+
+ + + + +
+
+
+
+ +
+ #Anisd Team +

Our Awesome Team

+
+ +
+
+ + +
+
+
+
+ team_img +
+ +
+
+
+

Williamson

+ Web Developer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Nil Amrons

+ Designer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Mali Jons

+ Web Designer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Nsig Mnosd

+ Developer +
+
+
+ +
+ +
+
+ + + +
+
+
+
+ +
+ #Best Feature +

Best Pets Food Features

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+ +
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Mixed Book Shop +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Bag
+

+ Lorem ipsum dolor. +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + +
+ +
+
+ + + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + + +
+
+ +
+
+
+
+ + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + + +
+
+ +
+
+
+
+ + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+ + + +
+ +
+
+ +
+
+
+
+ + + +
+
+ +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-2(pet_shop).html b/html/index-2(pet_shop).html new file mode 100644 index 0000000..eb6141b --- /dev/null +++ b/html/index-2(pet_shop).html @@ -0,0 +1,8154 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + + +
+ +
+ + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+
+ + +
+ +
+
+
+
+ banner-img +
+
+
+
+

#Best Cool Smart

+

Super Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from. Lorem Ipsum is not simply random text.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from. Lorem Ipsum is not simply random text.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + + +
+ + + + +
+
+ + + + +
+
+ +
+ #Hot Products +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+ + +
+
+

Latest Product Title Here 9

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 12

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + +
+
+
+
+ + + + + + + + + + + + + + +
+
+
+ +
+
+ +
+
+
+ + promotion_img + +
+
+
+
+
+ +
+
+

Sale! 50% Off

+
+ +

Deal Product Title Here

+ +
+ Flash Price : +
$150
+
$250
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+ +
+
+
+ + promotion_img + +
+
+
+
+
+ +
+
+

Sale! 45% Off

+
+ +

Best Product Title Here

+ +
+ Flash Price : +
$120
+
$210
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+ +
+
+ +
+
+
+ + promotion_img + +
+
+
+
+
+ +
+
+

Sale! 55% Off

+
+ +

Supper Product Title Here

+ +
+ Flash Price : +
$100
+
$200
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+
+ + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ + +
+
+ +
+

Pet Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+
+
+
+
+ + + + +
+
+ + +
+ #Main Blog +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ + +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ +
+ + + + +
+
+
+
+ +
+ #Best Client +

What our Clients says

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + +
+
+
+
+ +
+ #Super Gallery +

Best Portfolios Area

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+ +
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + +
+ +
+
+ + + + +
+
+ +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ +
+
+ + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-3(pet_care).html b/html/index-3(pet_care).html new file mode 100644 index 0000000..a65ed46 --- /dev/null +++ b/html/index-3(pet_care).html @@ -0,0 +1,2170 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+
+ +
+ #Core Service +

Best Service Area

+
+ +
+ +
+
+ +
+ service-icon +
+ + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + + + +
+
+ +
+ service-icon +
+ + + +
+

Professional Checkup

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + + + +
+
+ +
+ service-icon +
+ + + +
+

Expart Vaccination

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + + + +
+
+ +
+ service-icon +
+ + + +
+

Book Service 24/7

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry.

+
+
+
+ + +
+
+
+ + + + +
+
+
+
+
+

Request For Amazing Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+ +
+ + +
+ + +
+ +
+ +
+

Professional Checkup

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + + +
+ +
+ +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Expart Vaccination

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Book Service 24/7

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ +
+ +
+
+ + +
+
+
+
+

Request appointment

+

Call: (970)416-0233

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+
+
+ +
+
+ +
+
+ +
+
+
+ +
+ +
+ +
+
+
+
+
+ + + +
+
+
+ + + + +
+
+ + +
+
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions.

+
    +
  • For use from newborn to children weighing 15kg/33lbs
  • +
  • Compact, easy to fold and carry
  • +
  • Lockable swivel wheels, easy to push
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ banner-img +
+
+
+
+
+ + +
+
+ + + + + +
+
+
+
+
+

#Best New Feature Product.

+

Discount 30% Off

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+
+ +
+
+ +
+
+ countdown-img +
+
+ +
+
+
+ + + + +
+
+
+
+
+

Welcome to Pets Care

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+ +
+ +
+ + +
+ +
+ +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Professional Gynologists

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Happy Pets

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ +
+ +
+

Positive Reviews

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ +
+ +
+
+
+
+ features-img +
+
+
+
+
+ + + + + +
+
+
+
+ +
+ #Best Clients +

What our Clients says

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + + + + + +
+
+ +
+ #Best Price +

Best Pets Pricing

+
+ +
+
+
+ + +
+ +
+ + + +

Basic Nutrition

+
$29.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + +
+ +
+ + + +

Best Value Pack

+
$39.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+ + +
+ +
+ + +

Best Nutrition

+
$49.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + + + +
+
+
+
+ +
+ #Best Team +

Our Awesome Team

+
+ +
+
+ + +
+
+
+
+ team_img +
+ +
+
+
+

Williamson

+ Web Developer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Nil Amrons

+ Designer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Mali Jons

+ Web Designer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Nsig Mnosd

+ Developer +
+
+
+ +
+ +
+
+ + + + + + + + + +
+
+
+
+ +
+ #Best Portfolios +

Best Portfolios Area

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+ +
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Mixed Book Shop +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Bag
+

+ Lorem ipsum dolor. +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + +
+ +
+
+ + + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + + +
+
+ +
+
+
+
+ + + +
+
+ + +
+ #Best Blog +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ +
+ + + + +
+
+ +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ +
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-4(pet_care2).html b/html/index-4(pet_care2).html new file mode 100644 index 0000000..f0fc7cd --- /dev/null +++ b/html/index-4(pet_care2).html @@ -0,0 +1,1957 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + + +
+ +
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + + +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+ +
+ + + + +
+
+
+
+
+

Welcome to Pets Care

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+ +
+ +
+
+ feature-icon +
+ + + +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Professional Gynologists

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Happy Pets

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+
+ feature-icon +
+ + + +
+

Positive Reviews

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ +
+ +
+
+
+
+ features-img +
+
+
+
+
+ + + + +
+
+
+
+ +
+ #Best Team +

Our Awesome Team

+
+ +
+
+ + +
+
+
+
+ team_img +
+ +
+
+
+

Williamson

+ Web Developer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Nil Amrons

+ Designer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Mali Jons

+ Web Designer +
+
+
+
+
+
+ team_img +
+ +
+
+
+

Nsig Mnosd

+ Developer +
+
+
+ +
+ +
+
+ + + + +
+
+
+
+
+

Request For Amazing Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.

+ +
+ + +
+ +
+ feature-icon +
+ + + +
+

Professional Checkup

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ + +
+ feature-icon +
+ + + +
+

Modern Equiwipment

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ +
+ feature-icon +
+ + + +
+

Expart Vaccination

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ + +
+ +
+ feature-icon +
+ + + +
+

Book Service 24/7

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco pertrudo.

+
+
+ +
+ +
+
+ + +
+
+
+
+

Request appointment

+

Call: (970)416-0233

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+
+
+ +
+
+ +
+
+ +
+
+
+ +
+ +
+ +
+
+
+
+
+ + + +
+
+
+ + + + +
+
+ +
+ #Best Price +

Pricing Table

+
+ +
+
+
+ + + +
pric icon
+ +

Basic Nutrition

+
$29.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + + +
pric icon
+ +

Best Value Pack

+
$39.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+ + + +
pric icon
+ +

Best Nutrition

+
$49.00/Year
+
+
    +
  • Speical Feature
  • +
  • Good Service
  • +
  • Awesome Commitment
  • +
  • 24/07 Support
  • +
  • Question Support
  • +
  • More Option
  • +
+
+
+ Take Now +
+
+
+
+
+
+ + + + +
+
+
+
+ +
+ #Best Clients +

What our Clients says

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + +
+
+ + +
+ #Best Blog +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+
+
+ +
+ + + + + + + + + + + + + + +
+
+
+
+ +
+ #Best Portfolios +

Featured Gallery

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+ +
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Mixed Book Shop +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Bag
+

+ Lorem ipsum dolor. +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + +
+ +
+
+ + + + +
+
+ +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ +
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-5(food_shop).html b/html/index-5(food_shop).html new file mode 100644 index 0000000..7f46377 --- /dev/null +++ b/html/index-5(food_shop).html @@ -0,0 +1,6405 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+ + +
+ +
+ +
+ +
+ + + + +
+ +
+ + + + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + + +
+ +
+ + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+
+
+ #Best Categories +

Feature Categories

+
+
+
+
+
+
+ + + +

Bird's

+ (19 items) +
+
+
+
+ + + +

Dog's

+ (11 items) +
+
+
+
+ + + +

Girgity's

+ (09 items) +
+
+
+
+ + + +

Rabbit's

+ (16 items) +
+
+
+
+ + + +

Fish's

+ (18 items) +
+
+
+
+ + + +

Cat's

+ (15 items) +
+
+ + + +
+
+
+ + + + + +
+
+ +
+ #Hot Products +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+ + +
+
+

Latest Product Title Here 9

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 12

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + +
+
+
+
+ + + + +
+
+ +
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+
+
+
+ features-img +
+
+ +
+
+ +
+
+ feature-icon +
+ + + +
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+ + +
+ +
+
+ feature-icon +
+ + +
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ +
+ +
+
+ feature-icon +
+ + + +
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + +
+ +
+
+ feature-icon +
+ + + +
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ +
+ +
+
+
+
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+ +
+
+ + + + + + + + + +
+
+
+ +
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 50% Off

+
+ +

Deal Product Title Here

+ +
+ Flash Price : +
$150
+
$250
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 45% Off

+
+ +

Best Product Title Here

+ +
+ Flash Price : +
$120
+
$210
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+ +
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 55% Off

+
+ +

Supper Product Title Here

+ +
+ Flash Price : +
$100
+
$200
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+
+ + + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + + + + + + + +
+
+ + +
+ #Blog Style +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ +
+ + + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+ + + +
+ +
+
+ +
+
+
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + +
+
+ +
+ + +
+ +

About Shop

+

Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. + + +

    +
  • +
  • +
  • +
  • +
  • +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-6(food_shop2).html b/html/index-6(food_shop2).html new file mode 100644 index 0000000..b0c608f --- /dev/null +++ b/html/index-6(food_shop2).html @@ -0,0 +1,9238 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+ + +
+ +
+ +
+ +
+ + + + +
+ +
+ + + + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + + + + + + +
+
+ + +
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Cool Smart

+

Super Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ +
+ + +
+
+ + + + +
+
+ +
+ #Best Collections +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + +
+
+
+
+ + + + +
+
+
+ #Best Categorie +

Feature Categories

+
+
+
+ +
+
+ + + + + + + + + +
+
+ +
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + + +
+ +
+ +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + +
+ +
+
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + + +
+ +
+ +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + +
+ +
+ +
+ +
+
+
+
+ features-img +
+
+
+
+
+ +
+
+ + + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ +
+
+ +
+

Best Pet Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + + +
+
+
+ +
+
+ +
+
+
+ + promotion_img + +
+
+
+
+
+ +
+
+

Sale! 50% Off

+
+ +

Deal Product Title Here

+ +
+ Flash Price : +
$150
+
$250
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+ +
+
+
+ + promotion_img + +
+
+
+
+
+ +
+
+

Sale! 45% Off

+
+ +

Best Product Title Here

+ +
+ Flash Price : +
$120
+
$210
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+ +
+
+ +
+
+
+ + promotion_img + +
+
+
+
+
+ +
+
+

Sale! 55% Off

+
+ +

Supper Product Title Here

+ +
+ Flash Price : +
$100
+
$200
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+
+ + + + +
+
+
+
+ +
+ #Best Portfolios +

Best Portfolios Area

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Mixed Book Shop +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Bag
+

+ Lorem ipsum dolor. +

+
+
+
+ + + +
+ +
+
+ + + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+ + + +
+ + +
+
+ +
+
+
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + +
+
+ +
+ + +
+ +

About Shop

+

Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. + + +

    +
  • +
  • +
  • +
  • +
  • +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-7(pet_acc).html b/html/index-7(pet_acc).html new file mode 100644 index 0000000..73815f3 --- /dev/null +++ b/html/index-7(pet_acc).html @@ -0,0 +1,6231 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+ + +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + + + + +
+
+ +
+ + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + + +
+
+ + +
+
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions.

+
    +
  • For use from newborn to children weighing 15kg/33lbs
  • +
  • Compact, easy to fold and carry
  • +
  • Lockable swivel wheels, easy to push
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ banner-img +
+
+
+
+
+ + +
+
+ + + +
+
+ +
+ #Best Sellings +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+
+
+ + + +
+
+
+ #Best Categorie +

Feature Categories

+
+
+
+ +
+
+ + + + + + + + +
+
+ +
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+
+
+
+ features-img +
+
+ +
+
+ +
+
+ feature-icon +
+ + + +
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+ + +
+ +
+
+ feature-icon +
+ + +
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ +
+ +
+
+ feature-icon +
+ + + +
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ + +
+ +
+
+ feature-icon +
+ + + +
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+ +
+ +
+
+
+
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Our in-house pet nutritionists play a crucial role in the creation of Kreme dog and cat food

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+ +
+
+ + + + + + + + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + + + +
+
+
+
+ +
+ Welcome to my personal presentation +

What our Clients say

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + + +
+
+ +
+
+
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-8(pet_acc2).html b/html/index-8(pet_acc2).html new file mode 100644 index 0000000..64d68a3 --- /dev/null +++ b/html/index-8(pet_acc2).html @@ -0,0 +1,5710 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + + +
+ +
+ + + + +
+ +
+ +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2022

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + + + + + +
+
+
+ # Best Categories +

Feature Categories

+
+
+
+
+
+
+ + + +

Bird's

+ (19 items) +
+
+
+
+ + + +

Dog's

+ (11 items) +
+
+
+
+ + + +

Girgity's

+ (09 items) +
+
+
+
+ + + +

Rabbit's

+ (16 items) +
+
+
+
+
+ + + + + + + + +
+
+ + +
+ +
+
+
+
+ banner-img +
+
+
+
+

#Best Cool Smart

+

Super Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+ + + + +
+
+ + + + +
+
+ +
+ #Best products +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + +
+
+
+
+ + + + +
+
+
+ +
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 50% Off

+
+ +

Deal Product Title Here

+ +
+ Flash Price : +
$150
+
$250
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 45% Off

+
+ +

Best Product Title Here

+ +
+ Flash Price : +
$120
+
$210
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+ +
+
+ +
+
+
+ + promoton_img + +
+
+
+
+
+ +
+
+

Sale! 55% Off

+
+ +

Supper Product Title Here

+ +
+ Flash Price : +
$100
+
$200
+
+
+ +
+ +
+
+
+ + +
+ + + +
+
+
+
+
+
+
+ + + + +
+
+ + +
+ #Best Blog +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 22 December, 2022 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ +
+ + + + +
+
+ +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ brand-image +
+
+ +
+
+ + + + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index-9(lookbook).html b/html/index-9(lookbook).html new file mode 100644 index 0000000..cce6c66 --- /dev/null +++ b/html/index-9(lookbook).html @@ -0,0 +1,3247 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + +
+
+
+ banner images +
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 1

+
+ $150.00 + $250.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 2

+
+ $90.00 + $100.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 3

+
+ $170.00 + $350.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 4

+
+ $150.00 +
+
+ + + +
+
+
+
+ +
+
+
+ LookBook Image +
+ +
+

Product Title Here 5

+
+ $70.00 + $80.00 +
+
+ + + +
+
+
+
+ + + +
+
+
+ + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+ + + +
+ +
+
+ +
+
+
+
+ + + + + + + + + + +
+
+ +
+ #Core Feature +

Awesome Pet Features

+
+ +
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+
+ feature-icon +
+ + + +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+
+ feature-icon +
+ + + + +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ + + +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+
+
+
+ + + + + +
+
+
+ #Core Categories +

Feature Categories

+
+
+
+ +
+
+ + + + +
+
+ + +
+
+
+
+
+ banner-img +
+
+
+
+

#Best Cool Smart

+

Super Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+ + + + +
+
+ + + + +
+
+ +
+ #Best Collections +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+ + +
+
+

Latest Product Title Here 9

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 12

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+ + +
+
+

Latest Product Title Here 9

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 10

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 11

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 12

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+
+
+ + + +
+
+
+
+
+

#Best New Feature Product.

+

Discount 30% Off

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+
+ +
+
+ +
+
+ countdown-img +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+
+ +
+
+

Pet Nutritionists

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Quality & Safety

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ +
+ +
+
+

Good pets_tabs

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Health & Well-being

+

Destibulum quis porttitor dui! Quisque viverra nunc mi, a pulvinar pus rus cond condimentum mattis.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+
+ +
+
+ + + + +
+
+
+
+ +
+ #Best Portfolios +

Best Portfolios Area

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+ +
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Mixed Book Shop +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Bag
+

+ Lorem ipsum dolor. +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + +
+ +
+
+ + + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..63e0714 --- /dev/null +++ b/html/index.html @@ -0,0 +1,9878 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
    + +
  • + + +
  • + +
  • + 2 + +
  • +
  • + + + +
  • +
+
+
+ +
+ + + + + + +
+ +
+ + + + +
+ +
+ + +
+
+
+
+
+

#Super & Cute Baby !...

+

Supper Pets Collection Trending 2025

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + + +
+
+
+
+
+

#Came Form Africa...

+

Cute Animal Collection Beautiful Pets.

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ + +
+
+
+
+
+

#Always Super Service...

+

Best Pet Care Service Happy Always

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+
+
+
+ +
+ +
+ + + + +
+
+ +
+ #Best Features +

Awesome Pet Features

+
+ +
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ + + +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ feature-icon +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+
+ feature-icon +
+ +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+ feature-icon +
+ +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ + +
+
+ feature-icon +
+ +
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+

Conntect With Apps

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ + +
+ +
+ + +
+ +
+
+

Medicale Registerd

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ +
+ +
+
+

Fitness Listed

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + +
+ +
+
+

Complete Vaccine

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + + +
+ +
+
+

Vaccine Goods

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+ +
+ +
+ + + +
+ +
+
+
+
+ features-img +
+
+
+
+ +
+ + +
+ +
+ +
+

Cosmetic Reliable

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ +
+ +
+
+

Owners Fans Training

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ +
+ +
+
+

Complete Vitamin Course

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ + +
+ +
+
+

Habit Staying Home

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+ + +
+ +
+ +
+

Reliable Food

+

Lorem Ipsum es simplemente el texto de relleno de las imprentas.

+
+
+ +
+
+
+
+
+
+
+ + + + +
+
+
+ #Best Categories +

Feature Categories

+
+
+
+ +
+
+ + + + +
+
+ +
+ #Awesome Feature +

Collective Products

+
+ +
+
+ + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+ +
+ + +
+
+

Latest Product Title Here 1

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 5

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + + + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 6

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Sold Out + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+ + +
+
+

Latest Product Title Here 7

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+ +
+ + -25% + New + + + single-product + single-product + + + + +
+
+
+
+ + +
+
+

Latest Product Title Here 8

+ +
+ + + + + +
+ +
+ +
+ S + M + L + XL + XXL +
+ +
+ + + + + +
+ +
+ +
+ $100.50 + $75.50 +
+ +
+
+ + Add To Cart + +
+
+ +
+
+ + + +
+
+
+
+ + + + + + + + + + + + + +
+
+ + +
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Hot Sale

+

Latest Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ + +
+
+
+
+ banner-img +
+
+
+
+

#Best Cool Smart

+

Super Optional Product

+

Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions. in a piece of classical Latin literature from seating positions.

+
    +
  • Ipsum is not simply random
  • +
  • Pet Ipsum is not simply random
  • +
  • Lorem Ipsum is not simply random text
  • +
  • Pet Ipsum is not simply random textseating
  • +
  • Lorem Ipsum is not simply random text weighing seating
  • +
+
Promotion Price : $77.50
+ +
+
+
+
+ +
+ + + + +
+
+ + + + +
+
+
+
+
+
+ +
+
+ +
+

Most View Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ +
+

Special Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + + +
+ + +
+
+ +
+
+ +
+

Best Pet Products

+
+ + + +
+ + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $170.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $100.00 + $200.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $190.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+
+
+ + + +
+
+

Small Product Title Here

+

+ $150.00 + $250.00 +

+ +
+ + + + + +
+ +
    +
  • +
  • +
  • +
  • + +
  • +
+ + +
+
+
+ + + +
+ +
+
+ +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + + +
+
+
+
+ +
+ #Best Clients +

What our Clients say

+
+ +
+
+ +
+ +
+
+ testmonial-img +
+
+ +
Jimanas Gulmasd General Manager
+
+ + + + + +
+

Modern Equiwipment

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Biloman Jonsod Manager
+
+ + + + + +
+

Best Clinical Service

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + + +
+
+ testmonial-img +
+
+ +
Silomans Designer
+
+ + + + + +
+

Super Talanted

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since.

+ +
+
+ + +
+ +
+
+
+
+ + + + +
+
+ + +
+ #Awesome Blog +

Latest Blog Area

+
+ + + +
+
+ +
+
+ + blog-img + +
+ 20 December, 2025 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2025 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2025 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 22 December, 2025 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+ +
+
+ + blog-img + +
+ 20 December, 2025 +
+
+
+

+ Blog grid style item title here +

+ + + +

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has + been the industrys pets_tab dummy text ever since ...

+ +
+
+ +
+ +
+
+ +
+ + + + +
+
+
+
+ +
+ #Best Collections +

Best Portfolios Area

+
+ +
+
+
+
+ +
+ + + + + + +
+ + + +
+ + +
+
+
+
+ portfoilo-img +
+
+ +
+ +
+
+
Dog, Pet
+

+ Academic English Course +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pet, Dog
+

+ Online Book Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Baord
+

+ Coffe Paper Cup +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Bag
+

+ Online Pen Store +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Book, Lamp
+

+ Best Board Seller +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Lorem ipsum dolor +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Pen, Bag
+

+ Mixed Book Shop +

+
+
+
+ + + +
+
+
+
+ portfoilo-img +
+
+ +
+
+
+
Lamp, Bag
+

+ Lorem ipsum dolor. +

+
+
+
+ + +
+ +
+
+ + + +
+
+
+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+
+ +
+
+
+
+ + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/js/ajax-mail.js b/html/js/ajax-mail.js new file mode 100644 index 0000000..287da6a --- /dev/null +++ b/html/js/ajax-mail.js @@ -0,0 +1,48 @@ +$(function() { + + // Get the form. + var form = $('#contact-form'); + + // Get the messages div. + var formMessages = $('.form-message'); + + // Set up an event listener for the contact form. + $(form).submit(function(e) { + // Stop the browser from submitting the form. + e.preventDefault(); + + // Serialize the form data. + var formData = $(form).serialize(); + + // Submit the form using AJAX. + $.ajax({ + type: 'POST', + url: $(form).attr('action'), + data: formData + }) + .done(function(response) { + // Make sure that the formMessages div has the 'success' class. + $(formMessages).removeClass('error'); + $(formMessages).addClass('success'); + + // Set the message text. + $(formMessages).text(response); + + // Clear the form. + $('#contact-form input[type="text"],#contact-form input[type="email"],#contact-form textarea').val(''); + }) + .fail(function(data) { + // Make sure that the formMessages div has the 'error' class. + $(formMessages).removeClass('success'); + $(formMessages).addClass('error'); + + // Set the message text. + if (data.responseText !== '') { + $(formMessages).text(data.responseText); + } else { + $(formMessages).text('Oops! An error occured and your message could not be sent.'); + } + }); + }); + +}); diff --git a/html/js/jquery.scrollUp.js b/html/js/jquery.scrollUp.js new file mode 100644 index 0000000..445df9b --- /dev/null +++ b/html/js/jquery.scrollUp.js @@ -0,0 +1,162 @@ +(function ($, window, document) { + 'use strict'; + + // Main function + $.fn.scrollUp = function (options) { + + // Ensure that only one scrollUp exists + if (!$.data(document.body, 'scrollUp')) { + $.data(document.body, 'scrollUp', true); + $.fn.scrollUp.init(options); + } + }; + + // Init + $.fn.scrollUp.init = function (options) { + + // Define vars + var o = $.fn.scrollUp.settings = $.extend({}, $.fn.scrollUp.defaults, options), + triggerVisible = false, + animIn, animOut, animSpeed, scrollDis, scrollEvent, scrollTarget, $self; + + // Create element + if (o.scrollTrigger) { + $self = $(o.scrollTrigger); + } else { + $self = $('', { + id: o.scrollName, + href: '#top' + }); + } + + // Set scrollTitle if there is one + if (o.scrollTitle) { + $self.attr('title', o.scrollTitle); + } + + $self.appendTo('body'); + + // If not using an image display text + if (!(o.scrollImg || o.scrollTrigger)) { + $self.html(o.scrollText); + } + + // Minimum CSS to make the magic happen + $self.css({ + display: 'none', + position: 'fixed', + zIndex: o.zIndex + }); + + // Active point overlay + if (o.activeOverlay) { + $('
', { + id: o.scrollName + '-active' + }).css({ + position: 'absolute', + 'top': o.scrollDistance + 'px', + width: '100%', + borderTop: '1px dotted' + o.activeOverlay, + zIndex: o.zIndex + }).appendTo('body'); + } + + // Switch animation type + switch (o.animation) { + case 'fade': + animIn = 'fadeIn'; + animOut = 'fadeOut'; + animSpeed = o.animationSpeed; + break; + + case 'slide': + animIn = 'slideDown'; + animOut = 'slideUp'; + animSpeed = o.animationSpeed; + break; + + default: + animIn = 'show'; + animOut = 'hide'; + animSpeed = 0; + } + + // If from top or bottom + if (o.scrollFrom === 'top') { + scrollDis = o.scrollDistance; + } else { + scrollDis = $(document).height() - $(window).height() - o.scrollDistance; + } + + // Scroll function + scrollEvent = $(window).scroll(function () { + if ($(window).scrollTop() > scrollDis) { + if (!triggerVisible) { + $self[animIn](animSpeed); + triggerVisible = true; + } + } else { + if (triggerVisible) { + $self[animOut](animSpeed); + triggerVisible = false; + } + } + }); + + if (o.scrollTarget) { + if (typeof o.scrollTarget === 'number') { + scrollTarget = o.scrollTarget; + } else if (typeof o.scrollTarget === 'string') { + scrollTarget = Math.floor($(o.scrollTarget).offset().top); + } + } else { + scrollTarget = 0; + } + + // To the top + $self.click(function (e) { + e.preventDefault(); + + $('html, body').animate({ + scrollTop: scrollTarget + }, o.scrollSpeed, o.easingType); + }); + }; + + // Defaults + $.fn.scrollUp.defaults = { + scrollName: 'scrollUp', // Element ID + scrollDistance: 300, // Distance from top/bottom before showing element (px) + scrollFrom: 'top', // 'top' or 'bottom' + scrollSpeed: 300, // Speed back to top (ms) + easingType: 'linear', // Scroll to top easing (see http://easings.net/) + animation: 'fade', // Fade, slide, none + animationSpeed: 200, // Animation in speed (ms) + scrollTrigger: false, // Set a custom triggering element. Can be an HTML string or jQuery object + scrollTarget: false, // Set a custom target element for scrolling to. Can be element or number + scrollText: 'Scroll to top', // Text for element, can contain HTML + scrollTitle: false, // Set a custom title if required. Defaults to scrollText + scrollImg: false, // Set true to use image + activeOverlay: false, // Set CSS color to display scrollUp active point, e.g '#00FFFF' + zIndex: 2147483647 // Z-Index for the overlay + }; + + // Destroy scrollUp plugin and clean all modifications to the DOM + $.fn.scrollUp.destroy = function (scrollEvent) { + $.removeData(document.body, 'scrollUp'); + $('#' + $.fn.scrollUp.settings.scrollName).remove(); + $('#' + $.fn.scrollUp.settings.scrollName + '-active').remove(); + + // If 1.7 or above use the new .off() + if ($.fn.jquery.split('.')[1] >= 7) { + $(window).off('scroll', scrollEvent); + + // Else use the old .unbind() + } else { + $(window).unbind('scroll', scrollEvent); + } + }; + + $.scrollUp = $.fn.scrollUp; + +})(jQuery, window, document); diff --git a/html/js/main.js b/html/js/main.js new file mode 100644 index 0000000..7df6782 --- /dev/null +++ b/html/js/main.js @@ -0,0 +1,1004 @@ +/*-------------------------------------------------- +Template Name: fondle ; +Description: pet shop, pet shitter, pet food, pet care bootstrap 5 Template +Version: 1.0; + +NOTE: main.js, All custom script and plugin activation script in this file. + +----------------------------------------------------*/ + +(function($) { + "use Strict"; + + /*---------------------------- + 2. Mobile Menu Activation + -----------------------------*/ + jQuery('.mobile-menu nav').meanmenu({ + meanScreenWidth: "991", + }); + + /*---------------------------- + 3. Tooltip Activation + ------------------------------ */ + /* + $('.item_add_cart a,.item_quick_link a').tooltip({ + animated: 'fade', + placement: 'top', + container: 'body' + });*/ + + /*--------------------------------- + 4. Cart Box Dropdown Menu + -----------------------------------*/ + $('.drodown-show > a').on('click', function(e) { + e.preventDefault(); + if ($(this).hasClass('active')) { + $('.drodown-show > a').removeClass('active').siblings('.dropdown').slideUp() + $(this).removeClass('active').siblings('.dropdown').slideUp(); + } else { + $('.drodown-show > a').removeClass('active').siblings('.dropdown').slideUp() + $(this).addClass('active').siblings('.dropdown').slideDown(); + } + }); + + /*---------------------------- + 5. Checkout Page Activation + -----------------------------*/ + $('#showlogin').on('click', function() { + $('#checkout-login').slideToggle(); + }); + $('#showcoupon').on('click', function() { + $('#checkout_coupon').slideToggle(); + }); + $('#cbox').on('click', function() { + $('#cbox_info').slideToggle(); + }); + $('#ship-box').on('click', function() { + $('#ship-box-info').slideToggle(); + }); + + + + $('.main-slider-active').slick({ + slidesToShow: 1, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + $('.main-slider-active-dot').slick({ + slidesToShow: 1, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: true, + rows: 1, + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + $('.collective-product-active').slick({ + slidesToShow: 6, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1600, + settings: { + slidesToShow: 5, + } + }, + { + breakpoint: 1400, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 3, + } + }, + + { + breakpoint: 900, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 550, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + $('.collective-product-active-4').slick({ + slidesToShow: 4, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1400, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 992, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 768, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 500, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + + $('.feature-pro-active').slick({ + slidesToShow: 6, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 2, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1600, + settings: { + slidesToShow: 5, + } + }, + { + breakpoint: 1400, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 3, + } + }, + + { + breakpoint: 900, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 550, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + $('.feature-pro-active-4').slick({ + slidesToShow: 4, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 2, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1400, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 992, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 768, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 500, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + + $('.feature-pro-active-4-1').slick({ + slidesToShow: 4, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1400, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 1200, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 900, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 550, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + + $('.testmonial-active').slick({ + slidesToShow: 2, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + $('.small-list-wrapper').slick({ + slidesToShow: 1, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 3, + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + $('.promotion_slider_active').slick({ + slidesToShow: 1, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: true, + rows: 1, + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + $('.blog_slider_active').slick({ + slidesToShow: 3, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + + $('.main_feature_slider').slick({ + slidesToShow: 1, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: true, + rows: 1, + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + + $('.food_feature_slider').slick({ + slidesToShow: 1, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: true, + rows: 1, + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 1, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + $('.promotion-slider-active').slick({ + slidesToShow: 1, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: true, + arrows: false, + speed: 1000, + fade: true, + infinite: true + }); + + $('.brand-logo-active').slick({ + slidesToShow: 5, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: false, + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 350, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + $('.featured-ctg-slider').slick({ + slidesToShow: 6, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: false, + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 2, + } + }, + ] + }); + + $('.banner-slider-active').slick({ + slidesToShow: 4, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: false, + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 700, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 450, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + $('.banner-slider-active-3').slick({ + slidesToShow: 3, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: false, + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 2, + } + }, + ] + }); + + /*--------------------- + Product dec slider + --------------------- */ + $('.product-dec-slider-2').slick({ + infinite: true, + slidesToShow: 4, + vertical: true, + verticalSwiping: true, + slidesToScroll: 1, + centerPadding: '60px', + arrows: false, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 992, + settings: { + slidesToShow: 4, + slidesToScroll: 1 + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 4, + slidesToScroll: 1 + } + }, + { + breakpoint: 479, + settings: { + slidesToShow: 4, + slidesToScroll: 1 + } + } + ] + }); + + /* Product details slider */ + + $('.product-details-slider-active').slick({ + slidesToShow: 4, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 700, + settings: { + slidesToShow: 2, + } + }, + { + breakpoint: 550, + settings: { + slidesToShow: 1, + } + }, + ] + }); + + $('.thumb_slider_active').slick({ + slidesToShow: 5, + slidesToScroll: 1, + autoplay: false, + autoplaySpeed: 5000, + dots: false, + rows: 1, + arrows: true, + prevArrow: '
', + nextArrow: '
', + responsive: [{ + breakpoint: 1169, + settings: { + slidesToShow: 4, + } + }, + { + breakpoint: 969, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 767, + settings: { + slidesToShow: 3, + } + }, + { + breakpoint: 350, + settings: { + slidesToShow: 2, + } + }, + ] + }); + + + + /*-------------------------- + Product Zoom + ---------------------------- */ + $(".zoompro").elevateZoom({ + gallery: "gallery", + galleryActiveClass: "active", + zoomWindowWidth: 300, + zoomWindowHeight: 100, + scrollZoom: false, + zoomType: "inner", + cursor: "crosshair" + }); + + + /*---------------------------- + 16. ScrollUp Activation + -----------------------------*/ + $.scrollUp({ + scrollName: 'scrollUp', // Element ID + topDistance: '550', // Distance from top before showing element (px) + topSpeed: 1000, // Speed back to top (ms) + animation: 'fade', // Fade, slide, none + scrollSpeed: 900, + animationInSpeed: 1000, // Animation in speed (ms) + animationOutSpeed: 1000, // Animation out speed (ms) + scrollText: '', // Text for element + activeOverlay: false // Set CSS color to display scrollUp active point, e.g '#00FFFF' + }); + + /*---------------------------- + 17. Sticky-Menu Activation + ------------------------------ */ + $(window).on('scroll', function() { + if ($(this).scrollTop() > 100) { + $('.header-sticky').addClass("sticky"); + } else { + $('.header-sticky').removeClass("sticky"); + } + }); + + /*---------------------------- + 18. Nice Select Activation + ------------------------------ */ + $('select').niceSelect(); + + /*---------------------------- + 19. Price Slider Activation + -----------------------------*/ + $("#slider-range").slider({ + range: true, + min: 0, + max: 100, + values: [0, 85], + slide: function(event, ui) { + $("#amount").val("$" + ui.values[0] + " $" + ui.values[1]); + } + }); + $("#amount").val("$" + $("#slider-range").slider("values", 0) + + " $" + $("#slider-range").slider("values", 1)); + + + /*---------------------------- + 15. Countdown Js Activation + -----------------------------*/ + $('[data-countdown]').each(function() { + var $this = $(this), + finalDate = $(this).data('countdown'); + $this.countdown(finalDate, function(event) { + $this.html(event.strftime('

%D

Days

%H

Hours

%M

Mins

%S

Secs
')); + }); + }); + + /*---------------------------- + 16. Product Varient + -----------------------------*/ + $('.grid_color_image li .variant_img').on('click', function() { + var variantImage = jQuery(this).parent().find('.variant_img a img').attr('src'); + jQuery(this).parents('.single-template-product').find('.pro-img a img.primary-img').attr({ src: variantImage }); + return false; + }); + + //$('.variant_img a').addClass('active'); + + $('.grid_color_image li .variant_img a').on('click', function() { + $('.grid_color_image li .variant_img a.active').removeClass('active'); + $(this).addClass('active'); + }); + + + + /* =========Portfolio Active =============*/ + var isotopFilter = $('.portfolio-filters'); + var isotopGrid = $('.portfolios:not(.portfolios-slider-active)'); + var isotopGridItemSelector = $('.portfolio-single'); + var isotopGridItem = '.portfolio-single'; + + isotopFilter.find('button:first-child').addClass('active'); + + //Images Loaded + isotopGrid.imagesLoaded(function() { + /*-- init Isotope --*/ + var initial_items = isotopGrid.data('show'); + var next_items = isotopGrid.data('load'); + var loadMoreBtn = $('.load-more-toggle'); + + var $grid = isotopGrid.isotope({ + itemSelector: isotopGridItem, + layoutMode: 'masonry', + }); + + /*-- Isotop Filter Menu --*/ + isotopFilter.on('click', 'button', function() { + var filterValue = $(this).attr('data-filter'); + + isotopFilter.find('button').removeClass('is-checked'); + $(this).addClass('is-checked'); + + // use filterFn if matches value + $grid.isotope({ + filter: filterValue + }); + }); + + + }); + + + + /*--------------------- + Video popup + --------------------- */ + $('.video-popup').magnificPopup({ + type: 'iframe', + mainClass: 'mfp-fade', + removalDelay: 160, + preloader: false, + zoom: { + enabled: true, + } + }); + + /*-- + Magnific Popup + ------------------------*/ + $('.img-popup').magnificPopup({ + type: 'image', + gallery: { + enabled: true + } + }); + + + /*-- + Magnific Popup + ------------------------*/ + $('.img-popup-2').magnificPopup({ + type: 'image', + gallery: { + enabled: true + } + }); + + + /*-------------------------- + tab active + ---------------------------- */ + var ProductDetailsSmall = $('.product-details-small a'); + + ProductDetailsSmall.on('click', function(e) { + e.preventDefault(); + + var $href = $(this).attr('href'); + + ProductDetailsSmall.removeClass('active'); + $(this).addClass('active'); + + $('.product-details-large .tab-pane').removeClass('active'); + $('.product-details-large ' + $href).addClass('active'); + }) + + + /*--- Clickable menu active ----*/ + const slinky = $('#menu').slinky() + + /*====== sidebarCart ======*/ + function sidebarMainmenu() { + var menuTrigger = $('.clickable-mainmenu-active'), + endTrigger = $('button.clickable-mainmenu-close'), + container = $('.clickable-mainmenu'); + menuTrigger.on('click', function(e) { + e.preventDefault(); + container.addClass('inside'); + }); + endTrigger.on('click', function() { + container.removeClass('inside'); + }); + }; + sidebarMainmenu(); + + + + /*--------------------- + Sidebar active + --------------------- */ + $('.sidebar-active').stickySidebar({ + topSpacing: 80, + bottomSpacing: 30, + minWidth: 767, + }); + + + + + +})(jQuery); \ No newline at end of file diff --git a/html/js/plugins.js b/html/js/plugins.js new file mode 100644 index 0000000..64280ad --- /dev/null +++ b/html/js/plugins.js @@ -0,0 +1,200 @@ +// Avoid `console` errors in browsers that lack a console. +(function() { + var method; + var noop = function () {}; + var methods = [ + 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', + 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', + 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', + 'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn' + ]; + var length = methods.length; + var console = (window.console = window.console || {}); + + while (length--) { + method = methods[length]; + + // Only stub undefined methods. + if (!console[method]) { + console[method] = noop; + } + } +}()); + +// Place any jQuery/helper plugins in here. + + +/*! + * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) + * Copyright (c) 2016 Edson Hilios + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";function b(a){if(a instanceof Date)return a;if(String(a).match(g))return String(a).match(/^[0-9]*$/)&&(a=Number(a)),String(a).match(/\-/)&&(a=String(a).replace(/\-/g,"/")),new Date(a);throw new Error("Couldn't cast `"+a+"` to a date object.")}function c(a){var b=a.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}function d(a){return function(b){var d=b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var f=0,g=d.length;f1?c:d}var f=[],g=[],h={precision:100,elapse:!1,defer:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHours",N:"totalMinutes",T:"totalSeconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.firstTick=!0,this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.options.defer===!1&&this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var a,b=new Date;return a=this.finalDate.getTime()-b.getTime(),a=Math.ceil(a/1e3),a=!this.options.elapse&&a<0?0:Math.abs(a),this.totalSecsLeft===a||this.firstTick?void(this.firstTick=!1):(this.totalSecsLeft=a,this.elapsed=b>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),weeksToMonth:Math.floor(this.totalSecsLeft/60/60/24/7)%4,months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-b.getFullYear()),totalDays:Math.floor(this.totalSecsLeft/60/60/24),totalHours:Math.floor(this.totalSecsLeft/60/60),totalMinutes:Math.floor(this.totalSecsLeft/60),totalSeconds:this.totalSecsLeft},void(this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish"))))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}}); + + + +/* + Slick Slider + Version: 1.8.1 + Author: Ken Wheeler + Website: http://kenwheeler.github.io + Docs: http://kenwheeler.github.io/slick + Repo: http://github.com/kenwheeler/slick + Issues: http://github.com/kenwheeler/slick/issues + */ +/* global window, document, define, jQuery, setInterval, clearInterval */ +!function(i){"use strict";"function"==typeof define&&define.amd?define(["jquery"],i):"undefined"!=typeof exports?module.exports=i(require("jquery")):i(jQuery)}(function(i){"use strict";var e=window.Slick||{};(e=function(){var e=0;return function(t,o){var s,n=this;n.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:i(t),appendDots:i(t),arrows:!0,asNavFor:null,prevArrow:'',nextArrow:'',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(e,t){return i('',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); + + + +//# sourceMappingURL=slinky.min.js.map + +"use strict";function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var _extends=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};_classCallCheck(this,e),this.settings=_extends({},this.options,i),this._init(t)}return _createClass(e,[{key:"options",get:function(){return{resize:!0,speed:300,theme:"slinky-theme-default",title:!1}}}]),_createClass(e,[{key:"_init",value:function(e){this.menu=$(e),this.base=this.menu.children().first();this.base;var t=this.menu,i=this.settings;t.addClass("slinky-menu").addClass(i.theme),this._transition(i.speed),$("a + ul",t).prev().addClass("next"),$("li > a",t).wrapInner("");var n=$("
  • ").addClass("header");$("li > ul",t).prepend(n);var s=$("").prop("href","#").addClass("back");$(".header",t).prepend(s),i.title&&$("li > ul",t).each(function(e,t){var i=$(t).parent().find("a").first().text();if(i){var n=$("
    ").addClass("title").text(i);$("> .header",t).append(n)}}),this._addListeners(),this._jumpToInitial()}},{key:"_addListeners",value:function(){var e=this,t=this.menu,i=this.settings;$("a",t).on("click",function(n){if(e._clicked+i.speed>Date.now())return!1;e._clicked=Date.now();var s=$(n.currentTarget);(0===s.attr("href").indexOf("#")||s.hasClass("next")||s.hasClass("back"))&&n.preventDefault(),s.hasClass("next")?(t.find(".active").removeClass("active"),s.next().show().addClass("active"),e._move(1),i.resize&&e._resize(s.next())):s.hasClass("back")&&(e._move(-1,function(){t.find(".active").removeClass("active"),s.parent().parent().hide().parentsUntil(t,"ul").first().addClass("active")}),i.resize&&e._resize(s.parent().parent().parentsUntil(t,"ul")))})}},{key:"_jumpToInitial",value:function(){var e=this.menu.find(".active");e.length>0&&(e.removeClass("active"),this.jump(e,!1))}},{key:"_move",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){};if(0!==e){var i=this.settings,n=this.base,s=Math.round(parseInt(n.get(0).style.left))||0;n.css("left",s-100*e+"%"),"function"==typeof t&&setTimeout(t,i.speed)}}},{key:"_resize",value:function(e){this.menu.height(e.outerHeight())}},{key:"_transition",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:300,t=this.menu,i=this.base;t.css("transition-duration",e+"ms"),i.css("transition-duration",e+"ms")}},{key:"jump",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(e){var i=this.menu,n=this.settings,s=$(e),a=i.find(".active"),r=0;a.length>0&&(r=a.parentsUntil(i,"ul").length),i.find("ul").removeClass("active").hide();var l=s.parentsUntil(i,"ul");l.show(),s.show().addClass("active"),t||this._transition(0),this._move(l.length-r),n.resize&&this._resize(s),t||this._transition(n.speed)}}},{key:"home",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=this.base,i=this.menu,n=this.settings;e||this._transition(0);var s=i.find(".active"),a=s.parentsUntil(i,"ul");this._move(-a.length,function(){s.removeClass("active").hide(),a.not(t).hide()}),n.resize&&this._resize(t),!1===e&&this._transition(n.speed)}},{key:"destroy",value:function(){var e=this,t=this.base,i=this.menu;$(".header",i).remove(),$("a",i).removeClass("next").off("click"),i.css({height:"","transition-duration":""}),t.css({left:"","transition-duration":""}),$("li > a > span",i).contents().unwrap(),i.find(".active").removeClass("active"),i.attr("class").split(" ").forEach(function(e){0===e.indexOf("slinky")&&i.removeClass(e)}),["settings","menu","base"].forEach(function(t){return delete e[t]})}}]),e}();jQuery.fn.slinky=function(e){return new Slinky(this,e)}; +//# sourceMappingURL=slinky.min.js.map + + + +/** + * sticky-sidebar - A JavaScript plugin for making smart and high performance. + * @version v3.3.0 + * @link https://github.com/abouolia/sticky-sidebar + * @author Ahmed Bouhuolia + * @license The MIT License (MIT) +**/ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e():"function"==typeof define&&define.amd?define(e):e()}(0,function(){"use strict";function t(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var e=function(){function t(t,e){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{};if(t(this,s),this.options=s.extend(n,o),this.sidebar="string"==typeof e?document.querySelector(e):e,void 0===this.sidebar)throw new Error("There is no specific sidebar element.");this.sidebarInner=!1,this.container=this.sidebar.parentElement,this.affixedType="STATIC",this.direction="down",this.support={transform:!1,transform3d:!1},this._initialized=!1,this._reStyle=!1,this._breakpoint=!1,this._resizeListeners=[],this.dimensions={translateY:0,topSpacing:0,lastTopSpacing:0,bottomSpacing:0,lastBottomSpacing:0,sidebarHeight:0,sidebarWidth:0,containerTop:0,containerHeight:0,viewportHeight:0,viewportTop:0,lastViewportTop:0},["handleEvent"].forEach(function(t){i[t]=i[t].bind(i)}),this.initialize()}return e(s,[{key:"initialize",value:function(){var t=this;if(this._setSupportFeatures(),this.options.innerWrapperSelector&&(this.sidebarInner=this.sidebar.querySelector(this.options.innerWrapperSelector),null===this.sidebarInner&&(this.sidebarInner=!1)),!this.sidebarInner){var e=document.createElement("div");for(e.setAttribute("class","inner-wrapper-sticky"),this.sidebar.appendChild(e);this.sidebar.firstChild!=e;)e.appendChild(this.sidebar.firstChild);this.sidebarInner=this.sidebar.querySelector(".inner-wrapper-sticky")}if(this.options.containerSelector){var i=document.querySelectorAll(this.options.containerSelector);if((i=Array.prototype.slice.call(i)).forEach(function(e,i){e.contains(t.sidebar)&&(t.container=e)}),!i.length)throw new Error("The container does not contains on the sidebar.")}"function"!=typeof this.options.topSpacing&&(this.options.topSpacing=parseInt(this.options.topSpacing)||0),"function"!=typeof this.options.bottomSpacing&&(this.options.bottomSpacing=parseInt(this.options.bottomSpacing)||0),this._widthBreakpoint(),this.calcDimensions(),this.stickyPosition(),this.bindEvents(),this._initialized=!0}},{key:"bindEvents",value:function(){window.addEventListener("resize",this,{passive:!0}),window.addEventListener("scroll",this,{passive:!0}),this.sidebar.addEventListener("update"+i,this),this.options.resizeSensor&&"undefined"!=typeof ResizeSensor&&(new ResizeSensor(this.sidebarInner,this.handleEvent),new ResizeSensor(this.container,this.handleEvent))}},{key:"handleEvent",value:function(t){this.updateSticky(t)}},{key:"calcDimensions",value:function(){if(!this._breakpoint){var t=this.dimensions;t.containerTop=s.offsetRelative(this.container).top,t.containerHeight=this.container.clientHeight,t.containerBottom=t.containerTop+t.containerHeight,t.sidebarHeight=this.sidebarInner.offsetHeight,t.sidebarWidth=this.sidebar.offsetWidth,t.viewportHeight=window.innerHeight,this._calcDimensionsWithScroll()}}},{key:"_calcDimensionsWithScroll",value:function(){var t=this.dimensions;t.sidebarLeft=s.offsetRelative(this.sidebar).left,t.viewportTop=document.documentElement.scrollTop||document.body.scrollTop,t.viewportBottom=t.viewportTop+t.viewportHeight,t.viewportLeft=document.documentElement.scrollLeft||document.body.scrollLeft,t.topSpacing=this.options.topSpacing,t.bottomSpacing=this.options.bottomSpacing,"function"==typeof t.topSpacing&&(t.topSpacing=parseInt(t.topSpacing(this.sidebar))||0),"function"==typeof t.bottomSpacing&&(t.bottomSpacing=parseInt(t.bottomSpacing(this.sidebar))||0),"VIEWPORT-TOP"===this.affixedType?t.topSpacing=t.containerBottom?(t.translateY=t.containerBottom-i,e="CONTAINER-BOTTOM"):n>=t.containerTop&&(t.translateY=n-t.containerTop,e="VIEWPORT-TOP"):t.containerBottom<=s?(t.translateY=t.containerBottom-i,e="CONTAINER-BOTTOM"):i+t.translateY<=s?(t.translateY=s-i,e="VIEWPORT-BOTTOM"):t.containerTop+t.translateY<=n&&(e="VIEWPORT-UNBOTTOM"),t.translateY=Math.max(0,t.translateY),t.translateY=Math.min(t.containerHeight,t.translateY),t.lastViewportTop=t.viewportTop,e}},{key:"_getStyle",value:function(t){if(void 0!==t){var e={inner:{},outer:{}},i=this.dimensions;switch(t){case"VIEWPORT-TOP":e.inner={position:"fixed",top:i.topSpacing,left:i.sidebarLeft-i.viewportLeft,width:i.sidebarWidth};break;case"VIEWPORT-BOTTOM":e.inner={position:"fixed",top:"auto",left:i.sidebarLeft,bottom:i.bottomSpacing,width:i.sidebarWidth};break;case"CONTAINER-BOTTOM":case"VIEWPORT-UNBOTTOM":var n=this._getTranslate(0,i.translateY+"px");e.inner=n?{transform:n}:{position:"absolute",top:i.translateY,width:i.sidebarWidth}}switch(t){case"VIEWPORT-TOP":case"VIEWPORT-BOTTOM":case"VIEWPORT-UNBOTTOM":case"CONTAINER-BOTTOM":e.outer={height:i.sidebarHeight,position:"relative"}}return e.outer=s.extend({height:"",position:""},e.outer),e.inner=s.extend({position:"relative",top:"",left:"",bottom:"",width:"",transform:this._getTranslate()},e.inner),e}}},{key:"stickyPosition",value:function(t){if(!this._breakpoint){t=this._reStyle||t||!1;var e=this.getAffixType(),n=this._getStyle(e);if((this.affixedType!=e||t)&&e){var o="affix."+e.toLowerCase().replace("viewport-","")+i;s.eventTrigger(this.sidebar,o),"STATIC"===e?s.removeClass(this.sidebar,this.options.stickyClass):s.addClass(this.sidebar,this.options.stickyClass);for(var r in n.outer)this.sidebar.style[r]=n.outer[r];for(var a in n.inner){var c="number"==typeof n.inner[a]?"px":"";this.sidebarInner.style[a]=n.inner[a]+c}var p="affixed."+e.toLowerCase().replace("viewport-","")+i;s.eventTrigger(this.sidebar,p)}else this._initialized&&(this.sidebarInner.style.left=n.inner.left);this.affixedType=e}}},{key:"_widthBreakpoint",value:function(){window.innerWidth<=this.options.minWidth?(this._breakpoint=!0,this.affixedType="STATIC",this.sidebar.removeAttribute("style"),s.removeClass(this.sidebar,this.options.stickyClass),this.sidebarInner.removeAttribute("style")):this._breakpoint=!1}},{key:"updateSticky",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._running||(this._running=!0,function(e){requestAnimationFrame(function(){switch(e){case"scroll":t._calcDimensionsWithScroll(),t.observeScrollDir(),t.stickyPosition();break;case"resize":default:t._widthBreakpoint(),t.calcDimensions(),t.stickyPosition(!0)}t._running=!1})}(e.type))}},{key:"_setSupportFeatures",value:function(){var t=this.support;t.transform=s.supportTransform(),t.transform3d=s.supportTransform(!0)}},{key:"_getTranslate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return this.support.transform3d?"translate3d("+t+", "+e+", "+i+")":!!this.support.translate&&"translate("+t+", "+e+")"}},{key:"destroy",value:function(){window.removeEventListener("resize",this),window.removeEventListener("scroll",this),this.sidebar.classList.remove(this.options.stickyClass),this.sidebar.style.minHeight="",this.sidebar.removeEventListener("update"+i,this);var t={inner:{},outer:{}};t.inner={position:"",top:"",left:"",bottom:"",width:"",transform:""},t.outer={height:"",position:""};for(var e in t.outer)this.sidebar.style[e]=t.outer[e];for(var n in t.inner)this.sidebarInner.style[n]=t.inner[n];this.options.resizeSensor&&"undefined"!=typeof ResizeSensor&&(ResizeSensor.detach(this.sidebarInner,this.handleEvent),ResizeSensor.detach(this.container,this.handleEvent))}}],[{key:"supportTransform",value:function(t){var e=!1,i=t?"perspective":"transform",n=i.charAt(0).toUpperCase()+i.slice(1),s=["Webkit","Moz","O","ms"],o=document.createElement("support").style;return(i+" "+s.join(n+" ")+n).split(" ").forEach(function(t,i){if(void 0!==o[t])return e=t,!1}),e}},{key:"eventTrigger",value:function(t,e,i){try{var n=new CustomEvent(e,{detail:i})}catch(t){(n=document.createEvent("CustomEvent")).initCustomEvent(e,!0,!0,i)}t.dispatchEvent(n)}},{key:"extend",value:function(t,e){var i={};for(var n in t)void 0!==e[n]?i[n]=e[n]:i[n]=t[n];return i}},{key:"offsetRelative",value:function(t){var e={left:0,top:0};do{var i=t.offsetTop,n=t.offsetLeft;isNaN(i)||(e.top+=i),isNaN(n)||(e.left+=n),t="BODY"===t.tagName?t.parentElement:t.offsetParent}while(t);return e}},{key:"addClass",value:function(t,e){s.hasClass(t,e)||(t.classList?t.classList.add(e):t.className+=" "+e)}},{key:"removeClass",value:function(t,e){s.hasClass(t,e)&&(t.classList?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\b)"+e.split(" ").join("|")+"(\\b|$)","gi")," "))}},{key:"hasClass",value:function(t,e){return t.classList?t.classList.contains(e):new RegExp("(^| )"+e+"( |$)","gi").test(t.className)}}]),s}()}();window.StickySidebar=i,function(){if("undefined"!=typeof window){var t=window.$||window.jQuery||window.Zepto;if(t){t.fn.stickySidebar=function(e){return this.each(function(){var n=t(this),s=t(this).data("stickySidebar");if(s||(s=new i(this,"object"==typeof e&&e),n.data("stickySidebar",s)),"string"==typeof e){if(void 0===s[e]&&-1===["destroy","updateSticky"].indexOf(e))throw new Error('No method named "'+e+'"');s[e]()}})},t.fn.stickySidebar.Constructor=i;var e=t.fn.stickySidebar;t.fn.stickySidebar.noConflict=function(){return t.fn.stickySidebar=e,this}}}}()}); diff --git a/html/login.html b/html/login.html new file mode 100644 index 0000000..45ffcff --- /dev/null +++ b/html/login.html @@ -0,0 +1,929 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + + + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + + + + + + + +
    + +
    + + + + +
    +
    + + +
    +
    + + +
  • + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/product-details-2.html b/html/product-details-2.html new file mode 100644 index 0000000..7dcd0e5 --- /dev/null +++ b/html/product-details-2.html @@ -0,0 +1,2353 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + +
    +
    +
    + + +
    +
    + +
    + + + -25% + New + +
    +
    +
    + + + +
    +
    +

    Details Product Name Here

    + +
    + $98.25$72.00 +
    + + + +
    Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. Ut enim ad minim venialo quis nostrud exercitation ullamco. consectetur adipisic elit eiusm tempor. + + +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + + +
    + +
    + + + + + + +
    + + + +
    + + +
    +
    Guaranteed safe Pay :
    + single-product +
    + + +
    +
    + + +
    + +
    + +
    + + +
    +
    +
    +
    +
    + + +
    +
    +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    +
    +
    + +
    +
    +

    Customer Review

    +
    + +
    +
    +
    + + +
    +
    + + +
    + +
    +
    Your Rating
    +
      + +
    • + + + + + +
    • + +
    + +
    + +
    + + +
    +
    + + +
    + +
    +
    + +
    + +
    +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec est tristique auctor. Donec non est at libero vulputate rutrum. Morbi ornare lectus quis justo gravida semper. Nulla tellus mi, vulputate adipiscing cursus eu Donec ac tempus ante. + + Fusce ultricies massa massa. Fusce aliquam, purus eget sagittis vulputate, sapien libero hendrerit est, sed commodo augue nisi non neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor, lorem et placerat vestibulum, metus nisi posuere nisl, in accumsan elit odio quis mi. +

    +
    + +
    + +
    +
    + +
    +
    + +
    + + + + +
    +
    + +
    + #Our products +

    Related Products

    +
    + +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + + +
    + +
    + + + + + + + + + +
    +
    + + +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/product-details-3.html b/html/product-details-3.html new file mode 100644 index 0000000..cfeae59 --- /dev/null +++ b/html/product-details-3.html @@ -0,0 +1,2350 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + + +
    +
    +
    + +
    +
    + +
    + + + -25% + New + +
    + + + +
    +
    + + + +
    +
    +

    Details Product Name Here

    + +
    + $98.25$72.00 +
    + + + +
    Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. Ut enim ad minim venialo quis nostrud exercitation ullamco. consectetur adipisic elit eiusm tempor. + + +
    + + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + + +
    + +
    + + + + + + +
    + + + +
    + + +
    +
    Guaranteed safe Pay :
    + single-product +
    + + +
    +
    + + +
    + +
    + +
    + + +
    +
    +
    +
    +
    + + +
    +
    +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    +
    +
    + +
    +
    +

    Customer Review

    +
    + +
    +
    +
    + + +
    +
    + + +
    + +
    +
    Your Rating
    +
      + +
    • + + + + + +
    • + +
    + +
    + +
    + + +
    +
    + + +
    + +
    +
    + +
    + +
    +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec est tristique auctor. Donec non est at libero vulputate rutrum. Morbi ornare lectus quis justo gravida semper. Nulla tellus mi, vulputate adipiscing cursus eu Donec ac tempus ante. + + Fusce ultricies massa massa. Fusce aliquam, purus eget sagittis vulputate, sapien libero hendrerit est, sed commodo augue nisi non neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor, lorem et placerat vestibulum, metus nisi posuere nisl, in accumsan elit odio quis mi. +

    +
    + +
    + +
    +
    + +
    +
    + +
    + + + + +
    +
    + +
    + #Our products +

    Related Products

    +
    + +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + + + + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/product-details-4.html b/html/product-details-4.html new file mode 100644 index 0000000..badbce9 --- /dev/null +++ b/html/product-details-4.html @@ -0,0 +1,2288 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + +
    +
    +
    + + +
    + +
    + + + + + +
    + +
    + +
    + + +
    +
    +
    +
    +
    + + +
    +
    +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    +
    +
    + +
    +
    +

    Customer Review

    +
    + +
    +
    +
    + + +
    +
    + + +
    + +
    +
    Your Rating
    +
      + +
    • + + + + + +
    • + +
    + +
    + +
    + + +
    +
    + + +
    + +
    +
    + +
    + +
    +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec est tristique auctor. Donec non est at libero vulputate rutrum. Morbi ornare lectus quis justo gravida semper. Nulla tellus mi, vulputate adipiscing cursus eu Donec ac tempus ante. + + Fusce ultricies massa massa. Fusce aliquam, purus eget sagittis vulputate, sapien libero hendrerit est, sed commodo augue nisi non neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor, lorem et placerat vestibulum, metus nisi posuere nisl, in accumsan elit odio quis mi. +

    +
    + +
    + +
    +
    + +
    +
    + +
    + + + + +
    +
    + +
    + #Our products +

    Related Products

    +
    + +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + + + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/product-details-5.html b/html/product-details-5.html new file mode 100644 index 0000000..89d32cd --- /dev/null +++ b/html/product-details-5.html @@ -0,0 +1,2312 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + +
    +
    +
    + + +
    + +
    + + +
    +
    +

    Details Product Name Here

    + +
    + $98.25$72.00 +
    + + + +
    Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. Ut enim ad minim venialo quis nostrud exercitation ullamco. consectetur adipisic elit eiusm tempor. + + +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    + +
    + + + + + + +
    + + + +
    + + +
    +
    Guaranteed safe Pay :
    + single-product +
    + + +
    +
    + + +
    + +
    + +
    + + +
    +
    +
    +
    +
    + + +
    +
    +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    +
    +
    + +
    +
    +

    Customer Review

    +
    + +
    +
    +
    + + +
    +
    + + +
    + +
    +
    Your Rating
    +
      + +
    • + + + + + +
    • + +
    + +
    + +
    + + +
    +
    + + +
    + +
    +
    + +
    + +
    +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec est tristique auctor. Donec non est at libero vulputate rutrum. Morbi ornare lectus quis justo gravida semper. Nulla tellus mi, vulputate adipiscing cursus eu Donec ac tempus ante. + + Fusce ultricies massa massa. Fusce aliquam, purus eget sagittis vulputate, sapien libero hendrerit est, sed commodo augue nisi non neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor, lorem et placerat vestibulum, metus nisi posuere nisl, in accumsan elit odio quis mi. +

    +
    + +
    + +
    +
    + +
    +
    + +
    + + + + +
    +
    + +
    + #Our products +

    Related Products

    +
    + +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/product-details-6.html b/html/product-details-6.html new file mode 100644 index 0000000..26d44a8 --- /dev/null +++ b/html/product-details-6.html @@ -0,0 +1,2304 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + + +
    +
    +
    + +
    +
    +
    +
    + + -25% + New +
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    + + + + +
    +
    +

    Details Product Name Here

    + +
    + $98.25$72.00 +
    + +
    Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. Ut enim ad minim venialo quis nostrud exercitation ullamco. consectetur adipisic elit eiusm tempor. + + +
    + + + +
    +
    + +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    + +
    + + +
    +
    + + +
    + +
    + +
    +
    + Tag : + +
    + +
    + Categories : + +
    +
    + + + + + +
    + + + +
    + + +
    +
    Guaranteed safe Pay :
    + single-product +
    + + +
    +
    + + +
    + +
    + +
    + + +
    +
    +
    +
    +
    + + +
    +
    +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    +
    +
    + +
    +
    +

    Customer Review

    +
    + +
    +
    +
    + + +
    +
    + + +
    + +
    +
    Your Rating
    +
      + +
    • + + + + + +
    • + +
    + +
    + +
    + + +
    +
    + + +
    + +
    +
    + +
    + +
    +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec est tristique auctor. Donec non est at libero vulputate rutrum. Morbi ornare lectus quis justo gravida semper. Nulla tellus mi, vulputate adipiscing cursus eu Donec ac tempus ante. + + Fusce ultricies massa massa. Fusce aliquam, purus eget sagittis vulputate, sapien libero hendrerit est, sed commodo augue nisi non neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor, lorem et placerat vestibulum, metus nisi posuere nisl, in accumsan elit odio quis mi. +

    +
    + +
    + +
    +
    + +
    +
    + +
    + + + + +
    +
    + +
    + #Our products +

    Related Productes

    +
    + +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + + + + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/product-details.html b/html/product-details.html new file mode 100644 index 0000000..1c5d7bc --- /dev/null +++ b/html/product-details.html @@ -0,0 +1,2343 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + + +
    +
    +
    + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    + + -25% + New + +
    + + + +
    +
    +
    + + + +
    +
    +

    Details Product Name Here

    + +
    + $98.25$72.00 +
    + + + +
    Lorem ipsum dolor sit amet, consectetur adipisic elit eiusm tempor incidid ut labore et dolore magna aliqua. Ut enim ad minim venialo quis nostrud exercitation ullamco. consectetur adipisic elit eiusm tempor. + + +
    + + + +
    +
    + +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    + +
    + + +
    +
    + + +
    + +
    + +
    +
    + Tag : + +
    + +
    + Categories : + +
    +
    + + + + + +
    + + + +
    + + +
    +
    Guaranteed safe Pay :
    + single-product +
    + + +
    +
    + + +
    + +
    + +
    + + +
    +
    +
    +
    +
    + + +
    +
    +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    +
    +
    + +
    +
    +

    Customer Review

    +
    + +
    +
    +
    + + +
    +
    + + +
    + +
    +
    Your Rating
    +
      + +
    • + + + + + +
    • + +
    + +
    + +
    + + +
    +
    + + +
    + +
    +
    + +
    + +
    +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec est tristique auctor. Donec non est at libero vulputate rutrum. Morbi ornare lectus quis justo gravida semper. Nulla tellus mi, vulputate adipiscing cursus eu Donec ac tempus ante. + + Fusce ultricies massa massa. Fusce aliquam, purus eget sagittis vulputate, sapien libero hendrerit est, sed commodo augue nisi non neque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor, lorem et placerat vestibulum, metus nisi posuere nisl, in accumsan elit odio quis mi. +

    +
    + +
    + +
    +
    + +
    +
    + +
    + + + + +
    +
    + +
    + #Our products +

    Related Products

    +
    + +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + + + + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/register.html b/html/register.html new file mode 100644 index 0000000..b34f687 --- /dev/null +++ b/html/register.html @@ -0,0 +1,960 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + + +
    +
    + +
    +
    + +
    +
    +
    +
    + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/shop-list.html b/html/shop-list.html new file mode 100644 index 0000000..aa5dbd3 --- /dev/null +++ b/html/shop-list.html @@ -0,0 +1,2738 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + +
    +
    + +
    + +
    + +
    + + +
    + +
    +
    + + +
    + + +
    + +
    + + +
    +
    + + +
    +
    + +
    + +
    + +
    +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    + +
    + + +
    + + +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 2

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $150.50 + $95.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    + +
    + +
    + + New + + + single-product + + + + +
    + + + +
    +
    +

    Latest Product Title Here 3

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $180.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 4

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $150.50 + $95.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    + +
    + +
    + + New + + + single-product + + + + +
    + + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $180.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $150.50 + $95.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    + + +
    + +
    + +
    + +
    +
    +
    + Showing 1-15 of 45 items +
    +
    + +
    +
    +
    + +
    + +
    + +
    + +
    + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/shop.html b/html/shop.html new file mode 100644 index 0000000..887f51b --- /dev/null +++ b/html/shop.html @@ -0,0 +1,2738 @@ + + + + + + + Shop || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + +
    +
    + +
    + +
    + +
    + + +
    + +
    +
    + + +
    + + +
    + +
    + + +
    +
    + + +
    +
    + +
    + +
    + +
    +
    +
    + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    +
    + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + + + + + + +
    + + +
    +
    +

    Latest Product Title Here 9

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 10

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 11

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + + +
    +
    + +
    + + -25% + New + + + single-product + single-product + + + + +
    +
    +
    + +
    + + +
    +
    +

    Latest Product Title Here 12

    + +
    + + + + + +
    + +
    + +
    + S + M + L + XL + XXL +
    + +
    + + + + + +
    + +
    + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    +
    + + +
    + +
    + + +
    + + +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 1

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 2

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $150.50 + $95.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    + +
    + +
    + + New + + + single-product + + + + +
    + + + +
    +
    +

    Latest Product Title Here 3

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $180.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 4

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 5

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $150.50 + $95.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    + +
    + +
    + + New + + + single-product + + + + +
    + + + +
    +
    +

    Latest Product Title Here 6

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $180.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 7

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $100.50 + $75.50 +
    + +
    +
    + + Add To Cart + +
    +
    + +
    + +
    + +
    + + -25% + New + + + single-product + + + + +
    +
    +
    +
    + + + +
    +
    +

    Latest Product Title Here 8

    + +
    + + + + + +
    + + +

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's pets_tab dummy text ever since the 1500s, when an unknown printer took.

    + + + +
    + $150.50 + $95.50 +
    + +
    +
    + + Sold Out + +
    +
    + +
    + + +
    + +
    + +
    + +
    +
    +
    + Showing 1-15 of 45 items +
    +
    + +
    +
    +
    + +
    + +
    + +
    + +
    + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/style.css b/html/style.css new file mode 100644 index 0000000..6491092 --- /dev/null +++ b/html/style.css @@ -0,0 +1,7048 @@ +/*-------------------------------------------------------------------- +Template Name: Animart +Description: pet shop, pet shitter, pet food, pet care bootstrap 5 Template +Version: 1.0.0; +---------------------------------------------------------------------- + + CSS INDEX + ================ + 1. Default CSS + 2. Newsletter Popup CSS + 3. Header CSS + 4. Slider CSS + 9. Products CSS + 10. Testmonial CSS + 11. Newsletter CSS + 12. Blog & Blog Details CSS + 13. Footer CSS + 14. Promoton CSS + 15. countdown_promotion_banner + 16. best_feature_area CSS + 17. Breadcrumb CSS + 18. Shop Page CSS + 19. Product Details CSS + 20. Compare Page CSS + 21. Checkout CSS + 22. Cart & Wish List CSS + 23. About us CSS + 24. Login CSS + 25. Register CSS + 26. 404 Page CSS + 27. FAQ Page CSS + 28. Clickable Menu CSS + +----------------------------------------------------------------------*/ + +@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700'); + +@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap'); + +@font-face { + font-family: 'g-italic'; + src: url('fonts/georgia_italic-webfont.woff2') format('woff2'), + url('fonts/georgia_italic-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +/*----------------------------------------*/ +/* Default CSS +/*----------------------------------------*/ +body { + background: #fff none repeat scroll 0 0; + color: #666666; + font-family: "Poppins", sans-serif; + font-size: 14px; + font-weight: 400; + line-height: 26px; +} +@media only screen and (min-width: 1200px) { + .container { + max-width: 1200px; + } +} +a { + color: #1b1b1c; + text-decoration: none; +} + +a:hover { + text-decoration: none; + color:#00adf6 +} + +a:active, +a:hover, +a:focus { + outline: 0 none; + text-decoration: none +} + +ul { + list-style: outside none none; + margin: 0; + padding: 0 +} + +.clear { + clear: both +} + +.fix { + overflow: hidden; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + color: #1b1b1c; + line-height: 1.25; + font-family: 'Roboto Condensed', sans-serif; +} + +.container-fluid { + padding-left: 75px; + padding-right: 75px; +} +.wrapper.wrapper-boxed-layout { + margin: 0 100px; + width: calc(100% - 200px); + -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); + -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); + -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); + overflow-x: hidden; +} +.adp_top{ + padding-top: 80px; +} +.adp_bottom{ + padding-bottom: 80px; +} +.footer_widget .subscribtion_form { + position: relative; + z-index: 1; +} +.footer_widget .subscribtion_form input { + border: 1px solid #ccc; + font-size: 13px; + height: 45px; + width: 100%; + background-color: transparent; + color: #ffffff; +} +.footer_widget .subscribtion_form .submit { + border: none; + color: #888; + cursor: pointer; + font-size: 24px; + height: 45px; + position: absolute; + right: 0; + top: 0; + background-color: transparent; + width: 50px; +} +.footer_widget .subscribtion_form .submit:hover { + color: #00adf6; +} +.single_footer_apps .footer_heading { + margin-top: 20px; +} +.apps_download { + margin-top: 15px; + display: flex; +} +.apps_download a { + display: block; + margin-right: 10px; +} +.apps_download a:last-child { + margin: 0; +} +.apps_download a img { + border-radius:5px +} +.footer_area_wrapper { + background: #eee; +} +.footer_contact li span { + color: #222; + font-weight: 500; + width: 20%; + display: inline-block; +} +.footer_contact li i { + margin-right: 10px; + color: #00adf6; + font-size: 20px; + position: relative; + top: 3px; +} +.footer_contact li { + margin-bottom: 8px; +} + +/*color bg footer*/ + +.footer_color_bg .footer-title { + color: #fff; +} +.footer_color_bg .footer-content p { + color: #fff; +} +.footer_color_bg .footer_contact li span { + color: #fff; +} +.footer_color_bg .footer_contact li { + color: #fff; +} +.footer_color_bg .footer-list li a { + color: #fff; +} +.footer_color_bg .footer_widget p { + color: #fff; +} +.footer_color_bg .single_footer_apps .footer_heading h6 { + color: #fff; +} + + +/* btn style start */ + +.small-btn a { + border: 1px solid #1b1b1c; + border-radius: 25px; + color: #1b1b1c; + line-height: 38px; + margin-top: 25px; + padding: 0 25px; + display: inline-block; +} + +.small-btn a:hover { + color: #fff; + background: #00adf6; + border-color: #00adf6; +} + + +.small-btn.icon-btn a { + border-color: #1b1b1c; + color: #1b1b1c; + padding: 0 20px; + text-transform: capitalize; +} +.single-promotion-wrapper .small-btn.icon-btn a { + margin-top: 0; +} +.small-btn.icon-btn a:hover, +.item_add_cart a:hover { + background: #00adf6; + color: #fff; + border-color: #00adf6; +} + +.small-btn.blue-btn a { + background: #00adf6; + color: #fff; + border-color: #00adf6; + margin-right: 5px; +} + +.small-btn.blue-btn a:hover { + background: #fff; + color: #00adf6; + border-color: #00adf6; +} + +.small-btn.blue-btn.dark-blue-btn a { + background: #00adf6; +} + +.small-btn.blue-btn.dark-blue-btn a:hover { + color: #00adf6; + background: transparent; + border-color: #00adf6; +} + +.icon-btn.orange-btn a { + background: #00adf6; + color: #fff; + border-color: #00adf6; +} + +.icon-btn.orange-btn a:hover { + background: transparent; + color: #00adf6; + border-color: #00adf6; +} + +/* btn style end */ + +.tooltip-inner { + padding: 2px 12px 6px; + font-size: 14px; +} + +.promotion-content h4 { + color: #00adf6; +} +.promotion-content h2 { + font-size: 50px; + margin-bottom: 20px; +} +.section-title { + margin-bottom: 40px; + text-align: center; +} + +.section-title > span { + display: block; + font-family: g-italic; + font-size: 20px; + margin-bottom: 10px; + margin-top: -4px; +} + +.section-title h2 { + font-size: 36px; + font-weight: 600; + margin: 0; + padding-bottom: 25px; + position: relative; + text-transform: capitalize; +} + +.section-title-five.section-gutter { + margin-bottom: 0; +} + +.section-title-three h2 { + color: #fff; +} + +.section-title-three h2 span, +.section-title-four h2 span{ + color: #00adf6; +} + +.section-title-five h2 { + font-weight: 400; + text-transform: capitalize; +} + +.section-title-five h2 span { + font-weight: 600; +} + +.section-title.section-title-five h2::after, +.section-title.section-title-five h2::before { + background: #00adf6; +} +.section-title h2::after, +.section-title h2::before { + background: #666 none repeat scroll 0 0; + bottom: 0; + content: ""; + height: 3px; + left: 50%; + margin-left: -50px; + position: absolute; + width: 100px; + border-radius: 5px; +} +.sample-style h2::after, +.sample-style h2::before { + background: #00adf6; +} + +.section-title h2::before { + background: #00adf6; + z-index: 9; + width: 40px; + margin-left: -20px; +} + +.section-title.section-title-two > span { + display: block; + font-family: "Poppins",sans-serif; + font-size: 14px; + font-weight: 500; + letter-spacing: 0.25em; + margin-bottom: 8px; + text-transform: uppercase; + margin-top: -8px; +} +.teach-spech .sample-style > span { + color: #eee; +} +.single-promotion-wrapper .row { + align-items: center; +} + + +/*----------------------------------------*/ +/* Newsletter Popup CSS +/*----------------------------------------*/ +.subscribe_area_wrapper { + display: flex; + height: 100%; +} +.popup_wrapper { + background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0; + height: 100%; + opacity: 0; + position: fixed; + -webkit-transition: all 0.5s ease 0s; + transition: all 0.5s ease 0s; + visibility: hidden; + width: 100%; + z-index: 9999999; +} + +.subscribe_area_pop { + background: #ffffff none repeat scroll 0 0; + bottom: 0; + height: 390px; + left: 0; + margin: auto; + max-width: 790px; + position: absolute; + right: 0; + top: 0; +} +.popup_off { + background: #666666 none repeat scroll 0 0; + color: #ffffff; + cursor: pointer; + display: block; + font-size: 11px; + font-weight: 500; + height: 25px; + line-height: 25px; + position: absolute; + right: 5px; + text-align: center; + text-decoration: none; + text-transform: uppercase; + top: 5px; + -webkit-transition: all 0.3s ease-in 0s; + transition: all 0.3s ease-in 0s; + width: 25px; + border-radius: 100px; +} +.popup_off:hover { + background: #00adf6 none repeat scroll 0 0; +} + +.subscribe-form-group { + margin-top: 15px; +} + +.subscribe-form-group input { + background: #eaeaea none repeat scroll 0 0; + border: 0 none; + height: 41px; + line-height: 20px; + padding: 0 20px; + width: 380px; +} + +.subscribe-bottom label { + font-size: 14px; + margin: 0; + vertical-align: middle; +} + +.subscribe-bottom input { + vertical-align: middle; +} + +.subscribe-form-group button { + border: 0 none; + color: #333; + display: block; + font-size: 12px; + font-weight: 600; + line-height: 38px; + margin: 20px auto; + padding: 2px 30px 0; + text-transform: uppercase; + -webkit-transition: all 0.3s ease-in-out 0s; + transition: all 0.3s ease-in-out 0s; +} + +.subscribe-form-group.subscribe-form-style-two button { + background: #61c0bf; +} + +.subscribe-form-group.subscribe-form-style-three button { + background: #ffb400; +} + +.subscribe-form-group.subscribe-form-style-four button { + background: #35a875; +} + +.subscribe-form-group button:hover { + background: #00adf6 none repeat scroll 0 0; + color: #fff; +} + +.subscribe_area p { + padding: 0 60px; +} + +.subscribe_area h2 { + font-size: 35px; + font-weight: 500; + margin-bottom: 10px; + text-transform: uppercase; +} +.subscribe_area_left { + height: 100%; + background: #232323; + width: 35%; + display: flex; + flex-wrap: wrap; + align-items: center; + padding: 20px; +} +.subscribe_area { + width: 65%; + padding: 50px 20px; +} + .subscribe_area_left h1 { + color: #00adf6; + } + .subscribe_area_left h3 { + color: #fff; + } + .subscribe_area_left p { + color: #00adf6; + } + .subscribe_area_left h1 span { + font-size: 60px; +} + + +/*----------------------------------------*/ +/* Header CSS +/*----------------------------------------*/ + +.absolute-header { + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: 1049; +} +.header-sticky.sticky { + background: #fff; + -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4); + box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4); + left: 0; + position: fixed; + right: 0; + top: 0; + -webkit-transition: all 300ms ease-in 0s; + transition: all 300ms ease-in 0s; + z-index: 1049; +} +.header-style-seven.header-sticky.sticky { + -webkit-box-shadow: none; + box-shadow: none; + background: transparent; +} +.header-style-two.header-sticky.sticky { + background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0; +} +.wrapper-boxed-layout .header-sticky.sticky { + left: 100px; + right: 100px; +} +.sticky { + -webkit-animation: 800ms ease-in-out 0s normal none 1 running fadeInDown; + animation: 800ms ease-in-out 0s normal none 1 running fadeInDown; +} + +.sticky .header-menu-list > li, +.sticky .cart-box > ul > li { + padding: 15px 0; +} + +.sticky .cart-box > ul > li > a span + span.total-pro { + font-size: 10px; + height: 16px; + line-height: 16px; + top: 6px; + width: 16px; +} + +.header-menu-list > li, +.cart-box > ul > li { + padding: 35px 0; + position: relative; +} +.header-style-eight .header-menu-list > li, +.header-style-eight .cart-box > ul > li { + padding: 30px 0; +} + +.header-menu-list > li { + display: inline-block; +} + +.drop-icon::after { + content: "\eac8"; + font-family:icofont; + font-size: 12px; + margin-left: 5px; +} + +.header-menu-list > li > a { + color: #444; +} + +.header-menu-list > li > a, +.header-menu-list > li > ul.common_ddown li a { + font-size: 14px; + font-weight: 600; + line-height: 26px; + padding: 8px 20px; + text-transform: capitalize; +} +.header-area .header-menu-list > li:hover > a { + color: #00adf6 +} + +.header-menu-list > li > ul.common_ddown li a, +.cart-box-right ul > li > a { + display: block; + font-size: 14px; + font-weight: 400; + padding: 5px 10px; + text-transform: capitalize; + text-align: left; +} +.header-menu-list li.static_class { + position: static; +} + +.megamenu .menu-tile { + color: #2c2c2c; + display: block; + font-weight: 700; + line-height: 20px; + margin-bottom: 20px; + text-transform: uppercase; + text-align: left; + position: relative; +} +.megamenu .menu-tile::after { + position: absolute; + content: ""; + height: 1px; + width: 50px; + background: #00adf6; + left: 0; + bottom: -10px; +} +.logo_hide_class { + display: none; +} +.settings_cart_hide { + display: none; +} +.header-sticky.sticky .logo_hide_class { + display: block; +} +.header-sticky.sticky .settings_cart_hide { + display: block; +} + +.header-sticky.sticky .header_eight_top { + display: none; + transition: .3s; +} + +/* header bottom megamenu css end */ +.megamenu { + background: #fff none repeat scroll 0 0; + border: 1px solid #e5e5e3; + padding: 20px 25px; +} + +.header-menu-list .common_ddown.megamenu { + display: -moz-flex; + display: -ms-flex; + display: -o-flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} +.header-menu-list .common_ddown.megamenu.mega_style_2 { + flex-wrap: wrap; + +} + +.header-menu-list ul.common_ddown.megamenu li a { + padding-left: 0; +} +.header-menu-list ul.common_ddown.megamenu > li.mega_img a { + padding: 0; +} +.header-menu-list ul.common_ddown.megamenu { + width: 1000px; + padding: 30px; +} +.header-menu-list ul.common_ddown.megamenu > li { + width: 100%; + padding-right: 20px; + padding-left: 20px; +} +.header-menu-list .common_ddown.megamenu.mega_style_2 > li { + width: 25%; +} +.header-menu-list .common_ddown.megamenu.mega_style_2 li.mega_img { + width: 100%; + margin-top: 20px; +} +.header-menu-list ul.common_ddown.megamenu > li:first-child { + padding-left: 0; +} +.header-menu-list ul.common_ddown.megamenu > li.mega_img { + padding: 0; +} + +.header-menu-list ul.common_ddown.megamenu > li:not(:first-child) { + border-left: 1px solid #f1f1f1; +} +.header-menu-list ul.common_ddown.megamenu > li.mega_img { + border: none; +} + +.common_ddown { + background: #fff; + left: 0; + opacity: 0; + padding: 10px; + position: absolute; + top: 100%; + -webkiit-transform: scaleY(0); + -webkit-transform: scaleY(0); + transform: scaleY(0); + -webkit-transform-origin: 0 0 0; + transform-origin: 0 0 0; + width: 210px; + visibility: hidden; + z-index: 9999; + -webkit-transition: 0.5s; + transition: 0.5s; + -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1); + -ms-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1); +} + +.header-menu-list li:hover ul.common_ddown { + opacity: 1; + visibility: visible; + -webkiit-transform: scaleY(1); + -webkit-transform: scaleY(1); + transform: scaleY(1); +} + +.dropdown { + -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1); + display: none; + position: absolute; + right: 0; + top: 100%; + z-index: 9999; +} + +.categorie-search-box { + left: auto; + padding: 0; + right: 0; + width: 400px; +} + +.dropdown.categorie-search-box { + border-radius: 0; +} + +.categorie-search-box form { + color: #a9a9a9; + padding: 0; + position: relative; + width: 100%; +} + +.categorie-search-box input, +.subscribe-box input { + background: #f7f7f7 none repeat scroll 0 0; + color: #555; + font-size: 13px; + height: 45px; + padding: 10px 50px 10px 15px; + width: 100%; + border: none; +} + +.categorie-search-box button { + background: transparent none repeat scroll 0 0; + border: 0 none; + color: #333; + height: 45px; + line-height: 55px; + padding: 0; + position: absolute; + right: 0; + text-align: center; + top: 0; + -webkit-transition: all 300ms ease-in 0s; + transition: all 300ms ease-in 0s; + width: 45px; +} + +.categorie-search-box button span { + font-size: 20px; +} + +.categorie-search-box button:focus { + border: none; +} + +.categorie-search-box button:hover { + color: #00adf6; +} + +.categorie-search-box .form-group { + background: transparent none repeat scroll 0 0; + display: inline-block; + left: 0; + margin: 0; + position: absolute; + top: 12px; + width: 150px; +} + +.bootstrap-select option { + font-size: 13px; +} + +.nice-select::after { + margin-top: -3px; +} + +.nice-select .current { + display: block; + overflow: hidden; + width: 100%; +} + +.categorie-search-box .nice-select .list { + height: 350px; + overflow-y: auto; +} + +.bootstrap-select { + border-radius: 15px 0 0 15px; + border-style: none solid none none; + border-width: 0 1px 0 0; + color: #777777; + font-size: 13px; + height: 25px; + line-height: 25px; + margin: 0; + width: 150px; + background: #ededed; +} + +.cart-box > ul { + -moz-box-pack: end; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.cart-box > ul > li { + line-height: 1; +} + +.cart-box-width { + left: auto; + right: 0; + background: white; + -webkit-box-shadow: 0 3px 9.3px 0.7px rgba(0, 0, 0, 0.15); + box-shadow: 0 3px 9.3px 0.7px rgba(0, 0, 0, 0.15); + padding: 0; + width: 290px; +} + +.cart-box > ul > li > a > span { + font-size: 18px; + position: relative; +} + +.cart-box > ul > li:not(:first-child) { + margin-left: 35px; +} +.cart-box > ul > li > a { + color: #333; + display: block; +} +.cart-text { + display: block; +} + +.single-cart-box { + margin-bottom: 18px; + overflow: hidden; + position: relative; +} + +.cart-img { + float: left; + padding-right: 10px; + position: relative; + width: 35%; +} + +.cart-img img { + max-width: 100%; +} +.cart-content { + float: left; + width: 65%; +} + +.cart-content h6 a { + color: #333; + display: block; + font-size: 14px; + line-height: 20px; + overflow: hidden; + overflow-wrap: break-word; + text-overflow: ellipsis; + text-transform: capitalize; + white-space: nowrap; +} +.cart-content h6 { + margin-bottom: 5px; +} + +.cart-content span { + display: block; + font-size: 14px; + line-height: 20px; +} + +.cart-price { + margin: 5px 0; +} +.cart-actions a { + background: #2c2c2c none repeat scroll 0 0; + -webkit-box-shadow: none; + box-shadow: none; + color: white; + display: block; + font-size: 14px; + font-weight: 400; + height: 35px; + line-height: 35px; + margin-top: 10px; +} +.cart-box .single-select-block .nice-select { + display: block; + width: 100%; +} +.cart-checkout { + background: #f26667 none repeat scroll 0 0; + color: #fff; +} + +.cart-checkout:hover { + background-color: #00adf6; + border-color: transparent; + color: #fff; +} + +.del-icone { + color: #555; + font-size: 14px; + position: absolute; + right: 0; + top: 3px; + z-index: 45; +} + +.del-icone:hover, +.cart-content h6 a:hover, +.currency-selector ul li a:hover { + color: #00adf6; +} + +.wish-list-item { + position: relative; + padding-right: 30px; + margin-right: 30px; +} + +.cart-box-width { + padding: 25px 30px 0; +} +.cart-box-width .cart-footer { + padding-bottom: 25px; +} +.cart-box > ul > li > a span + span.total-pro { + background: #00adf6 none repeat scroll 0 0; + border-radius: 100%; + color: #fff; + font-size: 11px; + height: 18px; + left: 12px; + line-height: 18px; + position: absolute; + text-align: center; + top: 25px; + width: 18px; +} + +.price-content { + border-bottom: 1px solid #ededed; + margin-bottom: 20px; +} +.single-cart-box { + border-bottom: 1px solid #ededed; + margin-bottom: 10px; + padding-bottom: 10px; +} + +.price-content { + overflow: hidden; + padding-bottom: 20px; +} + +.price-content li { + font-size: 15px; + font-weight: 500; + line-height: 1.5; +} + +.price-content li span, +.cart-content span.cart-price { + color: #00adf6; + float: right; + font-size: 15px; + font-weight: 500; +} + +.cart-content span.cart-price { + float: none; +} + +.pro-quantity { + background: #00adf6 none repeat scroll 0 0; + border-radius: 100%; + color: white; + font-size: 12px; + left: 5px; + line-height: 23px; + min-width: 25px; + padding: 2px 0 0; + position: absolute; + text-align: center; + top: 3px; +} + +.currency-selector h3 { + display: inline-block; + font-size: 14px; + font-weight: 600; + line-height: 20px; + margin-bottom: 10px; + text-transform: uppercase; +} +.currency-selector > li:not(:last-child) { + border-bottom: 1px solid #ededed; + margin-bottom: 25px; + padding-bottom: 15px; +} +.currency-selector > li{ + width: 100%; + float: left; +} +.currency-selector ul li a { + display: block; + font-size: 14px; + line-height: 20px; + padding: 5px 0; + text-transform: capitalize; +} +.currency-selector ul li a img { + margin-right: 5px; +} +.currency-selector > li:last-child { + padding-bottom: 25px; +} +/* others header styel css */ +.header-style-two .header-menu-list > li > a, .header-style-two .cart-box > ul > li > a { + color: #1b1b1c; +} +.header-style-two .cart-box > ul > li > a span + span.total-pro { + background: #00adf6 none repeat scroll 0 0; + color: #fff; +} + +.header-style-two { + border-bottom: 1px solid #ebebeb; +} +.header-style-four { + border-bottom: 1px solid #ebebeb; +} +.header-style-five { + border-bottom: 1px solid #ebebeb; +} +.header-style-six { + border-bottom: 1px solid #ebebeb; +} +.header-style-eight { + border-bottom: 1px solid #ebebeb; +} +.header-style-two .cart-box > ul > li > a{ + color: #1b1b1c; +} +.header-area .cart-box > ul > li > a:hover { + color: #00adf6 +} +.header-style-three { + background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0; +} +.cart-checkout:hover { + background: #00adf6; +} +.header-style-four .cart-box > ul > li > a span + span.total-pro { + background: #00adf6 none repeat scroll 0 0; + color: #fff; +} +.header_style_shadow { + margin: 0 auto; + max-width: 1170px; + margin-top: 40px; + position: relative; +} +.sticky .header_style_shadow { + margin-top: 0; +} +.header_style_inner { + background: #fff; + padding: 10px 15px; + margin: 0 auto; + position: relative; + z-index: 5; + box-shadow: 0px 10px 30px 0px rgba(209,209,209,0.5); +} +.header_style_shadow:after, +.header_style_shadow:before { + background: #fff; + content: ''; + display: block; + height: 100%; + position: absolute; + box-shadow: 0px 10px 30px 0px rgba(209,209,209,0.5); +} +.header_style_shadow:before{ + left: 6px; + right: 6px; + top: 6px; + z-index: 3; +} +.header_style_shadow:after{ + left: 12px; + right: 12px; + top: 12px; + z-index: 2; +} +.header_style_shadow .header-menu-list > li { + padding: 20px 0; +} +.header_style_shadow .cart-box > ul > li { + padding: 20px 0; +} +.header_style_shadow .cart-box > ul > li > a span + span.total-pro { + top: 10px; +} +.header_msg a { + background-color: #ffffff; + border-radius: 3px; + color: #333; + display: inline-block; + font-size: 14px; + margin-left: 5px; + transition: 0.3s; + text-decoration: underline; +} +.header_msg a:hover { + color: #00adf6; +} +.header_msg p { + margin: 0; +} + +/*----------------------------------------*/ +/*Slider CSS +/*----------------------------------------*/ +.align-center-left { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} + +.fullscreen { + height: 100vh; + width: 100%; +} +.slider-area .single-slide .row { + align-items: center; +} +.slider-area.fullscreen .single-slide .row { + height: 100vh; +} +.slider-area.fixed-height .single-slide .row { + height: 800px; +} + +.container-fluid .slider-content { + max-width: 55%; +} +.container-fluid .slider-content.text-center { + margin: auto; +} +.container-fluid .slider-content.text-end { + float: right; +} +.slider-content h4 { + color: #00adf6; + font-size: 20px; + margin-bottom: 22px; + text-transform: uppercase; + letter-spacing: 1px; +} +.slider-content h1 { + color: #444; + font-size: 90px; + font-weight: 500; + line-height: 110px; + margin-bottom: 30px; +} +.slider-content h1 span { + color: #00adf6; +} +.single-slide .slider-content p { + color: #444; + font-size: 16px; + font-weight: normal; + line-height: 28px; + margin-top: 15px; + letter-spacing: .5px; + max-width: 80%; + margin-bottom: 0; +} +.container .slider-content.text-center { + margin: auto; +} +.single-slide .slider-content.text-center p { + margin: auto; +} +.container .slider-content.text-end { + float: right; +} +.single-slide .slider-content.text-end p { + float: right; +} +.slider-content .small-btn a { + margin-top: 50px; + padding: 0 45px; + height: 50px; + line-height: 50px; + font-size: 16px; + text-transform: uppercase; +} +.container .slider-content { + max-width: 80%; +} +.slider-area .slick-dotted.slick-slider { + margin-bottom: 0; +} +.slider-area .default_dot_style .slick-dots { + bottom: 20px; +} + +/* slider_animate_style-01 */ + +.slick-slide.slick-active.slider_animate_style-01 .slider-content h4 { + + -webkit-animation: 1s linear 0s alternate none 1 running slideInDown; + animation: 1s linear 0s alternate none 1 running slideInDown; +} + +.slick-slide.slick-active.slider_animate_style-01 .slider-content h1 { + -webkit-animation: 1000ms linear 0s alternate none 1 running slideInUup; + animation: 1000ms linear 0s alternate none 1 running slideInUp; +} + +.slick-slide.slick-active.slider_animate_style-01 .slider-content p { + -webkit-animation: 1200ms linear 0s alternate none 1 running slideInDown; + animation: 1200ms linear 0s alternate none 1 running slideInDown; +} + +.slick-slide.slick-active.slider_animate_style-01 .slider-content .slide-btn { + -webkit-animation: 0.5s linear 0s alternate none 1 running slideInUp; + animation: 0.5s linear 0s alternate none 1 running slideInUp; +} + +/* slider_animate_style-02 */ + +.slick-slide.slick-active.slider_animate_style-02 .slider-content h1 { + -webkit-animation: 2s linear 0s alternate none 1 running slideInDown; + animation: 2s linear 0s alternate none 1 running slideInDown; +} + +.slick-slide.slick-active.slider_animate_style-02 .slider-content h4 { + -webkit-animation: 1s linear 0s alternate none 1 running zoomIn; + animation: 1s linear 0s alternate none 1 running zoomIn; +} + +.slick-slide.slick-active.slider_animate_style-02 .slider-content p { + -webkit-animation: 1200ms linear 0s alternate none 1 running slideInDown; + animation: 1200ms linear 0s alternate none 1 running slideInDown; +} + +.slick-slide.slick-active.slider_animate_style-02 .slider-content .slide-btn { + -webkit-animation: 0.5s linear 0s alternate none 1 running slideInUp; + animation: 0.5s linear 0s alternate none 1 running slideInUp; +} + +/* All Sliding Css */ +.owl-nav div { + background: rgba(255, 255, 255, 0.75); + color: #454545; + border: 1px solid #ebebeb; + border-radius: 100%; + cursor: pointer; + display: block; + font-size: 18px; + height: 62px; + left: 30px; + line-height: 62px; + opacity: 0; + position: absolute; + text-align: center; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + -webkit-transition: all 0.5s ease-in-out 0s; + transition: all 0.5s ease-in-out 0s; + width: 62px; + z-index: 8; +} + +.owl-nav div.owl-next { + right: 30px; + left: auto; +} + +.owl-nav div:hover { + background: #00adf6; + color: #fff; +} + +.main-slider-active:hover .owl-nav div, +.collective-product-active:hover .owl-nav div, +.feature-pro-active:hover .owl-nav div { + opacity: 1; +} +.feature-pro-active-row{ + margin: -10px; +} +.collective-product-active:hover .owl-nav div.owl-prev, +.feature-pro-active:hover .owl-nav div.owl-prev { + left: 0; +} + +.collective-product-active:hover .owl-nav div.owl-next, +.feature-pro-active:hover .owl-nav div.owl-next { + right: 0; +} + +.main-slider-active .owl-nav div { + left: 30px; + background: rgba(255, 255, 255, 0.15); + border: none; + color: #fff; +} + +.main-slider-active .owl-nav div:hover { + background: #fff; + color: #454545; +} + +.main-slider-active .owl-nav div.owl-next { + right: 30px; + left: auto; +} + + +/* default pagination dot css */ +.owl-dots { + margin-top: 40px; + position: static; + text-align: center; + width: 100%; + z-index: 12; + line-height: 1; +} + +.owl-dots .owl-dot { + background: #dcdcdc; + border-radius: 100%; + cursor: pointer; + display: inline-block; + font-size: 0; + height: 14px; + margin: 0 4px; + position: relative; + text-align: center; + -webkit-transition: all 300ms ease-in 0s; + transition: all 300ms ease-in 0s; + width: 14px; + z-index: 8; +} + +.owl-dots .owl-dot.active { + background: #fff; + border: 1px solid #26b5f1; + -webkit-transform: scale(1.5); + transform: scale(1.5); +} + +.main-slider-active .owl-dots { + position: absolute; + margin-top: 0; + bottom: 35px; +} + +.main-slider-active .owl-dots .owl-dot { + background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0; +} + +.main-slider-active .owl-dots .owl-dot.active { + -webkit-transform: scale(1); + transform: scale(1); + background: #fff; + border: none; +} + +/*----------------------------------------*/ +/* Service Area CSS +/*----------------------------------------*/ +.service-content h4 { + display: inline-block; + font-size: 16px; + font-weight: 500; + text-transform: uppercase; + margin-bottom: 12px; + letter-spacing: .5px; +} +.service-content p { + font-size: 13px; + line-height: 24px; +} +.service-feature-img { + max-width: 100px; + margin-bottom: 20px; +} +.single-service .main-feature-icon { + margin-bottom: 20px; +} +.single-service:hover .main-feature-icon { + color: #00adf6; + border-color: #00adf6; +} +.service-area.adp_bottom { + padding-bottom: 60px; +} + +/*------------------------------------------------*/ +/* 7. Integrated Camera & Dron Facilities CSS +/*------------------------------------------------*/ +.border-style { + border-bottom: 1px solid #ebebeb; + padding-bottom: 35px; +} + +.camera-features .single-cam-features { + -webkit-box-flex: 1; + -ms-flex: 1 1 0px; + flex: 1 1 0; + display: -moz-flex; + display: -ms-flex; + display: -o-flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} + +.cam-icon { + padding-right: 15px; +} + +.cam-content p { + color: #2c2c2c; + font-size: 40px; +} + +.cam-content p > span { + font-size: 16px; + display: inline-block; + margin-left: 10px; +} + +.cam-content span { + display: block; + font-size: 12px; + line-height: 1; + margin-top: 8px; +} + +.dron-facilities { + padding-bottom: 90px; + position: relative; +} + +.same-facilities { + max-width: 225px; + position: absolute; + text-align: left; +} + +.same-facilities h4 { + font-size: 20px; + font-weight: 500; + margin-bottom: 8px; + text-transform: capitalize; +} + +.same-facilities.text-1 { + left: 0; + padding-right: 10px; + text-align: right; + top: 27%; +} + +.same-facilities.text-2 { + bottom: 7%; + left: 4%; + padding-right: 10px; + text-align: right; +} + +.same-facilities.text-3 { + padding-left: 10px; + right: 0; + top: 20%; +} + +.same-facilities.text-4 { + bottom: 23%; + max-width: 250px; + padding-left: 10px; + right: 0; +} + +.single-features { + overflow: hidden; + margin-top: 30px; +} + +.single-features .feature-img { + float: left; + text-align: center; + width: 40px; +} + +.single-features .feature-content { + overflow: hidden; + padding-left: 25px; +} + +.single-features .feature-content p { + font-size: 13px; + font-weight: 300; + line-height: 1; + margin-bottom: 5px; +} + +.single-features .feature-content span { + font-size: 20px; + font-weight: 300; + line-height: 1; + text-transform: uppercase; + color: #1b1b1c; +} + +/*------------------------------------------------*/ +/* 9. All Products CSS +/*------------------------------------------------*/ +.single-template-product { + position: relative; + border: 1px solid #e5e5e5; + text-align: center; + -webkit-box-shadow: 1px 1px 0 0 #ffffff; + box-shadow: 1px 1px 0 0 #ffffff; + -webkit-transition: all 300ms ease-in-out; + transition: all 300ms ease-in-out; + margin-bottom: 30px; +} +.collective-product.adp_bottom { + padding-bottom: 50px; +} +.featured-product.adp_bottom { + padding-bottom: 50px; +} +.single-template-product:hover{ + border-color: #fff; + -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.12); + box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.12); +} + +.pro-img { + position: relative; +} + +.pro-img img { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: all 0.5s ease-in-out 0s; + transition: all 0.5s ease-in-out 0s; + width: 100%; +} + +.pro-img .secondary-img { + left: 0; + opacity: 0; + position: absolute; + top: 0; + z-index: 3; +} + +.single-template-product:hover .pro-img .secondary-img { + opacity: 1; +} +.product_content_wrap { + padding-top: 15px; + padding-bottom: 30px; + border-top: 1px solid #eee; + background: #fff; +} +.product_content h4 { + margin-bottom: 5px; +} +.product_content h4 a { + display: block; + font-size: 14px; + font-weight: 500; + line-height: 20px; + text-transform: capitalize; +} + +.product_content h4 a:hover { + color: #00adf6; +} +.product-rating { + margin-bottom: 5px; +} +.product-rating i { + color: #00adf6; +} +.item_quick_link { + opacity: 0; + position: absolute; + -webkit-transition: all 300ms ease-in-out 0s; + transition: all 300ms ease-in-out 0s; + visibility: hidden; + z-index: 3; + left: 50%; + top: 50%; + transform: translateY(-50%) translatex(-50%); +} + +.single-template-product:hover .item_quick_link { + opacity: 1; + visibility: visible; +} + +.item_quick_link a { + background-color: #fff; + color: #434343; + display: block; + font-size: 14px; + font-weight: normal; + line-height: 40px; + text-align: center; + width: 40px; + height: 40px; + border-radius: 100px; + box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.12); +} + +.item_quick_link a:hover { + background-color: #00adf6; + color: #fff; +} + +.regular-price { + color: #00adf6; + font-family: "Poppins", sans-serif; + font-size: 16px; + font-weight: 600; +} + +.discount_price { + color: #666666; + font-size: 14px; + font-weight: 400; + text-decoration: line-through; + margin-left: 5px; + font-family: "Poppins", sans-serif; +} + +.item_add_cart { + bottom: 15px; + left: 50%; + margin: auto; + opacity: 0; + position: absolute; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + visibility: hidden; + white-space: nowrap; + -webkit-transition: all 300ms ease-in-out 0s; + transition: all 300ms ease-in-out 0s; +} + +.single-template-product:hover .item_add_cart { + bottom: 20px; + opacity: 1; + visibility: visible; +} + +.item_add_cart a { + background: #fff none repeat scroll 0 0; + border: 1px solid #e5e5e5; + color: #454545; + font-family: "Poppins", sans-serif; + font-size: 13px; + font-weight: 500; + line-height: 36px; + padding: 0 20px; + height: 40px; + display: inline-block; + border-radius: 50px; + margin: 0 2px; +} +.item_add_cart .grid_compare, +.item_add_cart .grid_wishlist{ + width: 40px; + padding: 0; + line-height: 40px; +} +.shop-area .single-template-product { + margin-bottom: 30px; +} +/* product sticker */ +.sticker-new, .sticker-sale { + background: #00adf6 none repeat scroll 0 0; + border-radius: 15px; + color: #fff; + display: inline-block; + font-size: 12px; + font-weight: 600; + height: 26px; + left: 10px; + line-height: 27px; + min-width: 56px; + padding: 0 14px; + position: absolute; + text-align: center; + text-transform: uppercase; + top: 10px; + z-index: 5; +} + +.sticker-sale { + background: #d31129 none repeat scroll 0 0; + right: 10px; + left: auto; +} + +.nav.tabs-area.pro-tabs-area { + display: flex; + margin-bottom: 40px; + text-align: center; +} +.nav.tabs-area.pro-tabs-area.center { + justify-content: center; +} +.nav.tabs-area.pro-tabs-area.right { + justify-content: right; +} +.nav.tabs-area.pro-tabs-area.left { + justify-content: left; +} +.pro-tabs-area li { + display: inline-block; + width: 20%; + padding-right: 15px; +} +.pro-tabs-area li:last-child { + padding-right: 0; +} +.pro-tabs-area li a { + border: 1px solid #e5e5e5; + border-radius: 20px; + -webkit-box-shadow: 1px 1px 0 0 #fff; + box-shadow: 1px 1px 0 0 #fff; + cursor: pointer; + display: block; + font-size: 14px; + font-weight: 400; + line-height: 40px; + padding: 0 18px; + position: relative; + text-transform: capitalize; +} + +.pro-tabs-area li a.active, +.pro-tabs-area li a:hover { + background: #00adf6; + color: #fff; + border-color: #00adf6; +} + +.amazing-pro .product-rating i, +.amazing-pro .product_content h4 a:hover, +.amazing-pro .regular-price { + color: #00adf6; +} + +.amazing-pro .item_add_cart a:hover { + background: #00adf6; + border-color: #00adf6; +} + +.amazing-pro .owl-nav div:hover { + background: #00adf6; +} + +.smart-watch-pro .product-rating i, +.smart-watch-pro .product_content h4 a:hover, +.smart-watch-pro .regular-price { + color: #00adf6; +} + +.smart-watch-pro .item_add_cart a:hover { + background: #00adf6; + border-color: #00adf6; +} + +.smart-watch-pro .owl-nav div:hover { + background: #00adf6; +} + +.slick-slider .slick-slide [class*="col-"] { + max-width: 100%; +} + +/*varient css*/ +.grid_color { + display: flex; + justify-content: center; + margin-bottom: 10px; +} +.grid_color span { + height: 20px; + width: 20px; + display: block; + margin: 0 6px; + cursor: pointer; + border-radius: 50px; + position: relative; +} +.grid_color span.active { + +} +.grid_color span.active::before { + position: absolute; + left: 0; + top: 0; + height: 100%; + width: 100%; + content: "\f021"; + font-family: "icofont"; + font-size: 10px; + color: #fff; + line-height: 20px; +} + +.grid_size { + display: flex; + justify-content: center; + margin-bottom: 10px; +} +.grid_size span { + margin: 0 10px; + font-size: 12px; + cursor: pointer; + color: #ccc; + border-radius: 50px; +} +.grid_size span.active { + color: #333; +} +.product_grid_varient { + margin-bottom: 15px; +} +.grid_color_image { + display: flex; + position: absolute; + bottom: 5px; + left: 5px; + right: 5px; + justify-content: center; + z-index: 99; +} +.grid_color_image li .variant_img a { + max-height: 50px; + width: 40px; + border: 1px solid #ccc; + margin: 0 2px; + cursor: pointer; + display: block; +} +.grid_color_image li .variant_img .active { + border: 1px solid #00adf6; +} +.pro-img .variant_img img { + border-radius: 0; +} + +/*countdown CSS*/ +.product-count-wrap .product-countdown { + position: absolute; + top: 50%; + transform: translatey(-50%); + left: 5px; + z-index: 99; +} +.product-countdown .count p { + margin-bottom: 0; + line-height: 12px; + font-size: 14px; +} +.product-countdown .count span { + font-size: 10px; + line-height: 10px; + text-transform: uppercase; +} +.product-countdown .count { + padding: 5px 5px 2px; + border: 1px solid #eee; + margin-bottom: 2px; + background: #fff; +} +.item_add_cart .cart_disable { + cursor: not-allowed; +} +.sold_out_grid .pro-img::before { + position: absolute; + content: "Sold Out"; + color: #d31129; + font-size: 18px; + text-transform: uppercase; + top: 50%; + right: -33px; + transform: rotate(-90deg) translatex(18px); + z-index: 999; + background: rgba(255,255,255,.9); + padding: 5px 10px; +} + + +/*------------------------------------------------*/ +/* 10. Testmonial CSS +/*------------------------------------------------*/ +.single-testmonial { + text-align: center; + padding: 20px; +} + +.testmonial-content h4 { + margin-top: 10px; +} + +.testmonial-content h4 a { + font-size: 18px; + text-transform: capitalize; +} +.testmonial-content span { + display: block; + font-size: 13px; + margin: 5px 0 10px; + text-transform: capitalize; + font-weight: 500; +} +.testmonial-img { + margin-bottom: 20px; +} +.single-testmonial img { + margin: auto; + max-width: 100px; + border-radius: 100px; +} +.single-testmonial { + text-align: center; + padding: 20px; +} +.testmonial-area.adp_bottom { + padding-bottom: 50px; +} + +/*------------------------------------------------*/ +/* 11. Newsletter CSS +/*------------------------------------------------*/ +.newsletter-box form { + display: inline-block; + position: relative; +} + +.newsletter-box .subscribe { + background: #f8f8f8 none repeat scroll 0 0; + border: 1px solid #e5e5e5; + border-radius: 30px; + -webkit-box-shadow: 1px 1px 0 0 #fff inset; + box-shadow: 1px 1px 0 0 #fff inset; + color: #1b1b1c; + display: inline-block; + font-size: 13px; + font-weight: 400; + height: 54px; + line-height: 30px; + padding: 10px 160px 10px 25px; + width: 770px; +} + +.newsletter-box-two .subscribe { + background: #fff; +} + +.newsletter-box .submit { + background: #00adf6 none repeat scroll 0 0; + border: medium none; + border-radius: 30px; + color: #fff; + font-size: 14px; + font-weight: 600; + line-height: 54px; + padding: 0 35px; + position: absolute; + right: 0; + text-transform: capitalize; + top: 0; +} + +.newsletter-box .submit:hover { + color: #1b1b1c; +} + +.newsletter-box-three .submit { + background: #00adf6; +} + +.newsletter-box-four .submit { + background: #00adf6; +} + +/*----------------------------------------*/ +/* Blog & Blog Details CSS +/*----------------------------------------*/ +.blog-area .row [class*="col-"] { + margin-bottom: 40px; +} + +.single-animart-blog img { + width: 100%; + height: 100%; +} + +.grid-blog-content { + padding-top: 20px; + border-bottom: 2px dashed #00adf6; +} +.blog-left-sidebar-desc { + padding-left: 20px; +} + +.blog-right-sidebar-desc { + padding-right: 20px; +} +.grid-blog-content h4 a { + display: block; + font-size: 18px; + font-weight: 500; + text-transform: uppercase; +} +.meta-box { + margin: 15px 0; +} +.single-animart-blog { + margin-bottom: 30px; +} +.meta-box li { + display: inline-block; +} + +.meta-box li { + display: inline-block; + font-size: 14px; + line-height: 25px; + margin-right: 20px; + text-transform: capitalize; +} + +.meta-box li i { + margin-right: 5px; +} + +.meta-box li a { + display: inline-block; + font-size: 13px; + line-height: 25px; + margin-right: 20px; + text-transform: capitalize; +} + +.meta-box li a:hover, +.grid-blog-content h4 a:hover { + color: #00adf6; +} + +.blog-brown-color .meta-box li a:hover, +.blog-brown-color .grid-blog-content h4 a:hover { + color: #ba9f74; +} + + +.blog-img, +.blog-hero-img { + position: relative; + overflow: hidden; +} + +.single-animart-blog .blog-img:hover img { + -webkit-transform: scale(1.1); + transform: scale(1.1); +} + +.publish-meta-date { + left: 10px; + line-height: 18px; + position: absolute; + text-align: center; + bottom: 10px; + width: auto; + right: 10px; + background: #00adf6; + color: #fff; + height: 0; + line-height: 40px; + font-size: 16px; + transition: .3s; +} +.single-animart-blog:hover .publish-meta-date { + height: 40px; +} +.blog-post-meta { + display: flex; + justify-content: space-between; + margin-bottom: 5px; +} +.grid-blog-content ul li a:hover { + color: #00adf6; +} +.pagination-blog li.disabled a:hover { + cursor: not-allowed; +} +.blog-btn { + position: relative; + bottom: -13px; + text-align: right; +} +.blog-btn a { + background: #fff; + padding-left: 10px; +} +.blog-btn a:hover { + color: #00adf6; +} + +.grid-blog-content p { + margin-bottom: 0; +} + +.templatei-blog .meta-box li a:hover, +.templatei-blog .grid-blog-content h4 a:hover { + color: #00adf6; +} + +.pagination-blog { + text-align: center; +} + +.pagination-blog li a { + background: #ffffff none repeat scroll 0 0; + border: 1px solid #e7e7e7; + color: #444; + display: block; + font-size: 16px; + height: 35px; + line-height: 35px; + text-align: center; + width: 40px; +} + +.pagination-blog li { + display: inline-block; + margin-right: 1px; +} + +.pagination-blog li.active a, +.pagination-blog li a:hover { + background: #00adf6 none repeat scroll 0 0; + color: #ffffff; + border-color: #00adf6; +} +.newsletter-box.blog-details-box form { + position: relative; + width: 100%; +} +.newsletter-box.blog-details-box .subscribe { + background: #ffffff none repeat scroll 0 0; + border: 1px solid #ebebeb; + font-size: 12px; + height: 40px; + line-height: 37px; + margin-top: 0; + padding: 11px 90px 10px 20px; + width: 100%; + border-radius: 0; +} +.newsletter-box.blog-details-box .submit { + background: #292929 none repeat scroll 0 0; + border: medium none; + color: #ffffff; + font-size: 12px; + font-weight: 500; + height: 40px; + line-height: 38px; + margin-top: 0; + padding: 0 15px; + position: absolute; + right: 0; + text-transform: uppercase; + top: 0; + -webkit-transition: all 300ms ease 0s; + transition: all 300ms ease 0s; + border-radius: 0; +} +.newsletter-box.blog-details-box .submit:hover { + background: #00adf6 none repeat scroll 0 0; +} +.latest-blog-area.adp_bottom { + padding-bottom: 60px; +} + +/* blog details css */ + +.submit-review .login-btn { + margin-bottom: 0; +} + +.details-meta { + margin-bottom: 30px; +} + +.meta-box.meta-blog { + border-bottom: 1px solid #ebebeb; + margin-bottom: 30px; + margin-top: 13px; + padding-bottom: 15px; +} +blockquote { + background: #f1f1f1 none repeat scroll 0 0; + margin: 30px 0; + padding: 30px; + border-left: 3px solid #00adf6; + border-right: 3px solid #00adf6; + font-size: 16px; + letter-spacing: 1px; +} +.blogquote.blockquote p { + font-size: 15px; + padding-bottom: 10px; + font-size: 16px; + line-height: 28px; +} +.blockquote-footer { + font-size: 16px; + font-weight: 500; +} +.blog-dtl-header { + font-size: 28px; + font-weight: 600; + line-height: 1; + text-transform: capitalize; +} +.blog-details .tags-social { + border-bottom: 1px solid #ebebeb; + padding-bottom: 10px; + padding-top: 30px; +} +.comments-area { + padding-top: 50px; +} +.blog-detail-contact { + padding-top: 50px; +} +.t-list { + font-size: 15px; + font-weight: 500; + text-transform: capitalize; +} +.tags-social li a { + color: #323232; + font-size: 14px; + margin-left: 5px; + text-transform: capitalize; +} + +.tags-social li a:hover, +.pagination li a:hover { + color: #00adf6; +} + +.pagination li a { + color: #303030; + font-size: 14px; + font-weight: 500; + line-height: 1; +} + +.pagination li a i.fa-long-arrow-left { + margin-right: 5px; +} + +.pagination li a i.fa-long-arrow-right { + margin-left: 5px; +} + +.submit-review .form-group input, +.submit-review textarea { + border-radius: 0; + border: 1px solid #eee; + font-size: 14px; + height: 45px; +} +.submit-review .form-group { + margin-bottom: 45px; +} +.submit-review textarea { + min-height: 200px; +} +.blog-social .footer-social-icon li a { + color: #555; + border-color: #888; +} +.blog-social .footer-social-icon li a:hover { + color: #00adf6; + border-color: #00adf6; +} +.submit-review .form-group input:focus, +.submit-review textarea:focus { + border-color: #00adf6; +} +.administrator { + padding-top: 50px; +} +.single-comment { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} +.comments-area .single-comment:not(:last-child) { + margin-bottom: 50px; +} +.reply-comment { + margin-left: 50px; +} +.author .single-comment { + background: #fafafa none repeat scroll 0 0; + margin-bottom: 0; + padding: 20px; +} +.single-comment .comment-img { + margin-right: 20px; + width: 22%; +} +.comment-desc p { + margin-bottom: 0; +} +.comment-desc h6 { + font-size: 14px; + font-weight: 600; + text-transform: capitalize; + margin-bottom: 5px; +} +.author h6 { + margin-bottom: 10px; +} +.comment-desc h6 a { + font-size: 16px; + font-weight: 500; + text-transform: uppercase; +} +.comment-title span { + display: inline-block; + font-size: 13px; +} +.comment-reply a { + color: #303030; + font-size: 12px; + font-weight: 600; + text-transform: capitalize; +} +.comment-reply a:hover, +.comment-desc h6 a:hover { + color: #00adf6; +} +.sidebar-header { + display: inline-block; + font-size: 22px; + font-weight: 600; + line-height: 22px; + margin-bottom: 20px; + padding-bottom: 10px; + text-transform: capitalize; + position: relative; +} +.sidebar-header::before { + position: absolute; + left: 0; + bottom: 0; + width: 50px; + height: 1px; + background: #00adf6; + content: ""; +} +.blog-sidebar .single_sidebar { + margin-bottom: 30px; +} +.categorie-list a::before { + content: "\ea94"; + font-family: IcoFont; + font-size: 13px; + padding-right: 5px; +} +.recent-desc h6 { + margin-bottom: 5px; +} +.recent-desc h6 a { + display: block; + font-size: 16px; + text-transform: capitalize; +} +.recent-desc a { + display: block; +} +.categorie-list li span { + background: #fff none repeat scroll 0 0; + float: right; + padding-left: 20px; +} + +.categorie-list li:not(:last-child) { + margin-bottom: 12px; + padding-bottom: 12px; +} +.all-recent-post .single-recent-post:not(:last-child) { + margin-bottom: 20px; +} +.single-recent-post { + overflow: hidden; +} + +.recent-img { + float: left; + margin-right: 15px; + width: 90px; +} + +.recent-img img { + width: 100%; +} + +.recent-desc { + overflow: hidden; +} + +.recent-desc span { + display: inline-block; + font-size: 13px; +} + +.recent-desc h6 a { + display: block; + font-size: 16px; + margin-bottom: 5px; + text-transform: capitalize; +} + +.recent-desc h6 a:hover, +.categorie-list li a:hover { + color: #00adf6; +} + +.tag-list { + margin: 0 -6px; +} + +.tag-list li a { + border: 1px solid #efefef; + color: #1b1b1c; + display: inline-block; + font-size: 12px; + font-weight: 500; + letter-spacing: 1px; + margin: 0 6px 10px; + padding: 8px 20px; + text-transform: uppercase; +} + +.tag-list li a:hover,.tag-list li a.active{ + background: #00adf6; + color:#fff; + border-color:#00adf6; +} + +/*----------------------------------------*/ +/* Footer CSS +/*----------------------------------------*/ +.footer-top.border-transparent { + border-top: medium none transparent; +} + +/* footer middle css */ + +.footer-title { + font-size: 18px; + line-height: 24px; + margin-bottom: 25px; + text-transform: uppercase; + position: relative; +} +.footer-title::before { + position: absolute; + left: 0; + bottom: -8px; + width: 50px; + height: 1px; + background: #00adf6; + content: ""; +} +.footer-list { + margin-top: -5px; +} +.footer-list li { + line-height: 30px; + position: relative; +} + +.contact-area { + margin-top: 15px; +} + +.contact-area li { + padding-left: 24px; +} + +.contact-area li a { + font-size: 14px; +} + +.contact-area li:before { + content: ""; + display: inline-block; + font-family: "Stroke-Gap-Icons"; + font-size: 16px; + left: 0; + position: absolute; + top: 0; + vertical-align: top; +} + +.contact-area li.phone::before { + content: ""; +} + +.contact-area li.email::before { + content: ""; +} + +.footer-list li i { + font-size: 16px; +} + +.footer-list li a { + display: block; + font-weight: 400; + padding: 3px 0; + color: #666666; +} + +.footer-list li a:hover, +.footer-menu li a:hover { + color: #00adf6; +} + +.twit { + padding-left: 35px; + position: relative; +} + +.twit a { + color: #00adf6; +} + +.twit:before { + color: #00adf6; + content: "\f099 "; + display: inline-block; + font-family: "FontAwesome"; + font-size: 28px; + left: 0; + position: absolute; + top: 5px; +} + +.instagram-img { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin: -3px; +} + +.instagram-img li { + -ms-flex-preferred-size: 33.33%; + flex-basis: 33.33%; + max-width: 100%; + padding: 3px; +} +.container-fluid .instagram-img li { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; +} + +.instagram-img li a { + display: block; + position: relative; + overflow: hidden; +} +.instagram-img li a::before { + content: "\ed46"; + left: 50%; + opacity: 0; + position: absolute; + top: 50%; + -webkit-transition: all 300ms ease-in-out 0s; + transition: all 300ms ease-in-out 0s; + font-family: icofont; + color: #fff; + transform: translatex(-50%) translatey(-50%); + z-index: 99; + font-size: 20px; +} +.instagram-img li a::after { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + content: ""; + background: #00adf6; + opacity: 0; + transition:.3s +} +.instagram-img li:hover a::after { + opacity: .7; +} +.instagram-img li:hover a:before { + opacity: 1; +} + +.instagram-img li a img { + width: 100%; +} +.footer-copyright p { + color: #fff; + margin: 0; +} + +.footer-social-icon li { + display: inline-block; +} + +.footer-social-icon li:not(:last-child) { + margin-right: 5px; +} +.footer-social-icon li a { + border: 1px solid #fff; + border-radius: 100%; + -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.15); + box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.15); + color: #fff; + display: inline-block; + font-size: 14px; + height: 30px; + line-height: 28px; + display: block; + position: relative; + text-align: center; + width: 30px; +} +.footer-social-icon li a:hover { + background: #fff; + color: #00adf6; + border-color: transparent; +} + +.footer-style-two .twit::before, +.footer-style-two .twit a { + color: #00adf6; +} + +.footer-style-two .instagram-img li a::before { + background-color: rgba(18, 138, 237, 0.8); +} + +.footer-style-two .footer-list li a:hover, +.footer-style-two .footer-menu li a:hover { + color: #00adf6; +} + +.footer-social-two li a { + border-color: #00adf6; +} + +.footer-social-two li a:hover { + background: #fff; + color: #00adf6; +} + +.footer-style-three .twit::before, +.footer-style-three .twit a { + color: #00adf6; +} + +.footer-style-three .instagram-img li a::before { + background-color: rgba(238, 115, 68, 0.8); +} + +.footer-style-three .footer-list li a:hover, +.footer-style-three .footer-menu li a:hover { + color: #00adf6; +} + +.footer-social-three li a { + border-color: #e45718; +} + +.footer-social-three li a:hover { + background: #fff; + color: #00adf6; +} +.footer-copyright p a{ + color: #fff; +} +.footer-copyright p a:hover { + color: #1d2536; +} +.footer-bottom { + background: #00adf6; + padding-top: 8px; + padding-bottom: 8px; +} +/*----------------------------------------*/ +/*Promotion CSS +/*----------------------------------------*/ +.container-fluid .promotion-content { + position: relative; + padding-left: 0; +} +.psl_price { + color: #00adf6; + display: block; + font-family: "Poppins", sans-serif; + font-size: 36px; + font-weight: 600; + line-height: 1; + margin-left: 10px; +} +ul.promotion-list { + line-height: 32px; + list-style-type: circle; + margin-bottom: 20px; + padding-left: 15px; +} +.promoton_price { + display: flex; + align-items: center; + font-size: 30px; + font-family: Roboto Condensed; +} +.promotion-content .small-btn.icon-btn { + margin-top: 30px; +} +.ride-fullwidht-two .same-header span, +.ride-fullwidht-two .psl_price { + color: #00adf6; +} +.promotion-wrapper { + margin-bottom: 50px; +} + +/*----------------------------------------*/ +/* countdown_promotion_banner +/*----------------------------------------*/ +.baby-stroller { + position: relative; + padding: 112px 0; + ; +} + +.stroller-content { + position: relative; + z-index: 5; +} + +.countdown_promotion_banner .product-count-wrap .product-countdown { + position: unset; + transform: translate(0); + display: flex; +} +.countdown_promotion_banner .product-count-wrap .product-countdown .count { + width: 90px; + height: 80px; + margin-right: 10px; + text-align: center; + padding: 10px; +} +.countdown_promotion_banner .product-count-wrap .product-countdown .count p { + color: #555; + font-size: 30px; + line-height: 34px; +} +.countdown_promotion_banner .product-count-wrap .product-countdown .count span { + font-size: 12px; +} + +.stroller-content .blue-btn a { + background: transparent; + border-color: #555; + text-transform: capitalize; +} + +.stroller-content .blue-btn a:hover { + background: rgba(33, 179, 241, 0.8) none repeat scroll 0 0; + color: #555; +} +.stroller-content h4 { + color: #00adf6; + font-size: 20px; + font-weight: 500; + letter-spacing: 0.15em; + margin-bottom: 15px; + text-transform: uppercase; +} + +.stroller-content h3 { + color: #555; + font-size: 60px; + font-weight: 500; + line-height: 1; + margin-bottom: 20px; +} + +.stroller-content p { + color: #555; + font-size: 22px; + font-weight: 400; + margin-bottom: 35px; + line-height: 32px; +} +.countdown_promotion_banner { + padding-top: 120px; + padding-bottom: 120px; +} +.stroller-content .small-btn a { + padding: 12px 35px; + line-height: 20px; + margin-top: 50px; +} + +/*----------------------------------------*/ +/* best_feature_area CSS +/*----------------------------------------*/ +.best_feature_area .row { + align-items: center; +} +.best_feature_content h3 { + font-size: 36px; + margin-bottom: 15px; + font-weight: 600; +} +.main-features .single-main-features:not(:last-child) { + margin-bottom: 40px; +} +.single-main-features { + display: flex; + align-items: center; +} +.main-features-top .single-main-features { + justify-content: right; +} +.main-feature-content { + max-width: 80%; +} +.main-features-top .main-feature-content { + padding-right: 20px; +} +.main-features-bottom .main-feature-content { + padding-left: 20px; +} +.main-feature-img { + max-width: 20%; +} +.main-feature-img img { + max-width: 60px; + max-height: 60px; +} +.main-feature-content h4 { + font-size: 18px; + font-weight: 600; + text-transform: capitalize; + letter-spacing: .5px; + margin-bottom: 5px; + line-height: 18px; + transition: .3s; +} +.main-feature-content p { + margin: 0; +} +.main-features-two .main-feature-content h4, +.main-features.main-features-two .single-main-features:hover .main-feature-content h4 { + color: #fff; +} + +.main-features-two .main-feature-content p { + color: #efefef; +} + +.main-features.main-features-two .main-feature-img { + background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0; + height: 70px; + line-height: 70px; + width: 70px; + border: none; +} + +.main-features-two .main-features-top .single-main-features { + padding-right: 100px; +} + +.main-features-two .main-features-bottom .single-main-features { + padding-left: 100px; +} + +.main-features-two .main-features-top { + padding-right: 20px; +} + +.main-features-two .main-features-bottom { + padding-left: 20px; +} + +.main-features.main-features-two .single-main-features:hover .main-feature-img { + background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0 +} + +.main-features-two .section-title h2 { + color: #fff; +} + +.main-features-two .section-title > span { + color: #dedede; +} + +.main-features .single-main-features:hover .main-feature-content h4 { + color: #00adf6; +} + +.main-feature-feature-wrapper .single-main-features:not(:last-child) { + margin-bottom: 30px; +} +.main-feature-icon { + height: 70px; + width: 70px; + border: 1px solid #ccc; + border-radius: 100px; + text-align: center; + line-height: 70px; + font-size: 30px; + transition: .3s; + +} +.single-main-features:hover .main-feature-icon { + color: #00adf6; + border-color: #00adf6; +} + +.best_pet_food .main-feature-content h4 { + font-size: 22px; + text-transform: uppercase; + margin-bottom: 10px; + line-height: 22px; +} +.main-features.best_pet_food .single-main-features:not(:last-child) { + margin-bottom: 60px; +} +.best_pet_food .row { + align-items: center; +} +.care_feature_wrapper { + display: flex; + flex-wrap: wrap; + margin:0 -10px +} +.single_care_feature .main-feature-content { + max-width: 100%; +} +.single_care_feature { + max-width: 50%; + padding: 20px 10px 0; +} +.single_care_feature .main-feature-img { + max-width: 50%; + margin-bottom: 15px; +} +.single_care_feature .main-feature-icon{ + margin-bottom: 15px; +} +.single_care_feature:hover .main-feature-icon { + color: #00adf6; + border-color: #00adf6; +} +.single_care_feature:hover .main-feature-content h4 { + color: #00adf6; +} +.single_feature_wrapper .feature_img_side { + display: flex; + align-items: center; +} + +/*----------------------------------------*/ +/* Breadcrumb CSS +/*----------------------------------------*/ +.breadcrumb-area { + background: #efefef none repeat scroll 0 0; + padding: 80px 0; + +} +.breadcrumb-area .breadcrumb { + background-color: transparent; + border-radius: 0; + list-style: outside none none; + margin-bottom: 0; + padding: 0; +} + +.breadcrumb-item a, .breadcrumb-item { + font-size: 14px; + text-transform: capitalize; + font-family: 'Roboto Condensed', sans-serif; + letter-spacing: .5px; +} +.breadcrumb-item a:hover, +.breadcrumb-item.active { + color: #00adf6; +} +.breadcrumb-area .text-center .breadcrumb { + justify-content: center; +} +.breadcrumb-area .text-end .breadcrumb { + justify-content: right; +} + +/*----------------------------------------*/ +/* Shop Page CSS +----------------------------------------*/ + +/* shop sidebar css */ +.sidebar .single_sidebar { + margin-bottom: 20px; + padding: 20px 15px; + box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.09); +} +.single-banner.single_sidebar { + padding: 0; +} +.polular_products.single_sidebar { + padding-right: 10px; +} +.sidebar .form-check { + padding-left: 0; +} +.sidebar-title { + border-bottom: 1px solid #ededed; + display: block; + font-size: 18px; + font-weight: 500; + line-height: 35px; + margin-bottom: 25px; + position: relative; + text-transform: capitalize; + letter-spacing: .5px; +} +.sidebar-title::after { + background: #00adf6 none repeat scroll 0 0; + bottom: -1px; + content: ""; + display: block; + height: 1px; + position: absolute; + width: 100px; +} + +/* price slider css */ +.ui-slider-handle.ui-state-default.ui-corner-all { + background: #00adf6 none repeat scroll 0 0; + border: medium none; + border-radius: 50%; + height: 13px; + margin-left: -1px; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + width: 13px; +} +.slider-sidebar { + margin-top: 40px; + overflow: hidden; +} +.ui-slider-range.ui-widget-header.ui-corner-all { + background: #d7d7d7 none repeat scroll 0 0; + border-radius: 0; + height: 4px; +} + +.ui-widget.ui-widget-content { + background: #ededed none repeat scroll 0 0; + border: medium none; + height: 4px; + top: 5px; + left: 1px; +} + +.ui-slider-horizontal .ui-slider-handle { + margin-left: 0; +} + +.ui-slider-handle.ui-corner-all.ui-state-default.ui-state-focus { + outline: medium none; +} + +.slider-sidebar .amount-range { + background: rgba(0, 0, 0, 0) none repeat scroll 0 0; + border: medium none; + color: #555; + font-size: 15px; + margin-top: 30px; + padding: 5px 0; + float: left; + width: 50%; +} +.slider-sidebar input[type="submit"] { + background: #fff; + border: 1px solid #ccc; + height: 35px; + width: 50%; + float: right; + margin-top: 30px; +} +.slider-sidebar input[type="submit"]:hover { + background: #00adf6; + border-color: #00adf6; + color: #fff; +} +.amount-range, +.price-button { + word-spacing: 15px; +} + +.flter-option.mb-80 { + padding-right: 15px; +} + +/* price slider css end */ +.sidbar-style li { + -webkit-transition: all 300ms ease-in 0s; + transition: all 300ms ease-in 0s; +} + +.sidbar-style .form-check label { + cursor: pointer; + font-size: 14px; + text-transform: capitalize; + -webkit-transition: all 0.3s ease-in-out 0s; + transition: all 0.3s ease-in-out 0s; + display: flex; + justify-content: space-between; +} + +.sidebar li.form-check:not(:last-child) { + margin-bottom: 12px; +} + +.sidebar .form-check { + padding-left: 0; +} + +.color-option li a { + font-size: 14px; + padding: 5px 0; + text-transform: capitalize; + display: flex; + justify-content: space-between; + width: 100%; +} + +.color-option li a:hover, +.sidbar-style .form-check label:hover { + color: #00adf6; +} +.color-option li .color_label { + -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15); + box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15); + display: block; + height: 15px; + margin-right: 10px; + width: 15px; + top: 7px; + position: relative; + border-radius: 20px; +} + +.color-option li span.white { + background: #fff none repeat scroll 0 0; +} + +.color-option li span.orange { + background: #f39c11 none repeat scroll 0 0; +} + +.color-option li span.blue { + background: #5d9cec none repeat scroll 0 0; +} + +.color-option li span.yellow { + background: #f1c40f none repeat scroll 0 0; +} + +.color-option li span.black { + background: #434A54 none repeat scroll 0 0; +} + +.color-option li span.biege { + background: #f5f5dc none repeat scroll 0 0; +} + +.color-option li span.green { + background: #A0D468 none repeat scroll 0 0; +} + +.color-option li span.pink { + background: #FCCACD none repeat scroll 0 0; +} + +.sidebar-banner img, +.shop-banner img { + width: 100%; +} + +.sidebar-banner::before { + background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0; + bottom: 0; + content: ""; + left: 50%; + opacity: 1; + position: absolute; + right: 50%; + top: 0; + -webkit-transition: all 900ms ease-in 0s; + transition: all 900ms ease-in 0s; +} + +.sidebar-banner::after { + background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0; + bottom: 50%; + content: ""; + left: 0; + opacity: 1; + position: absolute; + right: 0; + top: 50%; + -webkit-transition: all 900ms ease-in 0s; + transition: all 900ms ease-in 0s; +} + +.sidebar-banner:hover::before { + left: 0; + opacity: 0; + right: 0; +} + +.sidebar-banner:hover::after { + bottom: 0; + opacity: 0; + top: 0; +} + +/* shop page css */ +.border-default { + padding: 15px; + border: 1px solid #ebebeb; +} + +.single-template-product.border-none { + border-right: none!important; +} + +.grid-list-top .tabs-area > li { + margin-left: 0; + margin-right: 10px; +} + +.grid-list-view .tabs-area li a { + border-radius: 4px; + color: #333; + display: block; + font-size: 20px; + padding: 0; + text-align: center; +} + +.grid-list-view .tabs-area li a.active { + color: #00adf6; +} + +.grid-list-top .tabs-area > li span, +.toolbar-sorter label, +.show-items { + font-size: 13px; +} + +.grid-list-top.border-default { + padding: 15px; +} +.grid-list-top { + margin-bottom: 20px; + display: flex; + justify-content: space-between; + align-items: center; + background: #f6f6f6; + padding: 10px; + position: relative; + z-index: 999; +} +.grid-list-view span { + padding-left: 40px; +} + +.toolbar-sorter label { + font-weight: 500; + margin-bottom: 0; + margin-right: 15px; + width: 65px; +} + +.toolbar-sorter { + width: 300px; +} +.main-toolbar-sorter .nice-select { + height: 35px; + line-height: 32px; + z-index: 55; + background: #fff; +} +.grid-list-top .nice-select { + height: 32px; + line-height: 30px; +} +.class_list_view .single-template-product { + display: flex; + align-items: center; + margin-bottom: 20px; +} +.class_list_view .single-template-product .item_add_cart a { + text-align: center; +} +.class_list_view .single-template-product .pro-img { + width: 30%; + margin: 5px; +} +.class_list_view .single-template-product .item_add_cart { + opacity: 1; + visibility: visible; + position: unset; + transform: unset; + margin-top: 10px; +} +.class_list_view .single-template-product .product_content_wrap { + width: 70%; + padding: 15px; + text-align: left; + border: none; +} +.class_list_view .product_content h4 a { + font-size: 20px; + line-height: 28px; +} +.class_list_view .single-template-product .product_content_wrap .list_des { + margin-bottom: 10px; +} +.class_list_view .single-template-product { + border-color:#e5e5e5; +} +.single_sidebar .small-list-content { + padding-left: 10px; +} +.single_sidebar .small-list-title a { + font-size: 14px; +} +.shop-pagination-area.border-default { + padding: 20px; + margin-top: 20px; +} + +.pfolio-breadcrumb-list li { + display: inline; +} + +.pfolio-breadcrumb-list li a { + color: #333; + font-size: 14px; + font-weight: 400; + padding: 0 5px; +} + +.pfolio-breadcrumb-list li.active a { + color: #acaaa6; +} + +.pfolio-breadcrumb-list li i { + font-size: 16px; +} + +.pfolio-breadcrumb-list li.prev a i { + margin-right: 8px; + +} + +.pfolio-breadcrumb-list li.next a i { + margin-left: 8px; + +} + +.pfolio-breadcrumb-list li:hover a { + color: #00adf6; +} + +/*----------------------------------------*/ +/* Product Details CSS +-----------------------------------------*/ +.main-product-thumbnail .tab-content img, +.product-thumbnail .thumb-menu div img { + width: 100%; +} + +.product-thumbnail .thumb-menu div img { + border-radius: 30px; +} + +.thumb-menu.owl-carousel .owl-item a { + border: 1px solid #e5e5e5; + display: block; + border-radius: 30px; +} + +.thumb-menu.owl-carousel .owl-item a:hover { + border-color: #00adf6; +} + +#myModal .close:focus, +#myModal .close:hover { + color: #00adf6; +} + +#myModal .close { + position: relative; + top: -10px; + right: -5px; +} + +.modal-content .modal-header { + border-bottom: 0 none; + padding-bottom: 0; +} + +.modal-content .modal-body { + padding: 0 40px 40px; +} + +.modal-content .social-sharing ul li a { + font-size: 14px; + height: 35px; + line-height: 35px; + width: 35px; +} +.quick-thumb-content .modal-lg { + max-width: 970px; + margin: 70px auto; +} +.product-thumbnail .thumb-menu .nav-link { + padding: 0; +} +.main-product-thumbnail .tab-content { + border: 1px solid #f1f1f1; + margin-bottom: 20px; + overflow: hidden; +} +.shop-details-overly { + padding: 0 5px; +} +.shop-details-tab.product-details-small { + margin: 0 -5px; +} +.main_large_img { + position: relative; +} +.product-details-img .large-img-style .img-popup-wrap .img-popup { + position: absolute; + right: 30px; + bottom: 30px; + font-size: 30px; + color: #888; + border: 1px solid #888; + padding: 5px; +} +.product-details-img .large-img-style .img-popup-wrap .img-popup:hover { + color: #00adf6; + border-color: #00adf6; +} + +.thumb-bg .tabs-area { + border-bottom: medium none; +} +.product_details_2 .thumb_image_small { + width: 20%; + float: left; + padding-right:10px +} +.product-details-img.product-details-tab.product_details_2 { + overflow: hidden; +} +.product_details_2 .thumb_image_large { + width: 80%; + float: left; + position: relative; +} + +.product-video { + position: absolute; + bottom: 10px; + right: 15px; + z-index: 999; +} +.product-video .video-popup:hover { + color: #00adf6; +} +.product_details_4 .dec-img-wrap { + position: relative; +} +.dec-img-wrap { + margin-bottom: 20px; +} +.product_details_3 .dec-img-wrap:last-child { + margin: 0; +} +.product_details_5 .dec-img-wrap { + margin-bottom: 0; + position: relative; +} +.product_details_2.right_side .thumb_image_small { + padding-right: 0; + padding-left: 10px; +} +.modal-body .shop-details-tab.product-details-small { + flex-wrap: nowrap; +} +.product-header { + font-size: 22px; + font-weight: 500; + line-height: 28px; + margin-bottom: 10px; + text-transform: capitalize; +} + +.rating_wrap .review-list i { + color: #00adf6; + font-size: 16px; + cursor: pointer; +} + +.rating-summary li a { + display: inline-block; + font-size: 12px; + line-height: 21px; + text-transform: capitalize; +} + +.rating-summary li { + display: inline-block; + margin-right: 8px; +} +.rating-summary { + margin-bottom: 10px; +} + +.rating-summary li.read-review::before, +.rating-summary li.write-review::before { + color: #555; + content: "\eeeb"; + font-family: icofont; + font-size: 15px; + font-weight: 400; + line-height: 1; + margin-right: 6px; +} + +.rating-summary li.write-review::before { + content: "\eae8"; +} + +.rating-summary li a:hover, +.rating-summary li a:hover { + color: #00adf6; +} + +.modal-body .pro-list-features { + border-bottom: 1px solid #e5e5e5; + border-top: 1px solid #e5e5e5; + padding: 25px 0; +} + +.pro-list-features { + margin-top: 20px; +} + +.pro-list-features li { + line-height: 24px; + font-size: 14px; +} + +.pro-list-features li a { + color: #00adf6; +} + +.pro-desc-details { + border-bottom: 1px solid #e5e5e5; + border-top: 1px solid #e5e5e5; + font-size: 14px; + line-height: 25px; + margin-top: 20px; + padding: 15px 0; +} +.thubnail-desc h3 { + font-size: 24px; +} + +.pro-thumb-price span:not(:last-child) { + margin-right: 5px; +} + +.pro-thumb-price .regular-price { + font-size: 28px; +} + +.pro-thumb-price .discount_price { + font-size: 18px; + vertical-align: top; +} + +.saving-price { + background: #343434 none repeat scroll 0 0; + border-radius: 20px; + color: #fff; + display: inline-block; + font-size: 12px; + font-weight: 500; + height: 30px; + line-height: 31px; + padding: 0 15px; + text-align: center; + text-transform: uppercase; +} + +.product-size .nice-select { + padding-right: 40px; +} + +.product-size .nice-select .option { + padding-right: 36px; +} + +.thubnail-desc label, +.social-sharing ul li label { + display: block; + margin-bottom: 5px; + text-transform: capitalize; + font-size: 14px; +} + +.product-size select, +.quantity { + background-color: #ffffff; + border: 1px solid #ebebeb; + color: #7a7a7a; + width: 70px; +} +.box-quantity .quantity { + height: 40px; +} +.details_action_wraper { + margin-top: 25px; +} +.quantity { + padding: 11px; +} + +.color-list li { + border: 1px solid #ccc; + display: inline-block; + margin-right: 7px; + padding: 2px; + -webkit-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; +} +.color-list li a { + display: block; + height: 25px; + width: 25px; + text-align: center; +} +.quatity-stock ul li:not(:last-child) { + margin-right: 25px; +} + +.pro-cart { + background: #343434 none repeat scroll 0 0; + border: medium none; + border-radius: 30px; + color: #fff; + font-size: 12px; + font-weight: 600; + line-height: 12px; + padding: 14px 30px; + text-transform: uppercase; +} + +.pro-cart:hover { + background: #00adf6; +} + +.color-list li.active, +.color-list li:hover { + border-color: #00adf6; +} +.color-list.size_list li.active a { + background: #00adf6; + color: #fff; +} + +.color-list li a.black { + background: #000; +} + +.color-list li a.white { + background: #fff; +} + +.color-list li a.orange { + background: #f39c11 none repeat scroll 0 0; +} + +.color-list li a.paste { + background: #5d9cec none repeat scroll 0 0; +} + +.details_action_wraper ul { + display: flex; +} +.product_details_wrap_6 .details_action_wraper ul { + justify-content: center; +} +.product_details_wrap_6 .pro-details-meta { + justify-content: center; +} +.product_details_wrap_6 .thubnail-desc { + margin-top: 50px; +} +.details_action_wraper ul li { + margin-right: 5px; +} +.details_action_wraper a { + background: #fff none repeat scroll 0 0; + border: 1px solid #e5e5e5; + color: #454545; + font-family: "Poppins", sans-serif; + font-size: 13px; + font-weight: 500; + line-height: 38px; + padding: 0 20px; + height: 40px; + display: inline-block; + margin: 0 2px; + text-align: center; +} +.details_action_wraper a:hover { + color: #fff; + background: #00adf6; + border-color: #00adf6; +} +.details_action_wraper .details_compare, +.details_action_wraper .details_wishlist { + width: 40px; + padding: 0; + line-height: 40px; +} + +.in-stock { + color: #333; + font-size: 14px; + font-weight: 600; + text-transform: capitalize; +} +.in-stock i { + color: #333; + font-size: 16px; + margin-right: 5px; +} +.social-sharing ul li a { + background: white none repeat scroll 0 0; + border: 1px solid #777; + border-radius: 100%; + color: #4b4b4b; + display: block; + height: 40px; + line-height: 40px; + text-align: center; + width: 40px; +} +.social-sharing ul li a:hover { + background: #00adf6; + border-color: #00adf6; + color: #fff; +} + +.social-sharing ul li { + display: inline-block; +} + +.social-sharing ul li:not(:last-child) { + margin-right: 10px; +} + +.product-policy p { + color: #666; + padding: 5px 0; +} + +.product-policy p i { + color: #333333; + font-size: 20px; + margin-right: 15px; + vertical-align: middle; +} +.thumnail-desc .tabs-area { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + -o-border-image: none; + border-image: none; + border-bottom: 1px solid #e5e5e5; + border-width: ; + display: block; + padding: 15px 0; + text-align: center; + background: #f1f1f1; +} +.pro-details-social ul li { + display: inline-block; + margin-right: 7px; +} +.pro-details-social ul li a { + color: #fff; + font-size: 12px; + line-height: 24px; + padding: 0 8px; + border-radius: 3px; + text-transform: capitalize; + display: block; +} +.pro-details-social ul li a.facebook { + background: #3B5999; +} +.pro-details-social ul li a.twitter { + background: #1DA1F2; +} +.pro-details-social ul li a.pinterest { + background: #CB2028; +} +.pro-details-social ul li a.google-plus { + background: #fe6d4c; +} +.pro-details-social ul li a.linkedin { + background: #010103; +} +.pro-details-meta { + display: flex; + margin-top: 10px; +} +.pro-details-meta ul { + display: flex; +} +.pro-details-meta ul li { + margin-left: 10px; +} +.pro-details-meta ul li a:hover { + color: #00adf6; +} +.tab-content.thumb-content { + padding: 30px 15px; +} +.size_color_wraper { + margin-top: 20px; +} +.tag_cat_wrapper { + margin-top: 20px; +} +.pro-details-social { + margin-top: 20px; +} +.product_additional_information button { + border: 1px solid #ccc; + background: #fff; + height: 40px; + padding: 0 10px; + margin-right: 10px; + color: #333; +} +.product_additional_information button i { + margin-right: 5px; +} +.product_additional_information button:hover { + color: #fff; + background: #00adf6; + border-color: #00adf6; +} +.product_additional_information { + margin-top: 25px; +} +.thumb-desc-inner { + border-radius: 30px; + border: 1px solid #e5e5e5; + border-radius: 0; +} + +.main-thumb-desc.tabs-area > li { + display: inline-block; + margin: 0 15px; +} +.main-thumb-desc.tabs-area > li > a { + border-bottom: 2px solid transparent; + font-size: 16px; + font-weight: 600; + line-height: 30px; + padding: 0; + text-transform: uppercase; + font-family: 'Roboto Condensed', sans-serif; + letter-spacing: 1px; +} +.main-thumb-desc li a.active { + border-bottom: 2px solid #00adf6; + color: #00adf6; +} + +.main-thumb-desc li a:hover { + color: #00adf6; +} + +#dtail p { + line-height: 25px; +} + +.border-default { + border: 1px solid #ededed; + border-radius: 3px; + padding-bottom: 30px; +} + +.universal-padding { + padding-left: 15px; + padding-right: 15px; +} + +.group-title { + -moz-box-align: center; + -moz-box-pack: justify; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + border-bottom: 1px solid #ebebeb; + color: #363f4d; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + margin-bottom: 20px; + padding-bottom: 25px; + position: relative; +} + +.group-title h2 { + font-size: 18px; +} +.rating_wrap { + margin: 50px 0 20px; +} + +.review-mini-title { + color: #292929; + font-size: 18px; + font-weight: 500; + margin: 30px 0; + text-transform: capitalize; +} + +.review-list li { + text-align: left; +} + +.review-list li > span { + display: inline-block; + font-size: 14px; + font-weight: 500; + width: 49px; +} + +.review-list li label span { + font-weight: 500; +} + +.review-list li label { + font-size: 13px; + left: 120px; + position: relative; +} + +.review-list li label a { + color: #303030; + font-weight: 500; +} + +.review-list li label a:hover { + color: #00adf6; +} + +.review-title { + border-bottom: 1px solid #ebebeb; + font-size: 18px; + font-weight: 400; + padding-bottom: 25px; + padding-top: 15px; + line-height: 25px; +} + +.review-title span { + font-weight: 500; +} + +.riview-field input, .riview-field textarea { + border: 1px solid #ebebeb; + -webkit-box-shadow: none; + box-shadow: none; + width: 100%; + border-radius: 0; +} + +.riview-field label { + color: #333333; + font-size: 13px; + font-weight: 500; +} + +.customer-btn { + background: #00adf6 none repeat scroll 0 0; + border: medium none; + color: #ffffff; + cursor: pointer; + display: inline-block; + font-size: 15px; + font-weight: 500; + margin-top: 20px; + padding: 10px 50px; + text-align: center; + text-transform: uppercase; + -webkit-transition: all 300ms ease-in 0s; + transition: all 300ms ease-in 0s; + float: right; +} +.tab-content .tab-pane.active { + overflow: hidden; +} + +.customer-btn:hover { + background: #303030 none repeat scroll 0 0; + color: #fff; +} + +.return-customer-btn { + background: #303030; +} + +.return-customer-btn:hover { + background: #00adf6; +} +.product-varient-wrapper { + display: flex; + margin-top: 20px; +} +.pv_class { + min-width: 130px; + margin-right: 10px; +} +.pv_class .nice-select { + width: 100%; + border-radius: 0; +} +.pv_class .nice-select .list { + width: 100%; + border-radius: 0; +} +.pv_class .nice-select .option.selected { + color: #00adf6; +} +.measurment_modal_wrapper .modal-content .modal-body { + padding: 15px; +} +.measurment_modal_wrapper table { + width: 100%; +} +.measurment_modal_wrapper .modal-content .modal-header { + padding-top: 10px; +} +.common_class_modal button { + border: none; +} +.common_class_modal button:hover { + color: #fff; + background: #00adf6; +} +.common_class_modal ul { + margin-bottom: 20px; +} +.common_class_modal ul li { + list-style: inside; +} +.secure_pay { + margin-top: 20px; +} + +/*----------------------------------------*/ +/* Compare Page CSS +/*----------------------------------------*/ +.table > tbody > tr > td, +.table > tbody > tr > th, +.table > tfoot > tr > td, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > thead > tr > th { + border: 1px solid #ebebeb; +} + +.table-responsive > .table > tbody > tr > td, +.table-responsive > .table > tbody > tr > th, +.table-responsive > .table > tfoot > tr > td, +.table-responsive > .table > tfoot > tr > th, +.table-responsive > .table > thead > tr > td, +.table-responsive > .table > thead > tr > th { + white-space: normal; +} + +.compare-content > tbody > tr > td { + padding: 20px 15px; + vertical-align: middle; +} + +.product-title { + font-size: 14px; + font-weight: 600; + width: 120px; +} + +.item-description { + font-weight: 500; + width: 200px; + font-size: 14px; +} + +.item-description p { + text-align: left; + margin: 0; +} + +.item-description i { + font-size: 18px; +} +.item-description a:hover { + color: #00adf6; +} + +.compare-detail-content { + padding-top: 16px; +} +.item-description .compare-cart { + background: #00adf6 none repeat scroll 0 0; + border-radius: 20px; + color: #ffffff; + display: inline-block; + font-size: 10px; + padding: 6px; + position: relative; + width: 120px; +} + +.item-description .compare-cart:hover { + background: #303030 none repeat scroll 0 0; + color: #ffffff; +} + +.item-description .compare-cart:hover i { + border-color: #303030; +} + +.item-description .compare-cart i { + background: #ffffff none repeat scroll 0 0; + border-radius: 50%; + -webkit-box-shadow: 0 1px 1px #efefef; + box-shadow: 0 1px 1px #efefef; + color: #777777; + font-size: 12px; + height: 32px; + left: 0px; + line-height: 31px; + position: absolute; + text-align: center; + top: 0; + width: 31px; + border: 1px solid #00adf6; + -webkit-transition: all 0.3s; + transition: all 0.3s; +} + +.item-description img { + width: 100%; +} + +.compare-details { + text-align: left; +} + +.item-description .product-rating i { + font-size: 12px; + color: #00adf6; +} + +.compare-details span { + display: inline-block; + font-size: 13px; + text-transform: capitalize; +} + +.compare-details h4 { + font-size: 18px; + font-weight: 600; + line-height: 1; +} + +.compare-details h4 a { + color: #333; + font-size: 14px; + text-transform: capitalize; +} + +.compare-details h4 a:hover, +.item-description .fa-trash-o:hover { + color: #00adf6; + cursor: pointer; +} +.item-description h5 { + margin: 0; + font-size: 16px; + letter-spacing: .5px; +} +/*----------------------------------------*/ +/* Checkout CSS +/*----------------------------------------*/ +.coupon-area .coupon-info input { + background: transparent; + border: 1px solid #e5e5e5; +} + +.coupon-area .coupon-info .checkout-coupon .code:focus { + border: 1px solid #e5e5e5; +} + +.checkbox-form input { + color: #626262; +} + +.coupon-accordion h3 { + background-color: #f5f5f5; + border-top: 3px solid #00adf6; + font-size: 14px; + font-weight: 400; + list-style: outside none none; + margin-bottom: 30px; + padding: 1em 2em 1em 3.5em; + position: relative; + text-transform: capitalize; + width: auto; +} +.coupon-accordion h3::before { + color: #777; + content: "\ef5a"; + display: inline-block; + font-family: icofont; + left: 16px; + position: absolute; + top: 14px; +} + +.coupon-accordion span { + color: #555; + cursor: pointer; + -webkit-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; +} + +.coupon-accordion span:hover, +p.lost-password a:hover { + color: #00adf6; +} + +.coupon-content { + border: 1px solid #e5e5e5; + display: none; + margin-bottom: 20px; + padding: 20px; +} + +.coupon-info {} + +.coupon-info p.coupon-text { + margin-bottom: 15px +} + +.form-row > label { + margin: 0; +} + +.coupon-info p { + margin-bottom: 0 +} + +.coupon-info p.form-row-first {} + +.coupon-info p.form-row-first label, +.coupon-info p.form-row-last label { + color: inherit; + display: block; +} + +.coupon-info p.form-row-first label span.required, +.coupon-info p.form-row-last label span.required { + color: red; + font-weight: 700; +} + +.coupon-info p.form-row-first input, +.coupon-info p.form-row-last input { + border: 1px solid #ccc; + height: 34px; + margin: 0 0 14px; + max-width: 100%; + padding: 0 0 0 10px; + width: 370px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} + +.coupon-info p.form-row input[type="submit"]:hover, +p.checkout-coupon input[type="submit"]:hover { + background: #00adf6 none repeat scroll 0 0; +} + +.coupon-info p.form-row input[type="checkbox"] { + height: inherit; + position: relative; + top: 2px; + width: inherit; +} + +p.lost-password { + margin-top: 15px; +} + +p.lost-password a { + color: #6f6f6f; + font-size: 12px; +} + +p.checkout-coupon input[type=text] { + height: 36px; + padding-left: 10px; + width: 170px; + font-size: 13px; +} + +p.checkout-coupon input[type="submit"] { + background: #333 none repeat scroll 0 0; + border: medium none; + border-radius: 0; + color: #fff; + height: 36px; + margin-left: 6px; + padding: 5px 10px; + -webkit-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + width: inherit; +} + +.coupon-checkout-content { + margin-bottom: 30px; + display: none; +} + +.checkbox-form > h3 { + border-bottom: 1px solid #ebebeb; + font-size: 24px; + font-weight: 600; + margin-bottom: 30px; + padding-bottom: 10px; + text-transform: uppercase; +} + +.ship-different-title h3 label { + display: inline-block; + margin-right: 20px; + font-size: 24px; + font-weight: 600; +} +.country-select label span.required, +.checkout-form-list label span.required { + color: red; +} +.country-select select { + border: 1px solid #ddd; + height: 32px; + padding-left: 10px; + width: 100%; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background: #fff; + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.075); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.075) +} + +.checkout-form-list label { + color: #333333; +} + +.checkout-form-list input[type="text"], .checkout-form-list input[type="password"], .checkout-form-list input[type="email"] { + background: #ffffff none repeat scroll 0 0; + border: 1px solid #ebebeb; + border-radius: 0; + height: 40px; + padding: 0 0 0 10px; + width: 100%; +} + +.country-select .nice-select { + height: 40px; + line-height: 40px; + border-radius: 0; + margin-bottom: 20px; +} +.ship-different-title label { + margin-left: 10px; +} +.checkout-form-list { + margin-bottom: 20px; +} + +.checkout-form-list input[type="checkbox"] { + display: inline-block; + height: inherit; + margin-right: 10px; + position: relative; + top: 0; + width: inherit; +} + +.create-acc label { + color: #333; + display: inline-block; +} +.checkout-form-list input[type=password] {} + +.create-accounts { + display: none +} +.ship-different-title h3 label { + display: inline-block; + margin-right: 20px; + margin-bottom: 0; +} +.order-notes textarea { + background: #ffffff none repeat scroll 0 0; + border: 2px solid #eceff8; + font-size: 14px; + height: 90px; + padding: 15px; + width: 100%; +} +#ship-box-info { + display: none; + padding-top: 30px; +} + +.your-order { + background: #f2f2f2 none repeat scroll 0 0; + padding: 30px 40px 45px; +} + +.your-order h3 { + border-bottom: 1px solid #ebebeb; + font-size: 24px; + margin: 0 0 20px; + padding-bottom: 10px; + text-transform: uppercase; + width: 100%; + font-weight: 600; +} + +.your-order-table table { + background: rgba(0, 0, 0, 0) none repeat scroll 0 0; + border: medium none; + width: 100%; +} + +.your-order-table table th, +.your-order-table table td { + border-bottom: 1px solid #d8d8d8; + border-right: medium none; + font-size: 14px; + padding: 15px 0; +} + +.your-order-table table td{ + text-align:right +} +.your-order-table table td.product-name { + text-align: left; +} +.amount { + font-size: 14px; + font-weight: 600; +} +.your-order-table table th.product-total { + text-align: right; +} +.your-order-table table th { + border-top: medium none; + font-family: Montserrat, Arial, Helvetica, sans-serif; + font-weight: normal; + text-align: left; + text-transform: uppercase; + vertical-align: middle; + white-space: nowrap; + width: 250px; + font-weight: 600; +} + +.your-order-table table .shipping ul li input { + position: relative; + top: 2px; +} + +.your-order-table table .shipping th { + vertical-align: top; +} + +.your-order-table table .order-total th { + border-bottom: medium none; + font-size: 16px; + font-weight: 600; +} + +.your-order-table table .order-total td { + border-bottom: medium none; +} + +.your-order-table table tr.cart_item:hover { + background: #F9F9F9 +} + +.your-order-table table tr.order-total td span { + color: #00adf6; + font-size: 20px; + font-weight: 600; +} + +.cart-subtotal .amount { + font-weight: 600; +} + +.your-order-table table {} + +.payment-method { + margin-top: 40px; +} + +.ship-different-title h3 { + line-height: 1; +} + +.payment-accordion {} + +.payment-accordion h3 { + border-bottom: 0 none; + margin-bottom: 10px; + padding-bottom: 0; +} + +.payment-accordion h3 a { + color: #6f6f6f; + font-size: 14px; + padding-left: 25px; + position: relative; + text-transform: capitalize; + text-decoration: none +} + +.payment-accordion h3 a:before, +.payment-accordion h3.open a:after { + content: ""; + display: inline-block; + font-family: fontawesome; + font-size: 20px; + left: 0; + position: absolute; + top: -2px; +} + +.payment-accordion h3.open a:after { + content: "\f056"; +} + +.payment-content {} + +.payment-content p { + font-size: 13px; +} + +.payment-accordion img { + height: 60px; + margin-left: 15px; +} + +.order-button-payment input { + background: #00adf6; + border: medium none; + color: #fff; + font-size: 17px; + font-weight: 600; + height: 50px; + margin: 20px 0 0; + padding: 0; + text-transform: uppercase; + -webkit-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + width: 100%; +} + +.order-button-payment input:hover { + background: #444 +} + +.card-header { + background-color: #f5f5f5; + padding: 0; +} + +.card { + margin-top: 5px; +} + +.card .btn-link { + color: #1b1b1c; + font-weight: 600; +} + +/*----------------------------------------*/ +/* Cart & Wish List CSS +/*----------------------------------------*/ +.cart-main-area .section-title h2, +.coupon-area .section-title h2 { + text-transform: capitalize; + color: #555; + font-weight: 500; +} + +.shipping_method input { + background: #eceff8 none repeat scroll 0 0; + border: 2px solid #eceff8; + -webkit-box-shadow: none; + box-shadow: none; + color: #626262; + font-size: 14px; + height: 45px; + padding-left: 10px; + width: inherit; +} + +.cart-title-area { + padding-top: 30px; +} + +.car-header-title {} + +.car-header-title h2 { + font-size: 20px; + margin: 0; + text-transform: uppercase; +} + +.table-content table { + background: #fff none repeat scroll 0 0; + border-color: #e5e5e5; + border-radius: 0; + border-style: solid; + border-width: 1px 0 0 1px; + text-align: center; + width: 100%; +} + +.table-content table th { + border-top: medium none; + font-weight: 600; + padding: 20px 10px; + text-align: center; + text-transform: capitalize; + vertical-align: middle; + white-space: nowrap; + font-size: 15px; +} + +.table-content table th, +.table-content table td { + border-bottom: 1px solid #e5e5e5; + border-right: 1px solid #e5e5e5; +} + +.table-content table td { + border-top: medium none; + padding: 20px 10px; + vertical-align: middle; + font-size: 13px; +} + +.table-content table td input { + background: #fff; + border: medium none; + border-radius: ; + color: #6f6f6f; + font-size: 15px; + font-weight: normal; + height: 40px; + padding: 0 5px 0 10px; + width: 60px; + border: 1px solid #ccc; +} + +.table-content table td.product-subtotal { + font-size: 15px; + font-weight: 600; + width: 120px; +} + +.table-content table td.product-name a, +.product-stock-status span { + font-size: 14px; + font-weight: 500; + margin-left: 10px; + text-transform: capitalize; +} + +.product-stock-status span { + color: #00adf6; + font-weight: 500; +} + +.table-content table td.product-name { + width: 270px; +} + +.table-content table td.product-thumbnail { + width: 100px; +} + +.table-content table td.product-remove a { + display: inline-block; + font-size: 18px; + text-align: center; + -webkit-transition: all 0.3s ease-in; +} + +.table-content table .product-price .amount { + font-size: 15px; + font-weight: 600; +} + +.table-content table td.product-remove i:hover, +.table-content table td.product-remove a:hover i { + color: #00adf6; +} + +.table-content table td.product-quantity { + width: 180px; +} + +.table-content table td.product-remove { + width: 150px; +} + +.table-content table td.product-price { + width: 130px; +} + +.table-content table td.product-name a:hover, +.buttons-cart a:hover { + color: #00adf6; +} + +.product-thumbnail img { + width: 100%; +} + +.buttons-cart { + margin-bottom: 30px; + overflow: hidden; +} + +.buttons-cart input, +.coupon input[type="submit"], +.buttons-cart a, +.coupon-info p.form-row input[type="submit"] { + background: #303030 none repeat scroll 0 0; + border: medium none; + border-radius: 0; + -webkit-box-shadow: none; + box-shadow: none; + color: #fff; + display: inline-block; + float: left; + font-size: 12px; + font-weight: 600; + height: 40px; + line-height: 41px; + margin-right: 15px; + padding: 0 20px; + text-shadow: none; + text-transform: uppercase; + -webkit-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + white-space: nowrap; + width: inherit; +} + +.wc-proceed-to-checkout { + clear: both; + display: block; +} + +.buttons-cart input:hover, +.coupon input[type="submit"]:hover, +.buttons-cart a:hover { + background: #00adf6 none repeat scroll 0 0; + color: #fff; +} + +.buttons-cart a { + color: #fff; + float: left; + height: 40px; +} + +.coupon input[type=submit] {} + +.cart_totals { + width: 100%; + text-align: right; +} +.cart_totals h2 { + border-bottom: 2px solid #222; + display: inline-block; + font-size: 24px; + margin: 0 0 35px; + text-transform: uppercase; + font-weight: 600; +} +.cart_bottom_wrapper { + padding-top: 50px; +} +.cart_totals table { + width: 100%; +} +.cart_totals table th { + border: medium none; + font-size: 14px; + text-align: left; + text-transform: capitalize; + vertical-align: top; + font-weight: normal; + padding-left: 10px; +} +.cart_totals table tr { + border: 1px solid #ccc; + height: 40px; + line-height: 40px; + margin-left: ; +} +.cart_totals table td { + border: medium none; + vertical-align: top; + padding-right: 10px; + border-left: 1px solid #ccc; +} +.cart_totals table td .amount { + font-size: 13px; + font-weight: bold; + margin-left: 5px; + text-align: right; + text-transform: uppercase; +} + +.cart_totals table td ul#shipping_method { + list-style: outside none none; + margin: 0; + padding: 0; +} + +.cart_totals table td ul#shipping_method li { + float: left; + margin: 0 0 10px; + padding: 0; + text-indent: 0; + width: 100%; +} + +.cart_totals table td ul#shipping_method li input { + margin: 0; + position: relative; + top: 2px; +} + +.cart_totals table {} + +a.shipping-calculator-button { + font-weight: bold; + color: #6f6f6f; +} + +a.shipping-calculator-button:hover { + color: #83CBDC +} + +.cart_totals table tr.order-total th, +.cart_totals table tr.order-total .amount { + font-size: 16px; + text-transform: uppercase; + white-space: nowrap; + font-weight: 600; + color:#00adf6; +} + +.wc-proceed-to-checkout a { + background: #303030 none repeat scroll 0 0; + color: #fff; + display: inline-block; + font-size: 13px; + font-weight: 600; + height: 45px; + line-height: 46px; + margin-top: 20px; + padding: 0 20px; + text-transform: uppercase; +} + +.wc-proceed-to-checkout a:hover { + background: #00adf6; +} + +.amount del { + font-size: 13px; + margin-left: 5px; + font-weight: 600; +} + +.cart-main-area.wish-list .product-remove { + width: 20px; +} + +.cart-main-area.wish-list table td.product-thumbnail { + width: 140px; +} + +.cart-main-area.wish-list .product-add-to-cart a { + background: #00adf6 none repeat scroll 0 0; + color: #ffffff; + display: block; + font-size: 14px; + font-weight: 700; + margin: 0 auto; + padding: 10px 56px; + text-transform: uppercase; + width: 260px; +} + +.cart-main-area.wish-list .product-add-to-cart a:hover { + background: #1a1a1a; +} + +.cart-main-area.wish-list td.product-add-to-cart { + width: 240px; +} + +/*----------------------------------------*/ +/*About us CSS +/*----------------------------------------*/ +.about-content .section-title { + margin-bottom: 5px; +} +.skill-content { + margin-left: 50px; + overflow: hidden; + padding-top: 40px; +} + +.skill .progress-bar { + background: #303030 none repeat scroll 0 0; + position: relative; +} + +.skill .progress .lead { + font-size: 14px; + left: 0; + position: absolute; + text-transform: capitalize; + top: -35px; + width: 100%; + z-index: 99; + font-weight: 400; +} + +.progress-bar > span { + color: #303030; + font-size: 14px; + height: 24px; + line-height: 25px; + position: absolute; + right: -12px; + top: -38px; + width: auto; +} + +.progress-bar > span::before { + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-top: 10px solid #000; + bottom: -8px; + content: ""; + left: 50%; + position: absolute; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); +} + +.skill .progress { + background: #ebebeb none repeat scroll 0 0; + border-radius: 0; + -webkit-box-shadow: none; + box-shadow: none; + height: 13px; + margin-bottom: 55px; + overflow: visible; + position: relative; +} + +.skill .progress:last-child { + margin-bottom: 0; +} + +.all-skill { + overflow: hidden; +} + +.single-skill { + background: #303030 none repeat scroll 0 0; + float: left; + padding: 80px 0; + text-align: center; + width: 25%; +} + +.skill-area .login-btn { + margin-bottom: 0; + margin-top: 32px; +} +.brand-logo-active.owl-carousel img { + margin: auto; + width: auto; +} + +.logo-active { + border-top: 1px solid #e5e5e5; +} + +.about-title h3 { + display: inline-block; + font-size: 28px; + padding-bottom: 15px; + font-weight: 600; + margin-top: -6px; +} + +.about-title.team-title h3 { + margin-bottom: 15px; +} + +/*----our team-----*/ +.our-team .pic{ + position: relative; + overflow: hidden; +} +.our-team .pic img{ + width: 100%; + height: auto; +} +.our-team .over-layer{ + width: 100%; + height: 100%; + position: absolute; + bottom: -100%; + left: 0; + background: rgba(0, 173, 246, 0.7); + transition: all 0.5s ease 0s; +} +.our-team:hover .over-layer{ + bottom: 0; +} +.our-team .over-layer:before{ + content: ""; + width: 90%; + height: 0; + position: absolute; + top: 5%; + left: 5%; + border-top: 5px solid rgba(255,255,255,0.7); + border-left: 5px solid rgba(255,255,255,0.7); + opacity: 0; + transition: all 0.5s ease 0.5s; +} +.our-team:hover .over-layer:before{ + opacity: 1; + height: 90%; +} +.our-team .social-links{ + padding: 0; + margin: 0; + list-style: none; + text-align: center; + position: relative; + top: 45%; + transform: scale(0); + opacity: 0; + transition: all 0.5s ease 1s; +} +.our-team:hover .social-links{ + opacity: 1; + transform: scale(1); +} +.our-team .social-links li{ + display: inline-block; + margin-left: 5px; +} +.our-team .social-links li a { + width: 35px; + height: 35px; + line-height: 35px; + border-radius: 50%; + display: block; + font-size: 15px; + color: #fff; + background: rgba(11, 32, 56, .9); +} +.our-team .social-links li a:hover { + background: #fff; + color: #333; +} +.our-team .team-content{ + background: #f3f5f7; + padding: 30px 25px; +} +.our-team .team-title{ + font-size: 18px; + font-weight: 700; + color: #5d5e5e; + margin: 0 0 5px 0; +} +.our-team .post{ + display: block; + font-size: 16px; + font-style: italic; + color: #898989; + margin-bottom: 15px; +} +.our-team .post:after{ + content: ""; + display: block; + width: 40px; + height: 2px; + background: #00adf6; + margin-top: 7px; +} + +/*----------------------------------------*/ +/* Login CSS +/*----------------------------------------*/ +.login-header { + font-size: 26px; + font-weight: 500; + line-height: 1; + margin-bottom: 40px; + text-transform: inherit; + text-align: center; + margin-top: -4px; +} + +.login-form { + background: white none repeat scroll 0 0; + -webkit-box-shadow: 2px 2px 11px 0 rgba(0, 0, 0, 0.1); + box-shadow: 2px 2px 11px 0 rgba(0, 0, 0, 0.1); + padding: 30px 30px 20px; +} + +.login-form label { + font-size: 14px; +} + +.login-form input, +.nice-select.bootstrap-select { + background: #ebebeb none repeat scroll 0 0; + border: 1px solid #ebebeb; + border-radius: 0; + font-size: 14px; + height: auto; +} + +.nice-select.bootstrap-select { + width: 100%; +} + +.address-area .nice-select .list { + height: 150px; + overflow-y: auto; +} + +.nice-select.bootstrap-select:active, +.nice-select.bootstrap-select.open, +.nice-select.bootstrap-select:focus { + border-color: #ebebeb; +} + +.nice-select.bootstrap-select .list { + width: 100%; +} + +.login-details a { + color: #303030; + display: block; + font-size: 14px; + margin-bottom: 20px; + text-transform: capitalize; +} + +.login-btn { + background: #333 none repeat scroll 0 0; + border: medium none; + color: #fff; + display: inline-block; + font-size: 13px; + font-weight: 600; + padding: 10px 18px 8px; + text-transform: uppercase; +} + +.login-btn:hover { + background: #00adf6; + color: #fff; +} + +.login-footer p a { + color: #303030; +} + +.login-footer p, +.login-footer a { + color: #555; + display: inline-block; + font-size: 15px; +} + +.login-details a:hover { + color: #00adf6; +} + +.login-footer p a:hover { + color: #00adf6; +} + +.login-footer.text-center { + border-top: 1px solid #ebebeb; + padding-top: 20px; + margin-top: 20px; +} + +.show-btn { + background: #878787 none repeat scroll 0 0; + border-radius: 0; + color: #fff; + font-size: 12px; + height: 40px; + position: absolute; + right: 15px; + top: 0; + text-transform: uppercase; + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; +} + +.show-btn:hover { + background: #303030; +} +.login-form .form-control { + height: 40px; + background: transparent; +} +/*----------------------------------------*/ +/*Register Account & Contact Form CSS +/*----------------------------------------*/ +.goole-map > div { + min-height: 600px; +} + +.register-form p { + font-size: 16px; + margin-bottom: 20px; + font-size: 15px; +} + +.register-form a { + color: #303030; + font-size: 16px; +} + +.register-form a:hover { + color: #00adf6; +} + +.register-form { + padding: 40px; +} + +.contact-form input { + font-size: 14px; + height: 46px; + margin-bottom: 20px; + max-width: 100%; + border: 1px solid #ebebeb; + background: #ebebeb; +} + +.send-email input { + background: #303030 none repeat scroll 0 0; + margin-bottom: 0; +} + +.contact-form textarea { + height: 200px; + font-size: 14px; + border: 1px solid #ebebeb; + background: #ebebeb; +} + +.form-message.error { + color: red; +} + +.form-message.success { + color: green; +} +.contact_wrapper .login-btn { + margin-top: 30px; +} +.area-details .single-quick-contact { + margin-bottom: 20px; +} + +/*----------------------------------------*/ +/* 404 Page CSS +/*----------------------------------------*/ +.error-text h1 { + color: #00adf6; + font-size: 200px; + font-weight: 700; + letter-spacing: 10px; + line-height: 150px; + margin-bottom: 30px; +} + +.error-text h2 { + font-size: 32px; + font-weight: 600; + line-height: 32px; + margin-bottom: 20px; + text-transform: uppercase; +} +.error-text > p { + font-size: 18px; + font-weight: 300; + line-height: 30px; + margin-bottom: 30px; + padding: 0 180px; +} + +#search-form { + display: inline-block; + position: relative; + text-align: center; + width: 450px; +} + +#search-form input { + background: #f8f8f8 none repeat scroll 0 0; + border: 1px solid #e9e9e9; + border-radius: 30px; + color: #666666; + float: left; + font-size: 14px; + height: 45px; + padding: 0 50px 0 20px; + width: 100%; +} + +#search-form button { + background: rgba(0, 0, 0, 0) none repeat scroll 0 0; + border: medium none; + color: #4f4f4f; + font-size: 18px; + height: 100%; + position: absolute; + right: 0; + top: 0; + -webkit-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + width: 50px; +} + +#search-form button:hover { + color: #00adf6; +} + +.btn_error a { + background: #00adf6 none repeat scroll 0 0; + border-radius: 35px; + color: #ffffff; + display: inline-block; + font-size: 12px; + font-weight: bold; + line-height: 45px; + padding: 1px 30px 0; + text-transform: uppercase; + -webkit-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + margin-left:20px +} + +.btn_error a:hover { + background: #303030; +} +.error-text img { + margin-bottom: 50px; +} +.find_error { + display: flex; + justify-content: center; +} + + +/* Banner With Pointer */ + +.lookbook_info { + position: absolute; + width: 100%; + height: 100%; + display: block; + left: 0; + top: 0; +} +.lookbook_pointer { + width: 35px; + height: 35px; + border-radius: 100%; + border: 1px solid #00adf6; + background-color: #fff; + position: relative; + display: inline-block; + text-align: center; + cursor: pointer; + line-height: 33px; + position: absolute; +} +.lookbook_pointer::before { + content: "\ef0b"; + position: absolute; + transform: translateX(-50%) translateY(-50%); + font-family: icofont; + color: #00adf6; + font-size: 14px; + width: 100%; + height: 100%; + top: 50%; + left: 50%; +} +.lookbook_pointer:hover { + background: #00adf6; +} +.lookbook_pointer:hover::before { + color: #fff; +} +.lookbook_area .lookbook_content img { + width: 100%; +} +.lookbook_content { + position: relative; +} +.lookbook_pointer.pointer_1 { + left: 14%; + top: 60%; +} +.lookbook_pointer.pointer_2 { + left: 36%; + top: 48%; +} +.lookbook_pointer.pointer_3 { + left: 50%; + top: 22%; +} +.lookbook_pointer.pointer_4 { + top: 72%; + left: 62%; +} +.lookbook_pointer.pointer_5 { + top: 21%; + left: 83%; +} +.lookbook_pointer.pointer_6 { + left: 79%; + top: 10%; +} + +.pointer_box { + background: #fff; + width: 300px; + position: absolute; + top: 0; + right: 50%; + -webkit-transform: translate3d(50%,-100%,0); + transform: translate3d(50%,-100%,0); + border-radius: 5px; + opacity: 0; + visibility: hidden; + -webkit-transition: all .3s cubic-bezier(0,0,.2,1); + transition: all .3s cubic-bezier(0,0,.2,1); + z-index: 10; + padding: 10px; + -webkit-box-shadow: 0 2px 20px 0 rgba(0,0,0,0.07); + box-shadow: 0 2px 20px 0 rgba(0,0,0,0.07); + display: flex; + align-items: center; +} + +.lookbook_pointer:hover .pointer_box{ + visibility: visible; + opacity: 1; + -webkit-transition-delay: 0s; + transition-delay: 0s; + -webkit-transform: translateY(-110%) translateX(50%); + transform: translateY(-110%) translateX(50%); +} +.lookbook_pointer.align-right .pointer_box { + position: absolute; + top: 50%; + right: 0; + -webkit-transform: translateY(-50%) translateX(100%); + transform: translateY(-50%) translateX(100%); +} +.lookbook_pointer.align-right:hover .pointer_box{ + -webkit-transform: translateY(-50%) translateX(110%); + transform: translateY(-50%) translateX(110%); +} +.lookbook_pointer.align-left .pointer_box { + position: absolute; + top: 50%; + right: auto; + left: 0; + -webkit-transform: translateY(-50%) translateX(-100%); + transform: translateY(-50%) translateX(-100%); +} +.lookbook_pointer.align-left:hover .pointer_box{ + -webkit-transform: translateY(-50%) translateX(-110%); + transform: translateY(-50%) translateX(-110%); +} +.lookbook_pointer.align-bottom .pointer_box { + position: absolute; + top: auto; + right: 50%; + bottom: 0; + -webkit-transform: translateY(100%) translateX(50%); + transform: translateY(100%) translateX(50%); +} +.lookbook_pointer.align-bottom:hover .pointer_box{ + -webkit-transform: translateY(110%) translateX(50%); + transform: translateY(110%) translateX(50%); +} +.pointer_box a:hover { + color: #00adf6; +} + +.pointer_box_img { + max-width: 30%; +} +.pointer_box_content { + max-width: 70%; + padding-left: 15px; + text-align: left; +} +.pointer_box_content h4 { + font-size: 16px; + letter-spacing: .5px; +} +.small-list-price .regular-price { + font-size: 14px; +} +.pointer_box .item_add_cart { + opacity: 1; + visibility: visible; + position: static; + transform: unset; +} +.pointer_box .item_add_cart a { + width: 30px; + height: 30px; + padding: 0; + line-height: 28px; + font-size: 12px; + text-align: center; +} +.pointer_box .item_add_cart a:hover { + color: #fff; +} +.pointer_box_content .dis-price { + text-decoration: line-through; + margin-left: 5px; +} +.pointer_box::after { + width: 0; + height: 0; + border-top: 50px solid transparent; + border-right: 100px solid #fff; + border-bottom: 50px solid transparent; + position: absolute; + content: ""; + left: -30px; + z-index: -1; +} +.align-bottom .pointer_box::after { + border: 0 solid transparent; + border-right-width: 120px; + border-left-width: 120px; + border-bottom: 100px solid #fff; + left: 30px; + top: -10px; +} +.align-top .pointer_box::after { + border: 0 solid transparent; + border-right-width: 120px; + border-left-width: 120px; + border-top: 100px solid #fff; + left: 30px; + bottom: -10px; + top: auto; +} +.align-left .pointer_box::after { + border-top: 50px solid transparent; + border-left: 100px solid #fff; + border-bottom: 50px solid transparent; + left: auto; + top: 4px; + right: -30px; + border-right: transparent; +} + +/*Small Product Area*/ + +.small-list-inner { + display: flex; + align-items: center; +} +.small-list-img { + max-width: 30%; +} +.small-list-content { + max-width: 70%; + padding-left: 20px; +} +.small-list-title a { + font-size: 16px; + color: #333; + letter-spacing: .5px; +} +.small-list-icons { + display: flex; +} +.small-list-icons ul li { + height: 40px; + width: 40px; + display: inline-block; +} +.small-list-icons li a { + height: 30px; + width: 30px; + border: 1px solid #eee; + display: inline-block; + text-align: center; + margin-right: 10px; + color: #555; + border-radius: 50px; + line-height: 30px; +} +.small-list-icons li a:hover { + color: #fff; + border-color: #00adf6; + background: #00adf6; +} +.small-list-content .product-rating { + line-height: 15px; + margin-bottom: 15px; +} +.small-list-price { + margin-bottom: 10px; + line-height: 15px; +} +.small-list-price .dis-price { + text-decoration: line-through; +} +.small-list-inner .small-list-price .regular-price { + font-size: 16px; + margin-right: 5px; +} +.small-list-title { + line-height: 20px; + margin-bottom: 10px; +} +.small-list-title a:hover { + color: #00adf6 +} +.small-list-product { + margin-bottom: 20px; +} +.widget-product-title-wrapper .widget-product-title { + font-size: 22px; + margin-bottom: 20px; + padding-bottom: 10px; + position: relative; +} +.widget-product-title-wrapper .widget-product-title:before { + position: absolute; + height: 1px; + width: 50px; + content: ""; + background: #00adf6; + bottom: 0; +} +.product-widget-area.small_with_banner.adp_bottom { + padding-bottom: 60px; +} + + + + +/* pricing table area */ +.pricing-table-area .single-pricing-table { + background: #f9f9f9 none repeat scroll 0 0; + padding: 30px 0; + position: relative; + box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05); +} +.pricing-table-area .single-pricing-table h4 { + letter-spacing: 1px; +} +.pricing-table-area .adv-area li { + color: #333333; + display: block; + letter-spacing: 1px; + line-height: 30px; + position: relative; +} +.pricing-table-area .adv-area li::before { + content: "\eed9"; + font-family: icofont; + padding-right: 10px; +} +.pricing-table-area .adv-area li.disable::before { + content: "\eede"; +} +.pricing-table-area .adv-area li.disable { + color: #888888; +} +.pricing-table-area .price-tag span { + color: #00adf6; + display: inline-block; + font-size: 18px; + font-weight: 500; + line-height: 24px; + text-transform: capitalize; + z-index: 11; +} +.pricing-table-area .price-icon { + border: 5px solid #ddd; + border-radius: 100%; + color: #464646; + display: inline-block; + font-size: 50px; + height: 105px; + line-height: 90px; + margin-bottom: 15px; + text-align: center; + transition: all 0.3s ease 0s; + width: 105px; + z-index: 1; +} +.pricing-table-area .price-tag { + margin-bottom: 15px; +} +.pricing-table-area .adv-area > ul { + display: inline-block; + text-align: left; +} +.pricing-table-area .adv-area { + border-bottom: 1px solid #dddddd; + border-top: 1px solid #dddddd; + padding: 25px 0; +} +.pricing-table-area .single-pricing-table:hover .price-icon { + color: #00adf6; + border-color:#00adf6; +} +.pricing-table-area .adv-area li.disable:hover { + cursor: no-drop; +} +.pricing-table-area .special::before { + border-color: #00adf6 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); + border-style: solid; + border-width: 64px 64px 0 0; + content: ""; + height: 0; + left: 0; + position: absolute; + top: 0; + width: 0; +} +.pricing-table-area .special::after { + color: #ffffff; + content: "\eed8"; + font-family: icofont; + font-size: 18px; + left: 9px; + position: absolute; + top: 6px; +} + +.pricing-table-area .price-btn { + margin-top: 25px; +} + + +/* promotion banner */ +.promotion-product-area { + padding: 100px 0; + background-size: cover; +} +.discount-offer-wrapper span { + color: #00adf6 +} +.discount-offer-wrapper h1 { + font-size: 60px; + margin-bottom: 30px; + line-height: 60px; +} +.promotion-content h3 { + font-size: 30px; + letter-spacing: 1.5px; + margin-bottom: 10px; +} +.promotion-content h3 a:hover { + color: #fa7a7a; +} +.promotion-content .prodcut-price { + display: flex; + font-size: 20px; + align-items: center; + margin-top: 15px; +} +.promotion-content .prodcut-price .pro_price { + margin-left: 5px; + font-size: 26px; + font-weight: 700; + color: #00adf6 +} +.promotion-button .main-slider-button + .main-slider-button { + margin-left: 20px; +} +.promotion-content .prodcut-price .old-price.pro_price { + color: #767676; + font-weight: normal; + margin-left: 10px; +} +.promotion-pro-countdown { + display: flex; +} +.promotion-pro-countdown .single-count { + font-size: 40px; + font-family: 'Oswald', sans-serif; +} +.promotion-pro-countdown .single-count.sc_day { + font-weight: 700; + margin-right: 5px; +} +.promotion-pro-countdown .single-count { + padding-right: 5px; +} +.promotion-pro-countdown .single-count .sc_text { + padding-left: 5px; +} +.promotion-social.social-icon ul li a { + background: transparent; + color: #222; + height: 35px; + line-height: 35px; + width: auto; + padding: 0 15px; + border-radius: 20px; +} +.promotion-social.social-icon ul li a:hover { + color: #fff; +} +.promotion-social.social-icon ul li a i { + margin-right: 10px; +} +.promotion-countdown-inner { + padding-bottom: 20px; + border-bottom: 1px solid #cccccc; + padding-top: 20px; +} + +.promotion-area-top { + padding-bottom: 20px; + border-bottom: 1px solid #ccc; +} +.promotion-content .promotion-social { + margin-top: 25px; + overflow: hidden; +} +.social-icon ul li a { + background: #242628; + border: 1px solid #ccc; + color: #fff; + display: block; + height: 40px; + line-height: 40px; + text-align: center; + width: 40px; +} +.social-icon ul li { + float: left; + margin-right: 10px; +} +.social-icon ul li .facebook:hover { + background: #314A87; + border-color: #314A87 +} +.social-icon ul li .twitter:hover { + background: #22BBF4; + border-color: #22BBF4 +} +.social-icon ul li .dribble:hover { + background: #D842A1; + border-color: #D842A1 +} +.social-icon ul li .g-plus:hover { + background: #DA2C2C; + border-color: #DA2C2C +} +.social-icon ul li .instargm:hover { + background: #F3800F; + border-color: #F3800F +} +.promotion-button { + display: flex; +} +.promotion-button .small-btn { + margin-right: 10px; +} +.promotion-countdown-inner .product-count-wrap .product-countdown { + position: unset; + transform: unset; + display: flex; +} +.promotion-countdown-inner .product-countdown .count { + margin-bottom: 0; + width: 100px; + height: 100px; + text-align: center; + padding: 22px 20px; + border-radius: 100px; + margin-right: 20px; +} +.promotion-countdown-inner .product-countdown .count p { + margin-bottom: 0; + line-height: 28px; + font-size: 24px; +} +.promotion-countdown-inner .product-countdown .count span { + font-size: 14px; + line-height: 28px; +} +.single-promotion-slider .row { + align-items: center; +} + + +.apointment-contact-section .single-contact .contact-form { + background: #fbfbfb; + padding: 0px 0px; + box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.05); +} +.apointment-contact-section .single-contact .contact-form .con-head { + background: #00adf6; + text-align: center; + padding: 25px 0; +} +.apointment-contact-section .single-contact .contact-form .con-head p { + margin: 0; + color: #fff; +} +.apointment-contact-section .single-contact .contact-form .con-head h3 { + font-size: 24px; + color: #fff; + margin-bottom: 10px; + text-transform: uppercase; +} +.apointment-contact-section .single-contact .contact-form .form-inline { + padding: 30px; +} +.apointment-contact-section .single-contact .contact-form .form-inline input { + margin-bottom: 20px; + width: 100%; +} +.apointment-contact-section .single-contact .contact-form .form-inline textarea#comment { + width: 100%; +} +.apointment-contact-section .single-contact .contact-form .form-inline textarea.form-control { + width: 100%; + height: unset; +} +.apointment-contact-section .single-contact .contact-form .form-inline .form-control { + border-radius: 0; + font-size: 14px; + color: #9f9d9d; + height: 45px; + padding: 7px 15px; + background: #fff; + border: 1px solid #eee +} +.apointment-contact-section .single-contact .contact-form .form-inline ::placeholder { + text-transform: capitalize; + font-size: 14px; + color: #9f9d9d; +} +.apointment-contact-section .single-contact .contact-form .form-inline .form-control:focus { + box-shadow: none; + outline: none; +} +.apointment-contact-section .single-contact .contact-form .form-inline .submit-btn { + background: #9bcc5b; + border: none; + margin: auto; + margin-top: 20px; + text-transform: uppercase; + display: table; +} +.apointment-contact-section .single-contact .contact-form .form-inline .submit-btn:focus { + box-shadow: none; +} +.apointment-contact-section form#contactForm { + padding: 30px 25px; +} +.apointment-contact-section form#contactForm .form-control { + border-radius: 0; +} +.apointment-contact-section form#contactForm ::placeholder{ + font-size: 14px; + color: #9f9d9d; +} + +.form-inline .form-group .nice-select { + width: 100%; + border-radius: 0; + margin-bottom: 20px; +} +.form-inline .form-group .nice-select .current { + color:#9f9d9d +} + +button.small-btn { + border: 1px solid #ccc; + color: #666; + padding: 10px 25px; + display: block; + background: #fff; + text-align: right; + margin: 25px auto 0; + width: 100%; + text-align: center; + text-transform: capitalize; +} +button.small-btn:hover { + color: #fff; + border-color:#00adf6; + background: #00adf6 +} + + + + + +/* Portfolio filter styles */ +.portfolio-wrap { + overflow: hidden; } + +.portfolio-filters { + text-align: center; + margin-bottom: 40px; } +.portfolio-filters button { + background: rgba(0, 0, 0, 0) none repeat scroll 0 0; + border: medium none; + color: #555555; + cursor: pointer; + display: inline-block; + font-family: "Roboto",sans-serif; + font-size: 14px; + font-weight: 400; + line-height: 26px; + outline: medium none; + padding: 5px 18px; + text-transform: uppercase; + position:relative +} + +.portfolio-filters button::after { + background: #00adf6 none repeat scroll 0 0; + bottom: 0; + content: ""; + height: 1px; + left: 18px; + position: absolute; + transition: all 0.3s ease 0s; + width: 0; +} +.portfolio-filters button:hover::after, .portfolio-filters button.is-checked::after { + width: 20px; +} +.portfolio-filters button:hover,.portfolio-filters button.is-checked { + color: #00adf6; +} +.portfoilo-img { + overflow: hidden; } + +.portfolio-icon { + position: absolute; + height: 80px; + width: 80px; + left: 50%; + top: 50%; + background: rgba(71, 187, 143, 0); + color: #fff; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + -webkit-align-items: center; + -moz-align-items: center; + align-items: center; + -webkit-transform: scale(0.9); + -moz-transform: scale(0.9); + -ms-transform: scale(0.9); + -o-transform: scale(0.9); + transform: translateX(-50%) translateY(-50%) scale(0.9); + -webkit-transition: all 0.4s ease-in-out 0s; + -moz-transition: all 0.4s ease-in-out 0s; + -ms-transition: all 0.4s ease-in-out 0s; + -o-transition: all 0.4s ease-in-out 0s; + transition: all 0.4s ease-in-out 0s; + border-radius: 100px; +} + +.portfolio-icon a { + color: #fff; } +.portfolio-icon a:hover { + color: #f1f1f1; } + +.portfolio-wraper:hover .portfolio-icon { + background: #00adf6; + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: translateX(-50%) translateY(-50%) scale(1); + opacity: 1; +} + +.portfolio-load-more-button .load-more-toggle { + margin-top: 50px; } +.portfolio-icon-inner { + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); + padding: 20px; +} +.portfolio-single { + margin-bottom: 30px; +} +.portfolio-area.adp_bottom { + padding-bottom: 50px; +} +.portfolio-wraper, .portfolio { + position: relative; +} +.portfolio-icon-inner h3 { + font-size: 18px; + margin-bottom: 0; +} +.portfolio-icon-inner h3 a:hover { + color: #00adf6; +} +.portfolio-wraper .portfolio-icon a { + font-size: 50px; + left: 50%; + position: absolute; + transform: translateX(-50%) translateY(-50%); + transition: all 0.3s ease 0s; + opacity: 0; + top: 50%; +} +.portfolio-wraper:hover .portfolio-icon a { + opacity: 1; + visibility: visible; +} + +/*============================================= += feature logo = +=============================================*/ +.single-feature-logo { + text-align: center; + overflow: hidden; + display: flex; +} +.single-feature-logo__image { + width: 20%; +} +.single-feature-logo__content { + width: 80%; + text-align: left; + padding-left: 15px; +} +.single-feature-logo__content .title { + font-size: 16px; + line-height: 15px; + margin-bottom: 10px; + color: #292929; + letter-spacing: 1px; +} +.single-feature-logo__content .short-desc { + font-weight: 400; + line-height: 19px; + color: #929292; +} +.single-feature-logo__icon { + border: 1px solid #ccc; + height: 60px; + width: 60px; + border-radius: 100px; + font-size: 36px; + line-height: 60px; + transition: .3s; +} +.single-feature-logo:hover .single-feature-logo__icon { + border-color: #00adf6; + color: #00adf6; +} +.feature-logo-area.adp_bottom { + padding-bottom: 60px; +} +/*===== End of feature logo ======*/ + + +.food-category-area .single-food-category { + border: 1px solid #f0f0f0; + -webkit-transition: all 0.3s ease-in-out 0s; + -moz-transition: all 0.3s ease-in-out 0s; + -ms-transition: all 0.3s ease-in-out 0s; + -o-transition: all 0.3s ease-in-out 0s; + transition: all 0.3s ease-in-out 0s; + padding: 30px 10px; + margin: 0 0 30px 0; +} +.single-food-category img { + max-width: 100px; + margin: auto; + padding-bottom: 30px; + border-bottom: 1px solid #ccc; + margin-bottom: 25px; +} + +.food-category-area .single-food-category:hover { + background: #fbfbfb none repeat scroll 0 0; + border-color: #ffffff; + -webkit-box-shadow: 4px 8px 14px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px #ffffff inset; + box-shadow: 4px 8px 14px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px #ffffff inset; +} +.food-category-area .single-food-category > h4 > a { + color: #666; + font-size: 18px; + font-weight: 500; + text-transform: capitalize; + -webkit-transition: all 0.3s ease-in-out 0s; + -moz-transition: all 0.3s ease-in-out 0s; + -ms-transition: all 0.3s ease-in-out 0s; + -o-transition: all 0.3s ease-in-out 0s; + transition: all 0.3s ease-in-out 0s; +} + +.food-category-area .single-food-category > span { + color: #00adf6; + display: block; +} +.food-category-area .single-food-category > h4 > a:hover { + color: #00adf6; +} +.food-category-area.adp_bottom { + padding-bottom: 50px; +} + +/*single banner*/ +.single-banner { + margin-bottom: 30px; +} +.banner-area.adp_bottom { + padding-bottom: 50px; +} + + +/** + *-------------- EasyZoom core styles + */ +.easyzoom { + position: relative; + + /* 'Shrink-wrap' the element */ + display: inline-block; + *display: inline; + *zoom: 1; +} + +.easyzoom img { + vertical-align: bottom; +} + +.easyzoom.is-loading img { + cursor: progress; +} + +.easyzoom.is-ready img { + cursor: crosshair; +} + +.easyzoom.is-error img { + cursor: not-allowed; +} +.easyzoom-notice { + position: absolute; + top: 50%; + left: 50%; + z-index: 150; + width: 10em; + margin: -1em 0 0 -5em; + line-height: 2em; + text-align: center; + background: #FFF; + box-shadow: 0 0 10px #888; +} +.easyzoom-flyout { + position:absolute; + z-index: 100; + overflow: hidden; + background: #FFF; +} + +/** + * EasyZoom layout variations + */ +.easyzoom--overlay .easyzoom-flyout { + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.easyzoom--adjacent .easyzoom-flyout { + top: 0; + left: 100%; + width: 100%; + height: 100%; + margin-left: 20px; +} + +/**---------------------------------- */ + +.table-size-guide tbody th { + background: #000; + color: #fff; + font-weight: 600 +} + +.table-size-guide tbody td, +.table-size-guide tbody th { + padding: 8px 10px +} + +.table-size-guide tbody tr:nth-child(2n+1) { + background: #f6f6f6 +} + +.shopify-payment-button__more-options:hover:not([disabled]) { + text-decoration: underline +} + +.disabled .shopify-payment-button__button { + opacity: .6; + cursor: not-allowed; + pointer-events: none +} + +#shipping_policy .modal-body { + padding-top: 0; + padding-bottom: 20px; + padding-left: 20px; + padding-right: 20px; +} +.common_class_modal .product_oponion_form input, +.common_class_modal .product_oponion_form textarea { + width: 100%; + border: 1px solid #ccc; + height: 40px; + margin-bottom: 15px; + padding: 0 10px; +} +.common_class_modal .product_oponion_form textarea { + min-height: 120px; +} +.common_class_modal .modal-content .modal-body { + padding: 15px; +} +.common_class_modal button.query_button { + height: 40px; + padding: 0 30px; +} + +/*===============Faq area=================*/ +#accordion .panel{ + border: none; + border-radius: 5px; + box-shadow: none; + margin-bottom: 5px; +} +#accordion .panel-heading{ + padding: 0; + border: none; + border-radius: 5px 5px 0 0; +} +#accordion .panel-title a{ + display: block; + padding: 20px 30px; + background: #fff; + font-size: 17px; + font-weight: bold; + color: #000; + letter-spacing: 1px; + text-transform: uppercase; + border: 1px solid #00adf6; + border-radius: 5px 5px 0 0; + position: relative; +} +#accordion .panel-title a.collapsed{ + border-color: #e0e0e0; + border-radius: 5px; +} +#accordion .panel-title a::before, +#accordion .panel-title a.collapsed::before, +#accordion .panel-title a::after, +#accordion .panel-title a.collapsed::after { + content: "\ea5b"; + font-family: icofont; + font-weight: 900; + width: 30px; + height: 30px; + line-height: 30px; + border-radius: 5px; + background: #00adf6; + font-size: 20px; + color: #fff; + text-align: center; + position: absolute; + top: 15px; + right: 30px; + opacity: 1; + transform: scale(1); + transition: all 0.3s ease 0s; +} +#accordion .panel-title a::after, +#accordion .panel-title a.collapsed::after { + content: "\ea5d"; + background: transparent; + color: #000; + opacity: 0; + transform: scale(0); +} +#accordion .panel-title a.collapsed:before{ + opacity: 0; + transform: scale(0); +} +#accordion .panel-title a.collapsed:after{ + opacity: 1; + transform: scale(1); +} +#accordion .panel-body{ + padding: 20px 30px; + background: #00adf6; + border-top: none; + color: #fff; + line-height: 28px; + letter-spacing: .5px; + border-radius: 0 0 5px 5px; +} + +/* Clickable Menu */ +.clickable-menu a { + color: #888; + font-size: 30px; + line-height: 1; + display: inline-block; +} + .clickable-menu a:hover { + color: #00adf6 } + @media only screen and (min-width: 768px) and (max-width: 991px) { + .clickable-menu { + margin-top: -3px; } } + @media only screen and (max-width: 767px) { + .clickable-menu { + margin-top: -3px; } } + +.clickable-mainmenu { + background: white none repeat scroll 0 0; + color: #353535; + height: 100vh; + overflow-y: auto; + padding: 130px 20px 20px; + position: fixed; + left: 0; + top: 0; + -webkit-transform: translateX(-110%); + -ms-transform: translateX(-110%); + transform: translateX(-110%); + -webkit-transition: -webkit-transform 0.5s ease-in-out 0s; + transition: -webkit-transform 0.5s ease-in-out 0s; + -o-transition: transform 0.5s ease-in-out 0s; + transition: transform 0.5s ease-in-out 0s; + transition: transform 0.5s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s; + width: 300px; + z-index: 9999; + border-right: 1px solid #eee; +} + .clickable-mainmenu.inside { + -webkit-transform: translateX(0px); + -ms-transform: translateX(0px); + transform: translateX(0px); + z-index: 9999; } + @media only screen and (max-width: 767px) { + .clickable-mainmenu { + padding: 100px 35px 40px; } } + .clickable-mainmenu .clickable-mainmenu-icon button { + background: transparent none repeat scroll 0 0; + border: medium none; + color: #555; + cursor: pointer; + font-size: 30px; + padding: 0; + position: absolute; + right: 20px; + top: 20px; + -webkit-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + } + .clickable-mainmenu .clickable-mainmenu-icon button:hover { + color: #00adf6 } + .clickable-mainmenu .side-logo { + margin-bottom: 50px; } + @media only screen and (max-width: 767px) { + .clickable-mainmenu .side-logo { + margin-bottom: 40px; } } + .clickable-mainmenu .clickable-menu-style { + background: #fff; + position: relative; + z-index: 99; + } + .clickable-mainmenu .clickable-menu-style ul li a { + color: #000; + font-size: 16px; + text-transform: capitalize; + padding: 0 0 20px; } + .clickable-mainmenu .clickable-menu-style ul li a:hover { + background: transparent; + color: #00adf6 } + .clickable-mainmenu .side-social { + margin-top: 50px; + position: absolute; + bottom: 50px; + left: 20px; + right: 20px; + width: auto; + } + .clickable-mainmenu .side-social ul li { + display: inline-block; + margin: 0 5px 0 0; + position: relative; } + .clickable-mainmenu .side-social ul li a { + font-size: 18px; + height: 35px; + width: 35px; + border: 1px solid #00adf6; + display: inline-block; + line-height: 33px; + text-align: center; + border-radius: 100px; + } + .clickable-mainmenu.inside .side-social ul li a:hover { + background: #00adf6; + color:#fff + } +.clickable-mainmenu .side-social ul li a.facebook { +color: #3b5999; } +.clickable-mainmenu .side-social ul li a.facebook:hover { +color: #fff; } +.clickable-mainmenu .side-social ul li a.dribbble { +color: #ea4c89; } +.clickable-mainmenu .side-social ul li a.dribbble:hover { +color: #fff; } +.clickable-mainmenu .side-social ul li a.pinterest { +color: #bd081c; } +.clickable-mainmenu .side-social ul li a.pinterest:hover { +color: #fff; } +.clickable-mainmenu .side-social ul li a.twitter { +color: #55acee; } +.clickable-mainmenu .side-social ul li a.twitter:hover { +color: #fff; } +.clickable-mainmenu .side-social ul li a.linkedin { +color: #0077B5; } +.clickable-mainmenu .side-social ul li a.linkedin:hover { +color: #fff; } + +.header-hm-7.stick .clickable-menu { + margin-top: 19px; } + .header-hm-7.stick .clickable-menu a { + color: #282828; } + .header-hm-7.stick .clickable-menu a:hover { + color: #00adf6 } + @media only screen and (min-width: 768px) and (max-width: 991px) { + .header-hm-7.stick .clickable-menu { + margin-top: 0px; } } + @media only screen and (max-width: 767px) { + .header-hm-7.stick .clickable-menu { + margin-top: 0px; } } + +.header-hm-7.stick .logo { + margin-top: 22px; + margin-bottom: 18px; } + @media only screen and (min-width: 768px) and (max-width: 991px) { + .header-hm-7.stick .logo { + margin-top: 2px; + margin-bottom: 0px; } } + @media only screen and (max-width: 767px) { + .header-hm-7.stick .logo { + margin-top: 2px; + margin-bottom: 0px; } } + +.header-hm-7.stick .header-right-wrap { + margin-top: 22px; + margin-bottom: 18px; } + @media only screen and (min-width: 768px) and (max-width: 991px) { + .header-hm-7.stick .header-right-wrap { + margin-top: 2px; + margin-bottom: 0px; } } + @media only screen and (max-width: 767px) { + .header-hm-7.stick .header-right-wrap { + margin-top: 2px; + margin-bottom: 0px; } } + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .header-hm-7 .header-right-wrap { + margin-right: 0; } } + +@media only screen and (max-width: 767px) { + .header-hm-7 .header-right-wrap { + margin-right: 0; } } + +@media only screen and (max-width: 767px) { + .header-hm-7 .header-right-wrap .same-style.cart-wrap .shopping-cart-content { + right: 0px; } } + +@media only screen and (max-width: 767px) { + .header-hm-7 .header-right-wrap .same-style.header-search .search-content { + right: -80px; } } + + +.special_minimal_slider .single-slide .slider-content { + border-style: solid; + border-width: 20px; + border-color: rgba(0,0,0,.1); + transition: background .3s,border .3s,border-radius .3s,box-shadow .3s; + padding: 30px; + background: rgba(255,255,255,.95); + max-width: 600px; +} +.special_minimal_slider .single-slide .slider-content h1 { + font-size: 40px; + line-height: 50px; + margin-bottom: 20px; +} +.special_minimal_slider .single-slide .slider-content h4 { + margin-bottom: 15px; +} +.special_minimal_slider .single-slide .slider-content .small-btn a { + margin-top: 30px; + padding: 0 30px; + height: 40px; + line-height: 39px; + font-size: 14px; +} +.special_minimal_slider .single-slide .slider-content p { + max-width: 100%; +} + + +.default_dot_style .slick-dots li { + background: transparent none repeat scroll 0 0; + border: 2px solid #2395ec; + -webkit-border-radius: 100%; + border-radius: 100%; + display: inline-block; + height: 16px; + margin: 0 5px; + position: relative; + width: 16px; +} + +.default_dot_style .slick-dots li button { + background: transparent none repeat scroll 0 0; + border: medium none; + -webkit-border-radius: 100%; + border-radius: 100%; + bottom: 0; + display: block; + height: 4px; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; + width: 4px; + text-indent: -9999px; + padding: 0; + cursor: pointer; +} +.default_dot_style .slick-dots li button::before { + font-family: 'slick'; + font-size: 6px; + line-height: 20px; + position: absolute; + top: 0; + left: 0; + width: 20px; + height: 20px; + content: ''; + text-align: center; + opacity: .25; + color: black; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.default_dot_style .slick-dots li:hover button, .default_dot_style .slick-dots li.slick-active button { + background: #2395ec none repeat scroll 0 0; +} +.default_dot_style .slick-dots { + position: absolute; + left: 50%; + transform: translateX(-50%); + bottom: -50px; +} + + +.slick-next::before, +.slick-prev::before { + display: none; +} +.default_arrow .slick-arrow { + background: #00adf6; + color: #fff; + font-size: 36px; + right: 10px; + height: 80px; + width: 60px; + line-height: 80px; + text-align: center; + z-index: 99; + opacity: 0; + transition: .3s; + border: 1px solid #00adf6; + position: absolute; + top: 50%; + transform: translateY(-50%); + cursor: pointer; +} +.default_arrow .slick-arrow:hover { + color: #00adf6; + border:1px solid #00adf6; + background: #fff; +} +.default_arrow .slick-prev.slick-arrow { + right: auto; + left: 10px; +} +.default_arrow:hover .slick-arrow { + opacity: 1; + right: 0; +} +.default_arrow:hover .slick-prev.slick-arrow { + left: 0; +} +.default_arrow.small_arrow .slick-arrow { + height: 50px; + width: 50px; + line-height: 50px; + font-size: 24px; + right: 25px; + margin-top: -15px; +} +.default_arrow.small_arrow .slick-prev.slick-arrow { + left: 25px; + right: auto; +} +.default_arrow.small_arrow:hover .slick-arrow { + right: 15px; +} +.default_arrow.small_arrow:hover .slick-prev.slick-arrow { + left: 15px; +} +.default_arrow.mini_arrow .slick-arrow { + font-size: 18px; + height: 30px; + width: 20px; + line-height: 30px; +} +.product-details-tab .slick-vertical .slick-slide { + cursor: pointer; +} +.common_class_modal .modal-content .modal-body { + overflow: scroll; +} + +.mean-container .mean-nav ul li a { + padding: 10px 5%; +} +.mean-container .mean-bar { + background: #00adf6; +} +.header-area .mean-container a.meanmenu-reveal span { + transition: .3s; +} +.header-area .mean-container a.meanmenu-reveal span { + background: #1b1b1c +} +.header-area .mean-container a.meanmenu-reveal:hover span { + background: #00adf6 +} +.mean-container a.meanmenu-reveal { + top: -55px; +} +.mean-container a.meanmenu-reveal.meanclose { + color: #1b1b1c; +} +.mean-container a.meanmenu-reveal.meanclose:hover { + color: #00adf6; +} + +.slinky-theme-default .next::after { + font-size: 20px; +} +.slinky-theme-default .back::before { + font-size: 22px; + padding: 5px 1px; +} +.mfp-wrap { + z-index: 999999; +} + + + + + + + .tab-content .slick-list { + padding-right: 2px; + } + + .wrapper [class*="col-"] { + position: relative; + } + + .slick-slider .row.custom_row_class, + .slick-slider.row { + --bs-gutter-x: 0; + margin-left: -15px; + margin-right: -15px; + } + + .slick-slider .slick-slide { + padding-right: 15px; + padding-left: 15px; + } + + .text-md-right { + text-align: right; +} \ No newline at end of file diff --git a/html/wishlist.html b/html/wishlist.html new file mode 100644 index 0000000..b49a290 --- /dev/null +++ b/html/wishlist.html @@ -0,0 +1,943 @@ + + + + + + + Home || animart pet shop, pet shitter, pet food, pet care bootstrap 5 Template + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
      + +
    • + + +
    • + +
    • + 2 + +
    • +
    • + + + +
    • +
    +
    +
    + +
    + + + + + + +
    + +
    + + + + + + + + +
    +
    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    RemoveImageProductUnit PriceStock Statusadd to cart
    + cart-image + Product Title Here 1$254.00in stockAdd to cart
    + cart-image + Product Title Here 2$250.00in stockAdd to cart
    +
    + +
    + +
    +
    + +
    +
    + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..09f0b21 --- /dev/null +++ b/package.json @@ -0,0 +1,11 @@ +{ + "name": "turingflow-shop-001", + "version": "1.0.0", + "description": "Turingflow Shop Template", + "scripts": { + "dev": "browser-sync start --server 'html' --files 'html/**/*.html, html/**/*.css, html/**/*.js' --no-notify --host 0.0.0.0 --port 3000" + }, + "devDependencies": { + "browser-sync": "^3.0.2" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..7f9d107 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,1105 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + devDependencies: + browser-sync: + specifier: ^3.0.2 + version: 3.0.4 + +packages: + + '@socket.io/component-emitter@3.1.2': + resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + + '@types/cors@2.8.19': + resolution: {integrity: sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==} + + '@types/node@25.0.3': + resolution: {integrity: sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + async-each-series@0.1.1: + resolution: {integrity: sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==} + engines: {node: '>=0.8.0'} + + async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64id@2.0.0: + resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} + engines: {node: ^4.5.0 || >= 5.9} + + batch@0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browser-sync-client@3.0.4: + resolution: {integrity: sha512-+ew5ubXzGRKVjquBL3u6najS40TG7GxCdyBll0qSRc/n+JRV9gb/yDdRL1IAgRHqjnJTdqeBKKIQabjvjRSYRQ==} + engines: {node: '>=8.0.0'} + + browser-sync-ui@3.0.4: + resolution: {integrity: sha512-5Po3YARCZ/8yQHFzvrSjn8+hBUF7ZWac39SHsy8Tls+7tE62iq6pYWxpVU6aOOMAGD21RwFQhQeqmJPf70kHEQ==} + + browser-sync@3.0.4: + resolution: {integrity: sha512-mcYOIy4BW6sWSEnTSBjQwWsnbx2btZX78ajTTjdNfyC/EqQVcIe0nQR6894RNAMtvlfAnLaH9L2ka97zpvgenA==} + engines: {node: '>= 8.0.0'} + hasBin: true + + bs-recipes@1.3.4: + resolution: {integrity: sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + connect-history-api-fallback@1.6.0: + resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} + engines: {node: '>=0.8'} + + connect@3.6.6: + resolution: {integrity: sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==} + engines: {node: '>= 0.10.0'} + + cookie@0.7.2: + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} + engines: {node: '>= 0.6'} + + cors@2.8.5: + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + dev-ip@1.0.1: + resolution: {integrity: sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==} + engines: {node: '>= 0.8.0'} + hasBin: true + + easy-extender@2.3.4: + resolution: {integrity: sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==} + engines: {node: '>= 4.0.0'} + + eazy-logger@4.1.0: + resolution: {integrity: sha512-+mn7lRm+Zf1UT/YaH8WXtpU6PIV2iOjzP6jgKoiaq/VNrjYKp+OHZGe2znaLgDeFkw8cL9ffuaUm+nNnzcYyGw==} + engines: {node: '>= 0.8.0'} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + + engine.io-client@6.6.3: + resolution: {integrity: sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==} + + engine.io-parser@5.2.3: + resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} + engines: {node: '>=10.0.0'} + + engine.io@6.6.4: + resolution: {integrity: sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==} + engines: {node: '>=10.2.0'} + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + finalhandler@1.1.0: + resolution: {integrity: sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==} + engines: {node: '>= 0.8'} + + follow-redirects@1.15.11: + resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fs-extra@3.0.1: + resolution: {integrity: sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + http-errors@1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} + + http-errors@2.0.1: + resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==} + engines: {node: '>= 0.8'} + + http-proxy@1.18.1: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + immutable@3.8.2: + resolution: {integrity: sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==} + engines: {node: '>=0.10.0'} + + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-number-like@1.0.8: + resolution: {integrity: sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} + + jsonfile@3.0.1: + resolution: {integrity: sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==} + + limiter@1.1.5: + resolution: {integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==} + + lodash.isfinite@3.3.2: + resolution: {integrity: sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + mitt@1.2.0: + resolution: {integrity: sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + opn@5.3.0: + resolution: {integrity: sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==} + engines: {node: '>=4'} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + portscanner@2.2.0: + resolution: {integrity: sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==} + engines: {node: '>=0.4', npm: '>=1.0.0'} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.3: + resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==} + engines: {node: '>= 0.8'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resp-modifier@6.0.2: + resolution: {integrity: sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==} + engines: {node: '>= 0.8.0'} + + rx@4.1.0: + resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + send@0.19.2: + resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==} + engines: {node: '>= 0.8.0'} + + serve-index@1.9.1: + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} + + serve-static@1.16.3: + resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==} + engines: {node: '>= 0.8.0'} + + server-destroy@1.0.1: + resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} + + setprototypeof@1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + socket.io-adapter@2.5.5: + resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==} + + socket.io-client@4.8.1: + resolution: {integrity: sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==} + engines: {node: '>=10.0.0'} + + socket.io-parser@4.2.4: + resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} + engines: {node: '>=10.0.0'} + + socket.io@4.8.1: + resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==} + engines: {node: '>=10.2.0'} + + statuses@1.3.1: + resolution: {integrity: sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==} + engines: {node: '>= 0.6'} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + statuses@2.0.2: + resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==} + engines: {node: '>= 0.8'} + + stream-throttle@0.1.3: + resolution: {integrity: sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==} + engines: {node: '>= 0.10.0'} + hasBin: true + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + ua-parser-js@1.0.41: + resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==} + hasBin: true + + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xmlhttprequest-ssl@2.1.2: + resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==} + engines: {node: '>=0.4.0'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + +snapshots: + + '@socket.io/component-emitter@3.1.2': {} + + '@types/cors@2.8.19': + dependencies: + '@types/node': 25.0.3 + + '@types/node@25.0.3': + dependencies: + undici-types: 7.16.0 + + accepts@1.3.8: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + + ansi-regex@5.0.1: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + async-each-series@0.1.1: {} + + async@2.6.4: + dependencies: + lodash: 4.17.21 + + balanced-match@1.0.2: {} + + base64id@2.0.0: {} + + batch@0.6.1: {} + + binary-extensions@2.3.0: {} + + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browser-sync-client@3.0.4: + dependencies: + etag: 1.8.1 + fresh: 0.5.2 + mitt: 1.2.0 + + browser-sync-ui@3.0.4: + dependencies: + async-each-series: 0.1.1 + chalk: 4.1.2 + connect-history-api-fallback: 1.6.0 + immutable: 3.8.2 + server-destroy: 1.0.1 + socket.io-client: 4.8.1 + stream-throttle: 0.1.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + browser-sync@3.0.4: + dependencies: + browser-sync-client: 3.0.4 + browser-sync-ui: 3.0.4 + bs-recipes: 1.3.4 + chalk: 4.1.2 + chokidar: 3.6.0 + connect: 3.6.6 + connect-history-api-fallback: 1.6.0 + dev-ip: 1.0.1 + easy-extender: 2.3.4 + eazy-logger: 4.1.0 + etag: 1.8.1 + fresh: 0.5.2 + fs-extra: 3.0.1 + http-proxy: 1.18.1 + immutable: 3.8.2 + micromatch: 4.0.8 + opn: 5.3.0 + portscanner: 2.2.0 + raw-body: 2.5.3 + resp-modifier: 6.0.2 + rx: 4.1.0 + send: 0.19.2 + serve-index: 1.9.1 + serve-static: 1.16.3 + server-destroy: 1.0.1 + socket.io: 4.8.1 + ua-parser-js: 1.0.41 + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + + bs-recipes@1.3.4: {} + + bytes@3.1.2: {} + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + commander@2.20.3: {} + + concat-map@0.0.1: {} + + connect-history-api-fallback@1.6.0: {} + + connect@3.6.6: + dependencies: + debug: 2.6.9 + finalhandler: 1.1.0 + parseurl: 1.3.3 + utils-merge: 1.0.1 + transitivePeerDependencies: + - supports-color + + cookie@0.7.2: {} + + cors@2.8.5: + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + + debug@2.6.9: + dependencies: + ms: 2.0.0 + + debug@4.3.7: + dependencies: + ms: 2.1.3 + + depd@1.1.2: {} + + depd@2.0.0: {} + + destroy@1.2.0: {} + + dev-ip@1.0.1: {} + + easy-extender@2.3.4: + dependencies: + lodash: 4.17.21 + + eazy-logger@4.1.0: + dependencies: + chalk: 4.1.2 + + ee-first@1.1.1: {} + + emoji-regex@8.0.0: {} + + encodeurl@1.0.2: {} + + encodeurl@2.0.0: {} + + engine.io-client@6.6.3: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.7 + engine.io-parser: 5.2.3 + ws: 8.17.1 + xmlhttprequest-ssl: 2.1.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + engine.io-parser@5.2.3: {} + + engine.io@6.6.4: + dependencies: + '@types/cors': 2.8.19 + '@types/node': 25.0.3 + accepts: 1.3.8 + base64id: 2.0.0 + cookie: 0.7.2 + cors: 2.8.5 + debug: 4.3.7 + engine.io-parser: 5.2.3 + ws: 8.17.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + escalade@3.2.0: {} + + escape-html@1.0.3: {} + + etag@1.8.1: {} + + eventemitter3@4.0.7: {} + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + finalhandler@1.1.0: + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.3.0 + parseurl: 1.3.3 + statuses: 1.3.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + + follow-redirects@1.15.11: {} + + fresh@0.5.2: {} + + fs-extra@3.0.1: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 3.0.1 + universalify: 0.1.2 + + fsevents@2.3.3: + optional: true + + get-caller-file@2.0.5: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + graceful-fs@4.2.11: {} + + has-flag@4.0.0: {} + + http-errors@1.6.3: + dependencies: + depd: 1.1.2 + inherits: 2.0.3 + setprototypeof: 1.1.0 + statuses: 1.5.0 + + http-errors@2.0.1: + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.2 + toidentifier: 1.0.1 + + http-proxy@1.18.1: + dependencies: + eventemitter3: 4.0.7 + follow-redirects: 1.15.11 + requires-port: 1.0.0 + transitivePeerDependencies: + - debug + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + immutable@3.8.2: {} + + inherits@2.0.3: {} + + inherits@2.0.4: {} + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + + is-extglob@2.1.1: {} + + is-fullwidth-code-point@3.0.0: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-number-like@1.0.8: + dependencies: + lodash.isfinite: 3.3.2 + + is-number@7.0.0: {} + + is-wsl@1.1.0: {} + + jsonfile@3.0.1: + optionalDependencies: + graceful-fs: 4.2.11 + + limiter@1.1.5: {} + + lodash.isfinite@3.3.2: {} + + lodash@4.17.21: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mime@1.6.0: {} + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + mitt@1.2.0: {} + + ms@2.0.0: {} + + ms@2.1.3: {} + + negotiator@0.6.3: {} + + normalize-path@3.0.0: {} + + object-assign@4.1.1: {} + + on-finished@2.3.0: + dependencies: + ee-first: 1.1.1 + + on-finished@2.4.1: + dependencies: + ee-first: 1.1.1 + + opn@5.3.0: + dependencies: + is-wsl: 1.1.0 + + parseurl@1.3.3: {} + + picomatch@2.3.1: {} + + portscanner@2.2.0: + dependencies: + async: 2.6.4 + is-number-like: 1.0.8 + + range-parser@1.2.1: {} + + raw-body@2.5.3: + dependencies: + bytes: 3.1.2 + http-errors: 2.0.1 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + + require-directory@2.1.1: {} + + requires-port@1.0.0: {} + + resp-modifier@6.0.2: + dependencies: + debug: 2.6.9 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + rx@4.1.0: {} + + safer-buffer@2.1.2: {} + + send@0.19.2: + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 2.0.0 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.1 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.2 + transitivePeerDependencies: + - supports-color + + serve-index@1.9.1: + dependencies: + accepts: 1.3.8 + batch: 0.6.1 + debug: 2.6.9 + escape-html: 1.0.3 + http-errors: 1.6.3 + mime-types: 2.1.35 + parseurl: 1.3.3 + transitivePeerDependencies: + - supports-color + + serve-static@1.16.3: + dependencies: + encodeurl: 2.0.0 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.19.2 + transitivePeerDependencies: + - supports-color + + server-destroy@1.0.1: {} + + setprototypeof@1.1.0: {} + + setprototypeof@1.2.0: {} + + socket.io-adapter@2.5.5: + dependencies: + debug: 4.3.7 + ws: 8.17.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + socket.io-client@4.8.1: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.7 + engine.io-client: 6.6.3 + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + socket.io-parser@4.2.4: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.7 + transitivePeerDependencies: + - supports-color + + socket.io@4.8.1: + dependencies: + accepts: 1.3.8 + base64id: 2.0.0 + cors: 2.8.5 + debug: 4.3.7 + engine.io: 6.6.4 + socket.io-adapter: 2.5.5 + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + statuses@1.3.1: {} + + statuses@1.5.0: {} + + statuses@2.0.2: {} + + stream-throttle@0.1.3: + dependencies: + commander: 2.20.3 + limiter: 1.1.5 + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + toidentifier@1.0.1: {} + + ua-parser-js@1.0.41: {} + + undici-types@7.16.0: {} + + universalify@0.1.2: {} + + unpipe@1.0.0: {} + + utils-merge@1.0.1: {} + + vary@1.1.2: {} + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + ws@8.17.1: {} + + xmlhttprequest-ssl@2.1.2: {} + + y18n@5.0.8: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1