﻿/* =============================================================
   Swapot Theme CSS
   Lota Grotesque @font-face + brand tokens + ported Ciloe CSS
   ============================================================= */

/* ── @font-face: Lota Grotesque ────────────────────────────── */
@font-face {
  font-family: 'Lota Grotesque';
  src: url('../fonts/lota-grotesque/LotaGrotesque-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lota Grotesque';
  src: url('../fonts/lota-grotesque/LotaGrotesque-RegularItalic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Lota Grotesque';
  src: url('../fonts/lota-grotesque/LotaGrotesque-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lota Grotesque';
  src: url('../fonts/lota-grotesque/LotaGrotesque-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lota Grotesque';
  src: url('../fonts/lota-grotesque/LotaGrotesque-BoldItalic.woff2') format('woff2');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Lota Grotesque';
  src: url('../fonts/lota-grotesque/LotaGrotesque-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Swapot brand tokens */
  --swapot-green:       #3a9d57;
  --swapot-green-hover: #2d7a43;
  --swapot-green-light: #E8F7ED;
  --swapot-dark:        #1A1A1A;
  --swapot-font:        'Lota Grotesque', Arial, Helvetica, sans-serif;

  /* Ciloe theme variable names (set by Shopify theme.liquid :root block) */
  --engoc-primary-color: #3a9d57;   /* settings.primary_color_hover */
  --engoc-color-main1:   #1a1a1a;   /* settings.primary_color        */
  --engoc-color-main2:   #69c48c;   /* settings.primary_color2       */
  --engoc-color-main3:   #3a9d57;   /* settings.primary_color3       */
  --engoc-color-main4:   #3a9d57;   /* settings.primary_color4       */
  --engoc-primary-font:  'Lota Grotesque', Arial, Helvetica, sans-serif;

  /* Misc theme tokens */
  --color-border:    #f3f3f3;
  --bg-body:         #f3f5f4;
  --bg-push-menu:    #ffffff;
  --bg-icon-product: #ffffff;
  --color-icon:      #69c48c;
  --bg-icon-hover:   #3a9d57;
  --color-icon-hover:#ffffff;
  --color-sale-bg:   #ff682f;
  --color-new-bg:    #3e976c;
}

/* ── Global font override (replaces Poppins/Google Fonts) ──── */
body,
h1, h2, h3, h4, h5, h6,
.btn, button, [type="button"], [type="submit"],
input, select, textarea {
  font-family: var(--swapot-font);
}

/* ── Engo-customize active rules (header-v1 + push menu) ───── */
.header-v1          { background: transparent; }
.pushmenu           { background: var(--bg-push-menu); }

a                   { color: #1a1a1a; }
a:hover,
a:focus             { color: #3a9d57; }
a.default           { color: #3a9d57; }
a.default:hover     { color: #3a9d57; }

#header #btn-search          { color: #1a1a1a; }
#header #btn-search:hover    { color: #3a9d57; }
#header #btn-login           { color: #1a1a1a; }
#header #btn-login:hover     { color: #3a9d57; }
#header #btn-cart            { color: #1a1a1a; }
#header #btn-cart:hover      { color: #3a9d57; }

@media (max-width: 1024px) {
  #header #btn-cart { color: var(--engoc-color-main1); }
}

.title-product a       { color: #3a9d57; }
.title-product a:hover { color: #1a1a1a; }

.icon-hover-v1                    { background: #fff; color: #69c48c; }
.icon-hover-v1:hover              { background: #3a9d57; color: #fff; }
.icon-hover-v1 .icon-hover-click  { background: #fff; color: #69c48c; }
.icon-hover-v1 .icon-hover-click:hover { background: #3a9d57; color: #fff; }

/* ── Swapot component styles (Step 2: Header & Footer) ─────── */

/* Site header */
.header-v1.header-fixed {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: box-shadow .3s;
}
.header-v1.header-sticky {
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
/* Override legacy Ciloe padding that inflates the header height */
.header-v1 { padding: 0 !important; }
/* Ciloe sets padding-top:36px and padding-bottom:42px on .header-v1 .header-center at ≥1025px;
   both must be zeroed so the logo flex-centres correctly within the fixed-height row. */
.header-v1 .header-center { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Header inner row — fixed height, fully centred columns */
.header-inner {
  height: 92px;
  display: flex !important;
  align-items: center !important;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Logo — maintain aspect ratio, remove descender gap / underline artifacts */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wrap a,
.logo-wrap .custom-logo-link,
.logo-wrap .logo-text {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border: none !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.logo-wrap img,
.logo-wrap .custom-logo {
  display: block;
  height: auto !important;
  width: auto !important;
  max-height: 54px;
  max-width: 180px;
  object-fit: contain;
}

/* Override legacy nav link padding for clean vertical centering */
.header-v1 .navbar-nav.menu-main > li > a,
.navbar-nav.menu-main > li > a {
  padding: 10px 28px 10px 0 !important;
  color: #1a1a1a;
  font-size: 14px;
  
}

/* Header icons */
.header-icons { margin: 0; display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.header-icon-item { display: inline-block; }
.header-icon-item a { position: relative; display: inline-flex; align-items: center; line-height: 1; }
.header-cart-count {
  position: absolute; top: -8px; right: -8px;
  min-width: 18px; height: 18px; border-radius: 50%;
  background: var(--swapot-green); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 18px; text-align: center;
  display: inline-block; padding: 0 3px;
}

/* Hamburger — mobile/tablet nav trigger, hidden once desktop nav takes over.
   !important on both rules below: this stylesheet has repeatedly proven that
   reused/generic class names get silently re-shown by legacy rules loaded
   later in the file (see the off-canvas menu fix above) — these two classes
   are the single show/hide contract for the 1200px breakpoint and must win
   outright rather than depend on source-order luck. */
.icon-pushmenu { display: inline-block; cursor: pointer; padding: 6px 0; }
.icon-pushmenu svg rect { transition: fill .2s; }
.icon-pushmenu:hover svg rect { fill: var(--swapot-green); }
.header-icon-item--hamburger { display: inline-block !important; }
@media (min-width: 1200px) { .header-icon-item--hamburger { display: none !important; } }

/* Desktop nav hidden on mobile */
.ciloe-horizon-menu { display: none !important; }
@media (min-width: 1200px) { .ciloe-horizon-menu { display: block !important; } }

/* ── Mobile header layout (<1200px, where the hamburger takes over) ──────
   Below this width the desktop nav (.ciloe-horizon-menu, above) is hidden,
   so .header-left renders no visible content — but as a flex item it still
   reserves its own 15px+15px padding as dead space, which pushes the logo
   off the true left edge and squeezes .header-right down to ~100px of
   real room for 3 icons. Reworked so the logo anchors left, the icon
   cluster gets the freed-up space plus real touch targets, and the logo
   itself shrinks slightly to keep everything comfortable down to ~360px
   viewports (common Android width) — matching the Shopify reference. */
@media (max-width: 1199px) {
  .header-left { display: none; }
  .header-inner { justify-content: space-between; }

  .header-center {
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 0;
  }
  .logo-wrap img,
  .logo-wrap .custom-logo {
    max-width: 140px;
  }

  .header-right { padding-left: 8px; }
  .header-icons { gap: 10px; }
  .header-icon-item a {
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
  }

  /* The 40x40 touch target above adds ~8px of invisible padding around the
     cart icon graphic itself, so the badge's desktop offset (top:-8px;
     right:-8px, sized for a tight icon-only anchor) ends up floating well
     outside the icon. Re-anchored here to sit on the icon's actual
     top-right corner instead of the enlarged tap target's corner. */
  .header-cart-count {
    top: 0;
    right: 0;
  }
}

/* ── Off-canvas mobile navigation ────────────────────────────────
   Scoped to #pushmenu (ID) + swapot-offcanvas-nav (unique class),
   NOT the legacy Ciloe .pushmenu/.menu-home5/.nav-home5 names. Those
   legacy names carry dozens of unrelated rules elsewhere in this file
   (a permanent `.menu-home5 { transform: translateX(-100%) }` that only
   lifts on a `.pushmenu-open` class our JS never adds to this element,
   plus a `.pushmenu, body { z-index: 5 }` rule that sinks the panel
   below the overlay). Reusing those class names silently breaks this
   panel — same failure mode as the Ciloe CSS Trap documented in
   CLAUDE.md §5. Do not rename this back to .pushmenu/.menu-home5/.nav-home5. */
.menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,.45);
}
body.pushmenu-open { overflow: hidden; }

#pushmenu {
  position: fixed !important;
  top: 0 !important;
  left: -320px !important;
  width: 300px !important;
  max-width: 85vw;
  height: 100% !important;
  z-index: 1000 !important;
  overflow-y: auto !important;
  transform: none !important;
  transition: left .3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  background: var(--bg-push-menu, #fff);
}
#pushmenu.active { left: 0 !important; }

.pushmenu-account { padding: 20px 16px; }
.pushmenu-avatar img { border-radius: 50%; }

/* Mobile menu list */
.swapot-offcanvas-nav { list-style: none; padding: 0 16px; margin: 0; }

/* UI overhaul (2026-07-24): rebuilt on flexbox instead of float.
 *
 * Root cause of both the "wrong row" bug (fixed earlier, via clearfix) and
 * the still-broken vertical alignment reported after that fix: a float can
 * only ever sit BELOW a preceding block-level sibling on its own line, never
 * beside it — so no amount of clearfix/spacing tuning could vertically
 * center the arrow next to the link text; clearfix only stopped it from
 * spilling into the NEXT <li>, it didn't fix where within its own <li> it
 * rendered. On top of that, this element also carries the legacy Ciloe
 * `.icon-sub-menu` class (a 50×48px box with its own `border-left` divider
 * and a FontAwesome `:before` glyph, from an unrelated part of the original
 * theme — see the plain `.icon-sub-menu` rule elsewhere in this file) which
 * was fighting our own `.js-open-menu` sizing on the very same element —
 * that's what produced the oversized box and stray vertical line in the
 * screenshot, not just a spacing issue.
 *
 * Fix: `.item-menu` is now the flex row (link + icon on one line,
 * vertically centered via `align-items:center` — floats are irrelevant to
 * flex items per spec, so the legacy rule's `float` no longer matters
 * either way). The accordion sub-menu still needs to drop to its own
 * full-width line below that row, not sit inline beside it — `flex-wrap:
 * wrap` + `flex: 1 0 100%` on `.sub-menu` forces exactly that, the same
 * "force a child onto its own full-width line inside a flex-wrap row"
 * technique already used for the PDP gallery's CTA button. Divider lines
 * moved from the `<a>` (which no longer spans the full row on its own once
 * it's a flex child) to `.item-menu` itself, so every row's divider is a
 * consistent full width whether or not it has an arrow. Legacy
 * `.icon-sub-menu` properties are explicitly reset here with a
 * two-class selector so this override wins on specificity, not by luck of
 * source order in a 29,000+ line stylesheet. */
.swapot-offcanvas-nav .item-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}
.swapot-offcanvas-nav .item-menu:last-child {
  border-bottom: none;
}
.swapot-offcanvas-nav .item-menu > a {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  padding: 15px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--swapot-dark);
}
.swapot-offcanvas-nav .item-menu > a:hover { color: var(--swapot-green); }

.swapot-offcanvas-nav .item-menu .icon-sub-menu.js-open-menu {
  /* Touch-target sized (44x44 — the standard mobile minimum), overriding
     the legacy .icon-sub-menu box (50x48, border-left divider) entirely. */
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  line-height: normal;
  border-left: none;
  margin: 0 0 0 4px;
  padding: 0;
  color: var(--swapot-dark);
  cursor: pointer;
  font-size: 13px;
  transition: transform .2s ease;
}
.swapot-offcanvas-nav .item-menu .icon-sub-menu.js-open-menu:before {
  color: inherit;
  font-size: 13px;
}
.js-open-menu.open { transform: rotate(180deg); }

.swapot-offcanvas-nav .sub-menu {
  flex: 1 0 100%; /* forces the accordion panel onto its own full-width line */
  list-style: none;
  padding: 0 0 6px 14px;
  margin: 0;
}
.swapot-offcanvas-nav .sub-menu li a {
  display: block; padding: 10px 0; font-size: 13.5px; color: #666; border-bottom: 1px solid #f5f5f5;
}
.swapot-offcanvas-nav .sub-menu li:last-child a { border-bottom: none; }

/* ── Push cart ───────────────────────────────────────────────── */
.push-cart {
  position: fixed; top: 0; right: -380px; width: 360px; height: 100%;
  z-index: 1001; background: #fff; display: flex; flex-direction: column;
  transition: right .3s ease; box-shadow: -4px 0 20px rgba(0,0,0,.1);
}
.push-cart.active { right: 0; }
.push-cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #eee;
}
.push-cart-header h5 { margin: 0; font-size: 16px; font-weight: 700; }
.close-push-cart { font-size: 18px; color: var(--swapot-dark); cursor: pointer; }
.push-cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.push-cart-item {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f3f3f3; position: relative;
}
.cart-item-image img { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--swapot-dark); display: block; margin-bottom: 4px; line-height: 1.3; }
.cart-item-addon { font-size: 11px; color: #888; margin-bottom: 3px; }
.cart-item-qty-price { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-item-qty-wrap { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 24px; height: 24px; border: 1px solid #ddd; border-radius: 4px;
  background: #f8f8f8; font-size: 14px; line-height: 1; cursor: pointer; padding: 0;
}
.qty-btn:hover { background: var(--swapot-green); color: #fff; border-color: var(--swapot-green); }
.cart-item-qty { font-size: 13px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--swapot-green); }
.cart-item-remove {
  position: absolute; top: 14px; right: 0; font-size: 12px; color: #bbb;
}
.cart-item-remove:hover { color: #e00; }
.push-cart-empty { text-align: center; color: #888; padding: 40px 0; }
.push-cart-footer { padding: 16px 24px; border-top: 1px solid #eee; }
.push-cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 700; font-size: 15px; }
.push-cart-total-price { color: var(--swapot-green); }

/* Push cart CTA buttons (from ciloe-push-cart.liquid) */
.sp-cart-btn {
  height: 50px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  /* Most usages are full-width (.btn-block, or a narrow flex/grid column),
     where this is invisible either way — but any usage rendered inline-flex
     at content width (e.g. the Thank You / 404 page CTAs) has nothing else
     reserving horizontal space, so the text sits flush against the border
     without it. */
  padding: 0 28px;
  font-family: var(--swapot-font); font-weight: 700; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s;
  margin-bottom: 10px; text-decoration: none;
}
.sp-cart-btn--primary {
  background: var(--swapot-green); color: #fff; border: 2px solid var(--swapot-green);
}
.sp-cart-btn--primary:hover {
  background: var(--swapot-green-hover); border-color: var(--swapot-green-hover); color: #fff;
}
.sp-cart-btn--ghost {
  background: transparent; color: var(--swapot-dark); border: 2px solid var(--swapot-dark);
}
.sp-cart-btn--ghost:hover {
  background: var(--swapot-green); border-color: var(--swapot-green); color: #fff;
}

/* ── Full-page overlay (push cart backdrop) ─────────────────── */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.45);
}
.overlay.active { display: block; }

/* ── Search overlay (isolated from legacy .form-search — do not reuse that class) ── */
.swapot-search {
  display: none; position: fixed; inset: 0; z-index: 1200;
}
.swapot-search.active { display: block; }
.swapot-search__backdrop {
  position: absolute; inset: 0; background: rgba(26,26,26,.6); cursor: pointer;
}
.swapot-search__panel {
  position: relative; max-width: 700px; margin: 12vh auto 0;
  background: #fff; border-radius: 12px; padding: 44px 40px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.swapot-search__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  font-size: 16px; color: #999; transition: color .2s;
}
.swapot-search__close:hover { color: #1a1a1a; }
.swapot-search__input-wrap { position: relative; display: flex; }
.swapot-search__field {
  flex: 1; height: 54px; border: none; border-bottom: 2px solid var(--swapot-dark, #1a1a1a);
  background: transparent; font-size: 20px; font-family: var(--swapot-font);
  padding: 0 40px 0 0; outline: none;
}
.swapot-search__submit {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 18px; cursor: pointer; color: var(--swapot-dark, #1a1a1a);
}
.swapot-search__results { text-align: left; margin-top: 16px; max-height: 360px; overflow-y: auto; }
.swapot-search__result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 4px; text-decoration: none; color: inherit;
  border-bottom: 1px solid #f0f0f0;
}
.swapot-search__result-item:last-child { border-bottom: none; }
.swapot-search__result-item:hover { background: #f7faf8; text-decoration: none; }
.swapot-search__result-img {
  width: 52px; height: 52px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #f5f7f5;
}
.swapot-search__result-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.swapot-search__result-info { flex: 1; min-width: 0; }
.swapot-search__result-title {
  display: block; font-size: 14px; font-weight: 600; color: #1a1a1a; margin: 0 0 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.swapot-search__result-price { display: block; font-size: 13px; color: var(--swapot-green, #3a9d57); font-weight: 600; }
.swapot-search__results-footer { text-align: center; padding: 14px 4px 4px; border-top: 1px solid #f0f0f0; margin-top: 6px; }
.swapot-search__results-footer a { font-size: 13px; font-weight: 600; color: var(--swapot-green, #3a9d57); text-decoration: none; }
.swapot-search__results-empty,
.swapot-search__results-loading { text-align: center; padding: 24px 4px; font-size: 13px; color: #888; }
body.search-open { overflow: hidden; }
@media (max-width: 600px) {
  .swapot-search__panel { margin: 0; max-width: 100%; min-height: 100%; border-radius: 0; padding: 70px 20px 20px; }
}

/* ── Login modal ─────────────────────────────────────────────── */
.login_form_pc {
  position: fixed; inset: 0; z-index: 1200; display: none;
}
.login-modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
}
.login-modal-box {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; border-radius: 12px; padding: 40px; width: 100%; max-width: 420px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.login-modal-close {
  position: absolute; top: 16px; right: 20px; font-size: 18px;
  color: var(--swapot-dark); cursor: pointer;
}
.login-modal-title { margin-bottom: 24px; font-size: 22px; font-weight: 700; }
.login-modal-switch { margin-top: 16px; font-size: 13px; color: #666; }
.login-modal-switch a { color: var(--swapot-green); font-weight: 600; }

/* ── Quick View modal ────────────────────────────────────────── */
.swapot-qv { display: none; position: fixed; inset: 0; z-index: 1200; }
.swapot-qv.active { display: block; }
.swapot-qv__backdrop { position: absolute; inset: 0; background: rgba(26,26,26,.6); cursor: pointer; }
.swapot-qv__box {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; border-radius: 12px; width: 100%; max-width: 880px; max-height: 86vh;
  box-shadow: 0 20px 60px rgba(0,0,0,.25); overflow-y: auto;
}
.swapot-qv__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: none; border-radius: 50%; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  font-size: 16px; color: #999; transition: color .2s;
}
.swapot-qv__close:hover { color: var(--swapot-dark); }

.swapot-qv__loading { display: flex; align-items: center; justify-content: center; min-height: 360px; }
.swapot-qv__spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid #e5e5e5; border-top-color: var(--swapot-green);
  animation: swapot-qv-spin .8s linear infinite;
}
@keyframes swapot-qv-spin { to { transform: rotate(360deg); } }

.swapot-qv__error { padding: 60px 30px; text-align: center; color: #888; }

/* Two-pane layout approximating the Shopify quick-view reference (image ~45% / content ~55%) */
.swapot-qv__content { display: flex; flex-wrap: wrap; }
.swapot-qv__gallery { flex: 0 0 45%; max-width: 45%; padding: 24px; }
.swapot-qv__summary { flex: 0 0 55%; max-width: 55%; padding: 24px 32px 24px 0; }

/* Suppress PDP-only chrome not appropriate for the compact modal (defensive —
   the AJAX handler already strips these hooks server-side). */
.swapot-qv__summary .product-summary-breadcrumb,
.swapot-qv__summary .product_meta { display: none !important; }

body.qv-open { overflow: hidden; }

@media (max-width: 767px) {
  .swapot-qv__box { max-width: 94%; max-height: 92vh; }
  .swapot-qv__content { flex-direction: column; }
  .swapot-qv__gallery,
  .swapot-qv__summary { flex: 0 0 100%; max-width: 100%; padding: 20px; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer-v1 { background: #fff; border-top: 1px solid #eee; }
.footer-col { padding-top: 40px; padding-bottom: 40px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { max-height: 44px; }
.footer-description { color: #666; font-size: 14px; line-height: 1.7; }
.footer-social { margin-top: 16px; display: flex; gap: 14px; }
.footer-social-icon { font-size: 18px; color: var(--swapot-dark); transition: color .2s; }
.footer-social-icon:hover { color: var(--swapot-green); }
.footer-heading { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.footer-newsletter-form .form-control {
  border-radius: 8px 0 0 8px; height: 44px; border-right: none;
}
.footer-payment-img img { max-width: 240px; }
.footer-bottom { border-top: 1px solid #eee; padding: 20px 0; }
.footer-copy { font-size: 13px; color: #888; margin: 0; }
.footer-copy a { color: var(--swapot-dark); font-weight: 600; }

/* ── Scroll-top button ───────────────────────────────────────── */
/* bottom raised from 30px to make room for .swapot-whatsapp-btn below,
   which takes the "primary" bottom:24px corner most visitors expect a
   chat/contact button to be in. Raised regardless of which side the
   WhatsApp button is configured to (Customizer: WhatsApp Contact →
   Button Position) — harmless even when it's on the opposite side, and
   avoids the two ever needing to react to each other's position. */
.scroll-top-v1 {
  position: fixed; bottom: 96px; right: 30px; z-index: 999;
}
.scroll-top-v1 .backtotop {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--swapot-green);
  color: #fff; border-radius: 50%; font-size: 18px;
  box-shadow: 0 2px 10px rgba(58,157,87,.35);
  transition: background .2s, transform .2s;
}
.scroll-top-v1 .backtotop:hover {
  background: var(--swapot-green-hover); transform: translateY(-3px);
}

/* ── Floating WhatsApp button ─────────────────────────────────
   Real #25D366 WhatsApp brand green is used here specifically (not
   --swapot-green) — this is a recognized third-party brand mark, not a
   Swapot UI element, and visitors' instant recognition of it depends on
   the color matching WhatsApp's own. */
.swapot-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.swapot-whatsapp-btn:hover,
.swapot-whatsapp-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
  color: #fff;
}
.swapot-whatsapp-btn:focus-visible {
  outline: 2px solid var(--swapot-dark);
  outline-offset: 3px;
}
.swapot-whatsapp-btn svg {
  width: 30px;
  height: 30px;
}
.swapot-whatsapp-btn--right { right: 24px; }
.swapot-whatsapp-btn--left  { left: 24px; }

@media (max-width: 767px) {
  /* Clear the sticky mobile Add-to-Cart/Reserve bar on the PDP
     (.pdp-mobile-sticky, ~65px tall, same 767px breakpoint it uses in
     swapot-woocommerce.css) rather than floating on top of it. */
  .swapot-whatsapp-btn { bottom: 84px; width: 50px; height: 50px; }
  .swapot-whatsapp-btn svg { width: 26px; height: 26px; }
}

/* ── WordPress admin-bar offset for sticky header ─────────────── */
body { padding-top: 0; }
.admin-bar .header-v1.header-fixed { top: 32px; }
@media (max-width: 782px) { .admin-bar .header-v1.header-fixed { top: 46px; } }

/* ── Swapot section styles (Step 3: Home page) ──────────────── */

/* Hero slider */
.slider-home-v4 { overflow: hidden; }
.content-slider .relative { position: relative; }
.img-bg-slider { width: 100%; height: 600px; object-fit: cover; object-position: center; display: block; }
.hero-slide-placeholder { width: 100%; height: 600px; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.text-slider {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 2; padding: 0 40px; max-width: 600px;
}
.text-slider.text-left  { left: 8%; }
.text-slider.text-right { right: 8%; left: auto; text-align: right; }
.text-slider.text-center { left: 50%; transform: translate(-50%, -50%); text-align: center; }
.text-animate-3 { color: #fff; font-size: 48px; font-weight: 700; line-height: 1.15; margin-bottom: 30px; letter-spacing: -0.02em; }
.btn-slider .btn-ciloe {
    background: var(--swapot-green); color: #fff;
    padding: 14px 36px; border-radius: 6px; font-size: 13px;
    font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    display: inline-block; transition: background .25s;
}
.btn-slider .btn-ciloe:hover { background: var(--swapot-green-hover); color: #fff; }
@media (max-width: 1024px) {
    .img-bg-slider, .hero-slide-placeholder { height: 420px; }
    .text-animate-3 { font-size: 34px; }
}
@media (max-width: 767px) {
    .img-bg-slider, .hero-slide-placeholder { height: 280px; }
    .text-animate-3 { font-size: 22px; }
    .text-slider { padding: 0 20px; max-width: 90%; }
}

/* Trust bar */
.trust-bar { background: var(--swapot-dark); padding: 18px 0; width: 100%; }
.trust-bar__inner {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 60px; padding: 0 20px;
}
.trust-bar__item { display: inline-flex; align-items: center; gap: 10px; }
.trust-bar__icon--font i { font-size: 26px; color: #69c48c; display: block; line-height: 1; }
.trust-bar__label { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
@media (max-width: 767px) {
    .trust-bar__inner { justify-content: flex-start; gap: 16px; padding: 0 16px; }
    .trust-bar__item { width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); }
    .trust-bar__label { font-size: 11px; white-space: normal; }
}

/* Category grid */
.collection_categories { width: 100%; }
.collection_categories .row.flex { display: flex; margin-left: -5px; margin-right: -5px; }
.collection_categories .row.flex .row { margin-left: -5px; margin-right: -5px; }
.collection_categories .banner-collection,
.collection_categories .content_collection { padding: 5px; }
.collection_categories .content_collection .collection { padding: 0 5px 5px 5px; }
.collection_categories .overlay_banner { display: block; overflow: hidden; position: relative; }
.collection_categories .overlay_banner:before {
    content: ''; display: inline-block; position: absolute; inset: 0;
    background: rgba(0,0,0,.7); opacity: 0; transition: opacity .3s ease; z-index: 1;
}
.collection_categories .banner-collection:hover .overlay_banner:before,
.collection_categories .content_collection .collection:hover .overlay_banner:before { opacity: 1; }
.hover-zoom-out { transition: transform .5s ease; width: 100%; }
.over-hidden:hover .hover-zoom-out { transform: scale(1.05); }
.cat-grid-placeholder { width: 100%; height: 220px; background: #e8e8e8; }
.cat-grid-placeholder--tall { height: 450px; }
.text_collection { z-index: 2; pointer-events: none; }
.collection_categories .content_collection .collection .text_collection { position: absolute; bottom: 50px; left: 9%; right: 10%; color: #fff; pointer-events: auto; }
.collection_categories .banner-collection .text_collection { position: absolute; top: 11%; left: 11%; right: 10%; color: #fff; pointer-events: auto; }
.text_collection h4 { font-size: 24px; margin-bottom: 20px; font-weight: 400; color: #fff; line-height: 1.4; }
.ciloe-btn-default {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: #fff;
    letter-spacing: .04em; text-decoration: none;
}
.ciloe-btn-default:before {
    content: '\f054'; font-family: FontAwesome; font-size: 9px;
    width: 30px; height: 30px; background: var(--swapot-green); line-height: 30px;
    text-align: center; border-radius: 50%; transition: background .3s; display: inline-block;
}
.ciloe-btn-default:hover:before { background: var(--swapot-green-hover); }
@media (max-width: 991px) {
    .collection_categories .row.flex { flex-direction: column-reverse; }
}

/* Category Showcase — homepage "Shop by Category" bento section
   (template-parts/sections/category-showcase.php). Tile count is
   admin-driven (1–5 slugs via Customizer); --compact is a plain equal
   row used when there are fewer than 3 tiles, since a single spotlight
   tile only reads as intentional against several supporting tiles. */
.category-showcase { background: #f0f5f1; padding-bottom: 60px; }
.category-showcase__head { max-width: 520px; margin: 0 auto 44px; }
.category-showcase__eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--swapot-green); margin: 0 0 14px;
}
.category-showcase__heading { font-size: 32px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.01em; }
.category-showcase__subtitle { color: #666; font-size: 15px; margin: 0; line-height: 1.55; }

.category-showcase__grid {
    max-width: 1040px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 16px;
}
.category-showcase__grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.category-showcase__tile {
    position: relative; overflow: hidden; border-radius: 4px;
    display: flex; align-items: flex-end;
    background: #ececec;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.category-showcase__tile:hover { transform: translateY(-3px); }
.category-showcase__tile--large { grid-column: span 2; grid-row: span 2; }
.category-showcase__img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform .5s ease;
}
.category-showcase__tile:hover .category-showcase__img { transform: scale(1.04); }
/* No category photo uploaded yet — quiet branded surface instead of a
   missing image, same treatment as .collection-card__img-fallback on
   the Categories page. */
.category-showcase__img-fallback {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #eef4ef 0%, #dfe9e2 100%);
}
.category-showcase__img-fallback::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 140%; height: 140%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58,157,87,.14) 0%, rgba(58,157,87,0) 60%);
}
.category-showcase__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,0) 65%);
}
.category-showcase__cap {
    position: relative; z-index: 1; width: 100%;
    padding: 16px 18px;
}
.category-showcase__tile--large .category-showcase__cap { padding: 24px; }
.category-showcase__title {
    display: flex; align-items: center; gap: 6px;
    color: #fff; font-weight: 700; font-size: 14px; margin: 0 0 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.category-showcase__tile--large .category-showcase__title { font-size: 19px; }
.category-showcase__count { display: block; color: rgba(255,255,255,.82); font-size: 11.5px; font-weight: 500; }
.category-showcase__arrow {
    width: 12px; height: 12px; flex-shrink: 0;
    opacity: 0; transform: translateX(-3px);
    transition: opacity .25s ease, transform .25s ease;
}
.category-showcase__tile--large .category-showcase__arrow { width: 14px; height: 14px; }
.category-showcase__tile:hover .category-showcase__arrow { opacity: .85; transform: none; }

/* .category-showcase__viewall itself needs no styling — it's now a
   .btn-section button (same as the New Products section's "All
   Products" button) inside a .text-center.margin_top_30 wrapper. */

@media (max-width: 991px) {
    .category-showcase__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .category-showcase__tile--large { grid-column: span 2; grid-row: span 1; }
}

/* Featured products */
.section-featured-products { background: var(--bg-body, #f3f5f4); padding-bottom: 60px; }
.ciloe-title-section h2 { font-size: 28px; font-weight: 700; }
.btn-section {
    display: inline-block; padding: 12px 36px; background: transparent;
    border: 2px solid var(--swapot-dark); color: var(--swapot-dark);
    font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    border-radius: 6px; transition: background .25s, color .25s; text-decoration: none;
}
.btn-section:hover { background: var(--swapot-green); border-color: var(--swapot-green); color: #fff; }

/* Product card */
.product { position: relative; }
.img-product { overflow: hidden; border-radius: 6px; position: relative; }
.img-product img { transition: opacity .4s ease; }
.img-product-hover { opacity: 0; transition: opacity .4s ease; top: 0; left: 0; }
.engoj_grid_parent:hover .img-product-hover { opacity: 1; }
.label-sale, .label-new {
    position: absolute; top: 12px;
    font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; z-index: 2;
    margin: 0; line-height: 1.4;
}
.label-sale { background: var(--color-sale-bg, #ff682f); color: #fff; right: 12px; left: auto; }
.label-new  { background: var(--color-new-bg, #3e976c); color: #fff; left: 12px; }
.product-icon {
    position: absolute; bottom: 12px; left: 0; right: 0;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    opacity: 0; transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease; z-index: 3;
}
.engoj_grid_parent:hover .product-icon { opacity: 1; transform: translateY(0); }
/* Neutralise Ciloe per-icon opacity/size/transform — container animation handles all of this */
.engoj_grid_parent .product-icon .icon-addcart,
.engoj_grid_parent .product-icon .icon-quickview,
.engoj_grid_parent .product-icon .icon-heart {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  margin: 0 !important;
}
.engoj_grid_parent .img-product:hover .product-icon .icon-addcart,
.engoj_grid_parent .img-product:hover .product-icon .icon-quickview,
.engoj_grid_parent .img-product:hover .product-icon .icon-heart {
  opacity: 1 !important;
  transform: none !important;
}
.btn-default {
    width: 40px; height: 40px; background: #fff; border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer; color: var(--swapot-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: background .2s, color .2s;
}
.btn-default:hover { background: var(--swapot-green); color: #fff; }
.icon-addcart, .icon-quickview { display: inline-block; text-decoration: none; }
.title-product a { color: var(--swapot-dark); font-size: 14px; font-weight: 600; }
.title-product a:hover { color: var(--swapot-green); }
.price-wrap .price { color: var(--swapot-green); font-weight: 700; font-size: 15px; }
.price-wrap del .amount { color: #aaa; font-size: 13px; }
.sold-out-overlay {
    position: absolute; inset: 0; background: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 2; border-radius: 6px;
}
.sold-out-overlay span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #555; }

/* Sell Without the Stress banner */
.bss-banner { overflow: hidden; }
.bss-banner__img { width: 100%; height: 500px; object-fit: cover; object-position: center; display: block; }
.bss-banner__placeholder { width: 100%; height: 500px; background: #2d2d2d; }
.bss-banner__overlay { inset: 0; background: rgba(0,0,0,.3); z-index: 1; }
.bss-banner__content { inset: 0; z-index: 2; display: flex; padding: 60px; }
.bss-valign--middle { align-items: center; }
.bss-banner__inner { max-width: 480px; }
.bss-banner__inner.text-left { margin-right: auto; }
.bss-banner__heading { color: #fff; font-size: 44px; font-weight: 600; line-height: 1.15; margin: 0 0 16px; letter-spacing: -.01em; }
.bss-banner__subheading { color: #fff; font-size: 15px; line-height: 1.6; margin: 0 0 28px; }
.bss-banner__subheading p { margin: 0; }
.ciloe-btn {
    background: var(--swapot-green); color: #fff;
    padding: 13px 32px; border-radius: 6px; font-size: 12px;
    font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; display: inline-block; transition: background .25s;
}
.ciloe-btn:hover { background: var(--swapot-green-hover); color: #fff; }
@media (max-width: 1024px) {
    .bss-banner__img, .bss-banner__placeholder { height: 380px; }
    .bss-banner__heading { font-size: 30px; }
}
@media (max-width: 767px) {
    .bss-banner__img, .bss-banner__placeholder { height: 280px; }
    .bss-banner__content { padding: 24px 20px; }
    .bss-banner__inner { max-width: 100%; }
    .bss-banner__heading { font-size: 24px; }
}

/* Split Sell Section — background spans full width; the grid itself sits
   inside .container (see split-sell.php) like every other section, instead
   of running edge-to-edge. Column spacing comes from `gap` now rather than
   from asymmetric left/right padding baked into .sss-left/.sss-right. */
.sss-wrap { background: var(--swapot-dark); width: 100%; padding: 60px 0; }
.sss-grid { display: flex; align-items: center; gap: 48px; min-height: 500px; }
.sss-left { flex: 0 0 45%; max-width: 45%; }
.sss-image-wrap { display: inline-block; width: 100%; position: relative; }
.sss-image { display: block; width: 100%; border-radius: 8px; object-fit: cover; }
.sss-image-placeholder { width: 100%; padding-bottom: 110%; background: #333; border-radius: 8px; }
.sss-card { top: -20px; right: -28px; background: #fff; border-radius: 10px; padding: 14px 18px 12px; min-width: 200px; box-shadow: 0 8px 32px rgba(0,0,0,.18); z-index: 2; }
.sss-card__badge { color: #69c48c; font-size: 11px; font-weight: 600; letter-spacing: .04em; margin: 0 0 8px; }
.sss-card__row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sss-card__icon { width: 32px; height: 32px; border: 1px solid #e5e5e5; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #555; font-size: 15px; flex-shrink: 0; }
.sss-card__title { display: block; font-size: 13px; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.sss-card__subtitle { display: block; font-size: 11px; color: #888; margin-top: 2px; }
.sss-card__bar { height: 4px; background: #e8e8e8; border-radius: 4px; overflow: hidden; }
.sss-card__bar-fill { height: 100%; background: #69c48c; border-radius: 4px; }
.sss-right { flex: 1; min-width: 0; }
.sss-heading { color: #fff; font-size: 52px; font-weight: 700; line-height: 1.15; margin: 0 0 18px; letter-spacing: -.01em; }
.sss-heading__highlight { color: #69c48c; }
.sss-desc { color: #ccc; font-size: 15px; line-height: 1.65; margin: 0 0 28px; max-width: 480px; }
.sss-steps { list-style: none; margin: 0 0 32px; padding: 0; }
.sss-step { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sss-step__num { width: 30px; height: 30px; border: 2px solid #69c48c; border-radius: 50%; color: #69c48c; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sss-step__text { color: #ccc; font-size: 15px; line-height: 1.4; }
.sss-btn { background: var(--swapot-green); color: #fff; padding: 14px 36px; border-radius: 6px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background .25s; }
.sss-btn:hover { background: var(--swapot-green-hover); color: #fff; }
@media (max-width: 1024px) {
    .sss-wrap { padding: 40px 0; }
    .sss-card { right: -10px; }
    .sss-heading { font-size: 38px; }
}
@media (max-width: 767px) {
    .sss-grid { flex-direction: column; gap: 24px; }
    .sss-left { flex: 0 0 100%; max-width: 100%; }
    .sss-card { position: static; margin-top: 16px; }
    .sss-heading { font-size: 30px; }
    .sss-desc { max-width: 100%; }
}

/* Categories Coming Soon */
.cs-wrap { background: #fff; padding: 68px 0; width: 100%; }
.container-240 { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.cs-header { margin-bottom: 40px; }
.cs-heading { color: var(--swapot-dark); font-size: 42px; font-weight: 700; line-height: 1.2; margin: 0 0 12px; letter-spacing: -.01em; }
.cs-heading__highlight { color: #69c48c; }
.cs-subtitle { color: #888; font-size: 14px; line-height: 1.6; margin: 0; }
.cs-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }
.cs-card {
    flex: 1 1 calc(20% - 16px); min-width: 140px;
    background: #f7f6f2; border: 1.5px dashed #d8d5cc;
    border-radius: 12px; padding: 32px 16px;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
    transition: border-color .2s;
}
.cs-card:hover { border-color: var(--swapot-green); }
.cs-card__icon { display: flex; align-items: center; justify-content: center; height: 52px; }
.cs-card__icon--font i { font-size: 44px; color: #888; line-height: 1; }
.cs-card__name { color: var(--swapot-dark); font-size: 15px; font-weight: 600; margin: 0; line-height: 1.3; }
.cs-card__badge { display: inline-block; background: #ebebeb; color: #555; font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 20px; letter-spacing: .03em; }
.cs-notify { max-width: 520px; margin: 0 auto; }
.cs-notify__label { color: #888; font-size: 13px; margin: 0 0 16px; }
.cs-notify__row { display: flex; border-radius: 40px; overflow: hidden; border: 1px solid #ddd; }
.cs-notify__input { flex: 1; border: 0; padding: 14px 18px; font-size: 14px; color: var(--swapot-dark); background: #fff; outline: none; font-family: var(--swapot-font); }
.cs-notify__input::placeholder { color: #999; }
.cs-notify__btn { border: 0; background: #69c48c; color: #fff; padding: 14px 26px; font-size: 13px; font-weight: 600; letter-spacing: .04em; cursor: pointer; white-space: nowrap; font-family: var(--swapot-font); transition: opacity .25s; }
.cs-notify__btn:hover { opacity: .85; }
.cs-notify__msg { font-size: 13px; font-weight: 600; }
@media (max-width: 1024px) {
    .cs-card { flex: 1 1 calc(33.333% - 16px); }
    .cs-heading { font-size: 32px; }
}
@media (max-width: 767px) {
    .cs-card { flex: 1 1 calc(50% - 16px); }
    .cs-heading { font-size: 26px; }
    .cs-notify__row { flex-direction: column; border-radius: 12px; }
    .cs-notify__btn { width: 100%; padding: 14px; }
}

/* ── Ciloe style.css (Bootstrap 3 + full theme) ────────────── */

/* — style.css.liquid — */
/**

**/
/*------------------------------------------------------------------
[Table of contents]

1. Import vendor
1.1. Vendor
1.1.1. Google fonts
1.1.2. Icon Fonts
1.1.3. Vendor library
1.2. Bootstrap
2. Reset
2.1. Reset
2.2. Default base
2.2.1.  Button
2.2.2.  Link
2.2.3.  Typo
2.2.4.  Heading
...
2.3. Variable
3. Mixins
4. Elements
4.1. About page
4.2. Banner
4.3. Blog
4.4. Icon-progress
4.5. Popup
4.6. Slide
4.7. Contact page
4.8. 404 Error page
5. Ecommerce
5.1. Cart Page
5.2. Item view templates
5.3. Checkout Page
5.4. Newsletter 
5.5. Single product detail page
6. Layout
6.1. Header
6.1.1. Header version 1
6.1.2. Header version 2
6.1.3. Header version 3
6.1.4. Header version 4
6.1.5. Header version 5
6.2. Footer
6.2.1 Footer version 1
6.3. Homepages
6.3.1. Home 1
6.3.2. Home 2
6.3.3. Home 3
6.3.4. Home 4
6.3.5. Home 5
6.4. Other Page
6.4.1 My account
6.5. Commingsoon
6.5.1 Commingsoon Page
7.Responsive
7.1. FullHD
7.1.1 FullHD
7.1.2 Min Fullhd
7.2. Desktop
7.2. Max Desktop
7.3. Table
7.3.1. tablet
7.3.2. Max tablet
7.4. Mobile
7.4.1. mobile
7.4.2. Max mobile
-------------------------------------------------------------------*/
/** 1. Import vendor **/
/** 1.1. Vendor **/
/** 1.1.1.  Google fonts **/
/* @import fonts.css — replaced by Lota Grotesque @font-face above */
  /** 1.1.2.  Icon Fonts **/
  /* @import url("../sass/components/Vendor/font-awesome/font-awesome.min.css");
  @import url("../sass/components/Vendor/simple-line-icon/css/simple-line-icons.css");
  @import url("../sass/components/Vendor/blanch/fonts.css");
  @import url("../sass/components/Vendor/Helvetica/fonts.css");
  @import url("../sass/components/Vendor/PlayfairDisplay/fonts.css");
  @import url("../sass/components/Vendor/ionicons/css/ionicons.min.css"); */
  /** 1.1.3. Vendor library **/
  /* EX: @import url('components/Vendor/owlcarousel/owlcarousel.css'); */
  /** 1.2. Bootstrap **/
  /*!
  * Bootstrap v3.3.7 (http://getbootstrap.com)
  * Copyright 2011-2016 Twitter, Inc.
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  */
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: var(--engoc-color-main1); }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .navbar {
    display: none; }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }

  .label {
    border: 1px solid var(--engoc-color-main1); }

  .table {
    border-collapse: collapse !important; }
  .table td,
  .table th {
    background-color: #fff !important; }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "\002a"; }

.glyphicon-plus:before {
  content: "\002b"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270f"; }

.glyphicon-glass:before {
  content: "\e001"; }

.glyphicon-music:before {
  content: "\e002"; }

.glyphicon-search:before {
  content: "\e003"; }

.glyphicon-heart:before {
  content: "\e005"; }

.glyphicon-star:before {
  content: "\e006"; }

.glyphicon-star-empty:before {
  content: "\e007"; }

.glyphicon-user:before {
  content: "\e008"; }

.glyphicon-film:before {
  content: "\e009"; }

.glyphicon-th-large:before {
  content: "\e010"; }

.glyphicon-th:before {
  content: "\e011"; }

.glyphicon-th-list:before {
  content: "\e012"; }

.glyphicon-ok:before {
  content: "\e013"; }

.glyphicon-remove:before {
  content: "\e014"; }

.glyphicon-zoom-in:before {
  content: "\e015"; }

.glyphicon-zoom-out:before {
  content: "\e016"; }

.glyphicon-off:before {
  content: "\e017"; }

.glyphicon-signal:before {
  content: "\e018"; }

.glyphicon-cog:before {
  content: "\e019"; }

.glyphicon-trash:before {
  content: "\e020"; }

.glyphicon-home:before {
  content: "\e021"; }

.glyphicon-file:before {
  content: "\e022"; }

.glyphicon-time:before {
  content: "\e023"; }

.glyphicon-road:before {
  content: "\e024"; }

.glyphicon-download-alt:before {
  content: "\e025"; }

.glyphicon-download:before {
  content: "\e026"; }

.glyphicon-upload:before {
  content: "\e027"; }

.glyphicon-inbox:before {
  content: "\e028"; }

.glyphicon-play-circle:before {
  content: "\e029"; }

.glyphicon-repeat:before {
  content: "\e030"; }

.glyphicon-refresh:before {
  content: "\e031"; }

.glyphicon-list-alt:before {
  content: "\e032"; }

.glyphicon-lock:before {
  content: "\e033"; }

.glyphicon-flag:before {
  content: "\e034"; }

.glyphicon-headphones:before {
  content: "\e035"; }

.glyphicon-volume-off:before {
  content: "\e036"; }

.glyphicon-volume-down:before {
  content: "\e037"; }

.glyphicon-volume-up:before {
  content: "\e038"; }

.glyphicon-qrcode:before {
  content: "\e039"; }

.glyphicon-barcode:before {
  content: "\e040"; }

.glyphicon-tag:before {
  content: "\e041"; }

.glyphicon-tags:before {
  content: "\e042"; }

.glyphicon-book:before {
  content: "\e043"; }

.glyphicon-bookmark:before {
  content: "\e044"; }

.glyphicon-print:before {
  content: "\e045"; }

.glyphicon-camera:before {
  content: "\e046"; }

.glyphicon-font:before {
  content: "\e047"; }

.glyphicon-bold:before {
  content: "\e048"; }

.glyphicon-italic:before {
  content: "\e049"; }

.glyphicon-text-height:before {
  content: "\e050"; }

.glyphicon-text-width:before {
  content: "\e051"; }

.glyphicon-align-left:before {
  content: "\e052"; }

.glyphicon-align-center:before {
  content: "\e053"; }

.glyphicon-align-right:before {
  content: "\e054"; }

.glyphicon-align-justify:before {
  content: "\e055"; }

.glyphicon-list:before {
  content: "\e056"; }

.glyphicon-indent-left:before {
  content: "\e057"; }

.glyphicon-indent-right:before {
  content: "\e058"; }

.glyphicon-facetime-video:before {
  content: "\e059"; }

.glyphicon-picture:before {
  content: "\e060"; }

.glyphicon-map-marker:before {
  content: "\e062"; }

.glyphicon-adjust:before {
  content: "\e063"; }

.glyphicon-tint:before {
  content: "\e064"; }

.glyphicon-edit:before {
  content: "\e065"; }

.glyphicon-share:before {
  content: "\e066"; }

.glyphicon-check:before {
  content: "\e067"; }

.glyphicon-move:before {
  content: "\e068"; }

.glyphicon-step-backward:before {
  content: "\e069"; }

.glyphicon-fast-backward:before {
  content: "\e070"; }

.glyphicon-backward:before {
  content: "\e071"; }

.glyphicon-play:before {
  content: "\e072"; }

.glyphicon-pause:before {
  content: "\e073"; }

.glyphicon-stop:before {
  content: "\e074"; }

.glyphicon-forward:before {
  content: "\e075"; }

.glyphicon-fast-forward:before {
  content: "\e076"; }

.glyphicon-step-forward:before {
  content: "\e077"; }

.glyphicon-eject:before {
  content: "\e078"; }

.glyphicon-chevron-left:before {
  content: "\e079"; }

.glyphicon-chevron-right:before {
  content: "\e080"; }

.glyphicon-plus-sign:before {
  content: "\e081"; }

.glyphicon-minus-sign:before {
  content: "\e082"; }

.glyphicon-remove-sign:before {
  content: "\e083"; }

.glyphicon-ok-sign:before {
  content: "\e084"; }

.glyphicon-question-sign:before {
  content: "\e085"; }

.glyphicon-info-sign:before {
  content: "\e086"; }

.glyphicon-screenshot:before {
  content: "\e087"; }

.glyphicon-remove-circle:before {
  content: "\e088"; }

.glyphicon-ok-circle:before {
  content: "\e089"; }

.glyphicon-ban-circle:before {
  content: "\e090"; }

.glyphicon-arrow-left:before {
  content: "\e091"; }

.glyphicon-arrow-right:before {
  content: "\e092"; }

.glyphicon-arrow-up:before {
  content: "\e093"; }

.glyphicon-arrow-down:before {
  content: "\e094"; }

.glyphicon-share-alt:before {
  content: "\e095"; }

.glyphicon-resize-full:before {
  content: "\e096"; }

.glyphicon-resize-small:before {
  content: "\e097"; }

.glyphicon-exclamation-sign:before {
  content: "\e101"; }

.glyphicon-gift:before {
  content: "\e102"; }

.glyphicon-leaf:before {
  content: "\e103"; }

.glyphicon-fire:before {
  content: "\e104"; }

.glyphicon-eye-open:before {
  content: "\e105"; }

.glyphicon-eye-close:before {
  content: "\e106"; }

.glyphicon-warning-sign:before {
  content: "\e107"; }

.glyphicon-plane:before {
  content: "\e108"; }

.glyphicon-calendar:before {
  content: "\e109"; }

.glyphicon-random:before {
  content: "\e110"; }

.glyphicon-comment:before {
  content: "\e111"; }

.glyphicon-magnet:before {
  content: "\e112"; }

.glyphicon-chevron-up:before {
  content: "\e113"; }

.glyphicon-chevron-down:before {
  content: "\e114"; }

.glyphicon-retweet:before {
  content: "\e115"; }

.glyphicon-shopping-cart:before {
  content: "\e116"; }

.glyphicon-folder-close:before {
  content: "\e117"; }

.glyphicon-folder-open:before {
  content: "\e118"; }

.glyphicon-resize-vertical:before {
  content: "\e119"; }

.glyphicon-resize-horizontal:before {
  content: "\e120"; }

.glyphicon-hdd:before {
  content: "\e121"; }

.glyphicon-bullhorn:before {
  content: "\e122"; }

.glyphicon-bell:before {
  content: "\e123"; }

.glyphicon-certificate:before {
  content: "\e124"; }

.glyphicon-thumbs-up:before {
  content: "\e125"; }

.glyphicon-thumbs-down:before {
  content: "\e126"; }

.glyphicon-hand-right:before {
  content: "\e127"; }

.glyphicon-hand-left:before {
  content: "\e128"; }

.glyphicon-hand-up:before {
  content: "\e129"; }

.glyphicon-hand-down:before {
  content: "\e130"; }

.glyphicon-circle-arrow-right:before {
  content: "\e131"; }

.glyphicon-circle-arrow-left:before {
  content: "\e132"; }

.glyphicon-circle-arrow-up:before {
  content: "\e133"; }

.glyphicon-circle-arrow-down:before {
  content: "\e134"; }

.glyphicon-globe:before {
  content: "\e135"; }

.glyphicon-wrench:before {
  content: "\e136"; }

.glyphicon-tasks:before {
  content: "\e137"; }

.glyphicon-filter:before {
  content: "\e138"; }

.glyphicon-briefcase:before {
  content: "\e139"; }

.glyphicon-fullscreen:before {
  content: "\e140"; }

.glyphicon-dashboard:before {
  content: "\e141"; }

.glyphicon-paperclip:before {
  content: "\e142"; }

.glyphicon-heart-empty:before {
  content: "\e143"; }

.glyphicon-link:before {
  content: "\e144"; }

.glyphicon-phone:before {
  content: "\e145"; }

.glyphicon-pushpin:before {
  content: "\e146"; }

.glyphicon-usd:before {
  content: "\e148"; }

.glyphicon-gbp:before {
  content: "\e149"; }

.glyphicon-sort:before {
  content: "\e150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\e151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152"; }

.glyphicon-sort-by-order:before {
  content: "\e153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\e154"; }

.glyphicon-sort-by-attributes:before {
  content: "\e155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156"; }

.glyphicon-unchecked:before {
  content: "\e157"; }

.glyphicon-expand:before {
  content: "\e158"; }

.glyphicon-collapse-down:before {
  content: "\e159"; }

.glyphicon-collapse-up:before {
  content: "\e160"; }

.glyphicon-log-in:before {
  content: "\e161"; }

.glyphicon-flash:before {
  content: "\e162"; }

.glyphicon-log-out:before {
  content: "\e163"; }

.glyphicon-new-window:before {
  content: "\e164"; }

.glyphicon-record:before {
  content: "\e165"; }

.glyphicon-save:before {
  content: "\e166"; }

.glyphicon-open:before {
  content: "\e167"; }

.glyphicon-saved:before {
  content: "\e168"; }

.glyphicon-import:before {
  content: "\e169"; }

.glyphicon-export:before {
  content: "\e170"; }

.glyphicon-send:before {
  content: "\e171"; }

.glyphicon-floppy-disk:before {
  content: "\e172"; }

.glyphicon-floppy-saved:before {
  content: "\e173"; }

.glyphicon-floppy-remove:before {
  content: "\e174"; }

.glyphicon-floppy-save:before {
  content: "\e175"; }

.glyphicon-floppy-open:before {
  content: "\e176"; }

.glyphicon-credit-card:before {
  content: "\e177"; }

.glyphicon-transfer:before {
  content: "\e178"; }

.glyphicon-cutlery:before {
  content: "\e179"; }

.glyphicon-header:before {
  content: "\e180"; }

.glyphicon-compressed:before {
  content: "\e181"; }

.glyphicon-earphone:before {
  content: "\e182"; }

.glyphicon-phone-alt:before {
  content: "\e183"; }

.glyphicon-tower:before {
  content: "\e184"; }

.glyphicon-stats:before {
  content: "\e185"; }

.glyphicon-sd-video:before {
  content: "\e186"; }

.glyphicon-hd-video:before {
  content: "\e187"; }

.glyphicon-subtitles:before {
  content: "\e188"; }

.glyphicon-sound-stereo:before {
  content: "\e189"; }

.glyphicon-sound-dolby:before {
  content: "\e190"; }

.glyphicon-sound-5-1:before {
  content: "\e191"; }

.glyphicon-sound-6-1:before {
  content: "\e192"; }

.glyphicon-sound-7-1:before {
  content: "\e193"; }

.glyphicon-copyright-mark:before {
  content: "\e194"; }

.glyphicon-registration-mark:before {
  content: "\e195"; }

.glyphicon-cloud-download:before {
  content: "\e197"; }

.glyphicon-cloud-upload:before {
  content: "\e198"; }

.glyphicon-tree-conifer:before {
  content: "\e199"; }

.glyphicon-tree-deciduous:before {
  content: "\e200"; }

.glyphicon-cd:before {
  content: "\e201"; }

.glyphicon-save-file:before {
  content: "\e202"; }

.glyphicon-open-file:before {
  content: "\e203"; }

.glyphicon-level-up:before {
  content: "\e204"; }

.glyphicon-copy:before {
  content: "\e205"; }

.glyphicon-paste:before {
  content: "\e206"; }

.glyphicon-alert:before {
  content: "\e209"; }

.glyphicon-equalizer:before {
  content: "\e210"; }

.glyphicon-king:before {
  content: "\e211"; }

.glyphicon-queen:before {
  content: "\e212"; }

.glyphicon-pawn:before {
  content: "\e213"; }

.glyphicon-bishop:before {
  content: "\e214"; }

.glyphicon-knight:before {
  content: "\e215"; }

.glyphicon-baby-formula:before {
  content: "\e216"; }

.glyphicon-tent:before {
  content: "\26fa"; }

.glyphicon-blackboard:before {
  content: "\e218"; }

.glyphicon-bed:before {
  content: "\e219"; }

.glyphicon-apple:before {
  content: "\f8ff"; }

.glyphicon-erase:before {
  content: "\e221"; }

.glyphicon-hourglass:before {
  content: "\231b"; }

.glyphicon-lamp:before {
  content: "\e223"; }

.glyphicon-duplicate:before {
  content: "\e224"; }

.glyphicon-piggy-bank:before {
  content: "\e225"; }

.glyphicon-scissors:before {
  content: "\e226"; }

.glyphicon-bitcoin:before {
  content: "\e227"; }

.glyphicon-btc:before {
  content: "\e227"; }

.glyphicon-xbt:before {
  content: "\e227"; }

.glyphicon-yen:before {
  content: "\00a5"; }

.glyphicon-jpy:before {
  content: "\00a5"; }

.glyphicon-ruble:before {
  content: "\20bd"; }

.glyphicon-rub:before {
  content: "\20bd"; }

.glyphicon-scale:before {
  content: "\e230"; }

.glyphicon-ice-lolly:before {
  content: "\e231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\e232"; }

.glyphicon-education:before {
  content: "\e233"; }

.glyphicon-option-horizontal:before {
  content: "\e234"; }

.glyphicon-option-vertical:before {
  content: "\e235"; }

.glyphicon-menu-hamburger:before {
  content: "\e236"; }

.glyphicon-modal-window:before {
  content: "\e237"; }

.glyphicon-oil:before {
  content: "\e238"; }

.glyphicon-grain:before {
  content: "\e239"; }

.glyphicon-sunglasses:before {
  content: "\e240"; }

.glyphicon-text-size:before {
  content: "\e241"; }

.glyphicon-text-color:before {
  content: "\e242"; }

.glyphicon-text-background:before {
  content: "\e243"; }

.glyphicon-object-align-top:before {
  content: "\e244"; }

.glyphicon-object-align-bottom:before {
  content: "\e245"; }

.glyphicon-object-align-horizontal:before {
  content: "\e246"; }

.glyphicon-object-align-left:before {
  content: "\e247"; }

.glyphicon-object-align-vertical:before {
  content: "\e248"; }

.glyphicon-object-align-right:before {
  content: "\e249"; }

.glyphicon-triangle-right:before {
  content: "\e250"; }

.glyphicon-triangle-left:before {
  content: "\e251"; }

.glyphicon-triangle-bottom:before {
  content: "\e252"; }

.glyphicon-triangle-top:before {
  content: "\e253"; }

.glyphicon-console:before {
  content: "\e254"; }

.glyphicon-superscript:before {
  content: "\e255"; }

.glyphicon-subscript:before {
  content: "\e256"; }

.glyphicon-menu-left:before {
  content: "\e257"; }

.glyphicon-menu-right:before {
  content: "\e258"; }

.glyphicon-menu-down:before {
  content: "\e259"; }

.glyphicon-menu-up:before {
  content: "\e260"; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline; }
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
@media (min-width: 768px) {
  .lead {
    font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover,
a.text-primary:focus {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #337ab7; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }
.dl-horizontal dd:after {
  clear: both; }
@media (min-width: 1025px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 0;
  margin: 0;
  font-size: 17.5px;
  border-left:0; }
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0; }
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: #777777; }
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: ''; }
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
.container:before, .container:after {
  content: " ";
  display: table; }
.container:after {
  clear: both; }
@media (min-width: 768px) {
  .container {
    width: 750px; } }
@media (min-width: 1025px) {
  .container {
    width: 970px; } }
@media (min-width: 1230px) {
  .container {
    width: 1200px; } }
@media (min-width: 1740px) {
  .container-fluid.v1700 {
    width: 1710px; }
}
@media (min-width: 1330px) {
  .container-1300 {
    width: 1300px; 
    margin:auto;
  } }
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table; }
.container-fluid:after {
  clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
.row:before, .row:after {
  content: " ";
  display: table; }
.row:after {
  clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 769px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }

  .col-sm-1 {
    width: 8.33333%; }

  .col-sm-2 {
    width: 16.66667%; }

  .col-sm-3 {
    width: 25%; }

  .col-sm-4 {
    width: 33.33333%; }

  .col-sm-5 {
    width: 41.66667%; }

  .col-sm-6 {
    width: 50%; }

  .col-sm-7 {
    width: 58.33333%; }

  .col-sm-8 {
    width: 66.66667%; }

  .col-sm-9 {
    width: 75%; }

  .col-sm-10 {
    width: 83.33333%; }

  .col-sm-11 {
    width: 91.66667%; }

  .col-sm-12 {
    width: 100%; }

  .col-sm-pull-0 {
    right: auto; }

  .col-sm-pull-1 {
    right: 8.33333%; }

  .col-sm-pull-2 {
    right: 16.66667%; }

  .col-sm-pull-3 {
    right: 25%; }

  .col-sm-pull-4 {
    right: 33.33333%; }

  .col-sm-pull-5 {
    right: 41.66667%; }

  .col-sm-pull-6 {
    right: 50%; }

  .col-sm-pull-7 {
    right: 58.33333%; }

  .col-sm-pull-8 {
    right: 66.66667%; }

  .col-sm-pull-9 {
    right: 75%; }

  .col-sm-pull-10 {
    right: 83.33333%; }

  .col-sm-pull-11 {
    right: 91.66667%; }

  .col-sm-pull-12 {
    right: 100%; }

  .col-sm-push-0 {
    left: auto; }

  .col-sm-push-1 {
    left: 8.33333%; }

  .col-sm-push-2 {
    left: 16.66667%; }

  .col-sm-push-3 {
    left: 25%; }

  .col-sm-push-4 {
    left: 33.33333%; }

  .col-sm-push-5 {
    left: 41.66667%; }

  .col-sm-push-6 {
    left: 50%; }

  .col-sm-push-7 {
    left: 58.33333%; }

  .col-sm-push-8 {
    left: 66.66667%; }

  .col-sm-push-9 {
    left: 75%; }

  .col-sm-push-10 {
    left: 83.33333%; }

  .col-sm-push-11 {
    left: 91.66667%; }

  .col-sm-push-12 {
    left: 100%; }

  .col-sm-offset-0 {
    margin-left: 0%; }

  .col-sm-offset-1 {
    margin-left: 8.33333%; }

  .col-sm-offset-2 {
    margin-left: 16.66667%; }

  .col-sm-offset-3 {
    margin-left: 25%; }

  .col-sm-offset-4 {
    margin-left: 33.33333%; }

  .col-sm-offset-5 {
    margin-left: 41.66667%; }

  .col-sm-offset-6 {
    margin-left: 50%; }

  .col-sm-offset-7 {
    margin-left: 58.33333%; }

  .col-sm-offset-8 {
    margin-left: 66.66667%; }

  .col-sm-offset-9 {
    margin-left: 75%; }

  .col-sm-offset-10 {
    margin-left: 83.33333%; }

  .col-sm-offset-11 {
    margin-left: 91.66667%; }

  .col-sm-offset-12 {
    margin-left: 100%; } }
@media (min-width: 1025px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }

  .col-md-1 {
    width: 8.33333%; }

  .col-md-2 {
    width: 16.66667%; }

  .col-md-3 {
    width: 25%; }

  .col-md-4 {
    width: 33.33333%; }

  .col-md-5 {
    width: 41.66667%; }

  .col-md-6 {
    width: 50%; }

  .col-md-7 {
    width: 58.33333%; }

  .col-md-8 {
    width: 66.66667%; }

  .col-md-9 {
    width: 75%; }

  .col-md-10 {
    width: 83.33333%; }

  .col-md-11 {
    width: 91.66667%; }

  .col-md-12 {
    width: 100%; }

  .col-md-pull-0 {
    right: auto; }

  .col-md-pull-1 {
    right: 8.33333%; }

  .col-md-pull-2 {
    right: 16.66667%; }

  .col-md-pull-3 {
    right: 25%; }

  .col-md-pull-4 {
    right: 33.33333%; }

  .col-md-pull-5 {
    right: 41.66667%; }

  .col-md-pull-6 {
    right: 50%; }

  .col-md-pull-7 {
    right: 58.33333%; }

  .col-md-pull-8 {
    right: 66.66667%; }

  .col-md-pull-9 {
    right: 75%; }

  .col-md-pull-10 {
    right: 83.33333%; }

  .col-md-pull-11 {
    right: 91.66667%; }

  .col-md-pull-12 {
    right: 100%; }

  .col-md-push-0 {
    left: auto; }

  .col-md-push-1 {
    left: 8.33333%; }

  .col-md-push-2 {
    left: 16.66667%; }

  .col-md-push-3 {
    left: 25%; }

  .col-md-push-4 {
    left: 33.33333%; }

  .col-md-push-5 {
    left: 41.66667%; }

  .col-md-push-6 {
    left: 50%; }

  .col-md-push-7 {
    left: 58.33333%; }

  .col-md-push-8 {
    left: 66.66667%; }

  .col-md-push-9 {
    left: 75%; }

  .col-md-push-10 {
    left: 83.33333%; }

  .col-md-push-11 {
    left: 91.66667%; }

  .col-md-push-12 {
    left: 100%; }

  .col-md-offset-0 {
    margin-left: 0%; }

  .col-md-offset-1 {
    margin-left: 8.33333%; }

  .col-md-offset-2 {
    margin-left: 16.66667%; }

  .col-md-offset-3 {
    margin-left: 25%; }

  .col-md-offset-4 {
    margin-left: 33.33333%; }

  .col-md-offset-5 {
    margin-left: 41.66667%; }

  .col-md-offset-6 {
    margin-left: 50%; }

  .col-md-offset-7 {
    margin-left: 58.33333%; }

  .col-md-offset-8 {
    margin-left: 66.66667%; }

  .col-md-offset-9 {
    margin-left: 75%; }

  .col-md-offset-10 {
    margin-left: 83.33333%; }

  .col-md-offset-11 {
    margin-left: 91.66667%; }

  .col-md-offset-12 {
    margin-left: 100%; } }
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }

  .col-lg-1 {
    width: 8.33333%; }

  .col-lg-2 {
    width: 16.66667%; }

  .col-lg-3 {
    width: 25%; }

  .col-lg-4 {
    width: 33.33333%; }

  .col-lg-5 {
    width: 41.66667%; }

  .col-lg-6 {
    width: 50%; }

  .col-lg-7 {
    width: 58.33333%; }

  .col-lg-8 {
    width: 66.66667%; }

  .col-lg-9 {
    width: 75%; }

  .col-lg-10 {
    width: 83.33333%; }

  .col-lg-11 {
    width: 91.66667%; }

  .col-lg-12 {
    width: 100%; }

  .col-lg-pull-0 {
    right: auto; }

  .col-lg-pull-1 {
    right: 8.33333%; }

  .col-lg-pull-2 {
    right: 16.66667%; }

  .col-lg-pull-3 {
    right: 25%; }

  .col-lg-pull-4 {
    right: 33.33333%; }

  .col-lg-pull-5 {
    right: 41.66667%; }

  .col-lg-pull-6 {
    right: 50%; }

  .col-lg-pull-7 {
    right: 58.33333%; }

  .col-lg-pull-8 {
    right: 66.66667%; }

  .col-lg-pull-9 {
    right: 75%; }

  .col-lg-pull-10 {
    right: 83.33333%; }

  .col-lg-pull-11 {
    right: 91.66667%; }

  .col-lg-pull-12 {
    right: 100%; }

  .col-lg-push-0 {
    left: auto; }

  .col-lg-push-1 {
    left: 8.33333%; }

  .col-lg-push-2 {
    left: 16.66667%; }

  .col-lg-push-3 {
    left: 25%; }

  .col-lg-push-4 {
    left: 33.33333%; }

  .col-lg-push-5 {
    left: 41.66667%; }

  .col-lg-push-6 {
    left: 50%; }

  .col-lg-push-7 {
    left: 58.33333%; }

  .col-lg-push-8 {
    left: 66.66667%; }

  .col-lg-push-9 {
    left: 75%; }

  .col-lg-push-10 {
    left: 83.33333%; }

  .col-lg-push-11 {
    left: 91.66667%; }

  .col-lg-push-12 {
    left: 100%; }

  .col-lg-offset-0 {
    margin-left: 0%; }

  .col-lg-offset-1 {
    margin-left: 8.33333%; }

  .col-lg-offset-2 {
    margin-left: 16.66667%; }

  .col-lg-offset-3 {
    margin-left: 25%; }

  .col-lg-offset-4 {
    margin-left: 33.33333%; }

  .col-lg-offset-5 {
    margin-left: 41.66667%; }

  .col-lg-offset-6 {
    margin-left: 50%; }

  .col-lg-offset-7 {
    margin-left: 58.33333%; }

  .col-lg-offset-8 {
    margin-left: 66.66667%; }

  .col-lg-offset-9 {
    margin-left: 75%; }

  .col-lg-offset-10 {
    margin-left: 83.33333%; }

  .col-lg-offset-11 {
    margin-left: 91.66667%; }

  .col-lg-offset-12 {
    margin-left: 100%; } }
table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857;
  vertical-align: top; }
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd; }
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }
.table > tbody + tbody {
  border-top: 2px solid #ddd; }
.table .table {
  background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  min-height: 0.01%; }
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /*     border: 1px solid #ddd;  */
  }
  .table-responsive > .table {
    margin-bottom: 0; }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap; }
  .table-responsive > .table-bordered {
    border: 0; }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0; }
.form-control:focus {
  outline: 0; }
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1; }
.form-control:-ms-input-placeholder {
  color: #999; }
.form-control::-webkit-input-placeholder {
  color: #999; }
.form-control::-ms-expand {
  border: 0;
  background-color: transparent; }
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1; }
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed; }

textarea.form-control {
  height: 200px; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px; }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg
  input[type="month"] {
    line-height: 46px; } }
.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 0;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled, fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0; }

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px; }

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
.has-feedback .form-control {
  padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d; }
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }
.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b; }
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }
.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442; }
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }
.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table; }
.form-horizontal .form-group:after {
  clear: both; }
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none; }
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none; }

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c; }
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c; }
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none; }
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc; }
.btn-default .badge {
  color: #fff;
  background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40; }
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74; }
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  border-color: #204d74; }
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40; }
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none; }
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4; }
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625; }
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625; }
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none; }
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c; }
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85; }
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85; }
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none; }
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da; }
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d; }
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d; }
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none; }
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236; }
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19; }
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19; }
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none; }
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a; }
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff; }

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0; }
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent; }
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent; }
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
.fade.in {
  opacity: 1; }

.collapse {
  display: none; }
.collapse.in {
  display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
.dropdown-menu.pull-right {
  right: 0;
  left: auto; }
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 38px;
  color: #333333;
  margin-right:0;
  white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }
.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 1025px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left; }
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table; }
.btn-toolbar:after {
  clear: both; }
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left; }
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }
.btn-group-vertical > .btn-group:after {
  clear: both; }
.btn-group-vertical > .btn-group > .btn {
  float: none; }
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%; }
.btn-group-justified > .btn-group .btn {
  width: 100%; }
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0; }
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0; }
.input-group .form-control:focus {
  z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px; }
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px; }
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px; }
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
.input-group-btn > .btn {
  position: relative; }
.input-group-btn > .btn + .btn {
  margin-left: -1px; }
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2; }
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px; }
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
.nav:before, .nav:after {
  content: " ";
  display: table; }
.nav:after {
  clear: both; }
.nav > li {
  position: relative;
  display: block; }
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none; }
.nav > li.disabled > a {
  color: #777777; }
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed; }
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7; }
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }
.nav > li > a > img {
  max-width: none; }


.nav-tabs > li {
  float: left;
  margin-bottom: -1px; }
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #cfcfcf;
  border: 0;
  border-bottom-color: transparent;
  cursor: default; }

.nav-pills > li {
  float: left; }
.nav-pills > li > a {
  border-radius: 4px; }
.nav-pills > li + li {
  margin-left: 2px; }
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7; }

.nav-stacked > li {
  float: none; }
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: left; }
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }
@media (min-width: 480px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    width: 20%;
    float: left; }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0; }
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border-bottom: 2px solid #eb5050;
  border-left: 0; }

.tab-content > .tab-pane {
  display: none; }
.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }
.navbar:before, .navbar:after {
  content: " ";
  display: table; }
.navbar:after {
  clear: both; }
@media (min-width: 1025px) {
  .navbar {
    border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }
.navbar-header:after {
  clear: both; }
@media (min-width: 1025px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table; }
.navbar-collapse:after {
  clear: both; }
.navbar-collapse.in {
  overflow-y: auto; }
@media (min-width: 1025px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  .navbar-collapse.in {
    overflow-y: visible; }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
@media (min-width: 1025px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
@media (min-width: 1025px) {
  .navbar-static-top {
    border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
@media (min-width: 1025px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none; }
.navbar-brand > img {
  display: block; }
@media (min-width: 1025px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
.navbar-toggle:focus {
  outline: 0; }
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }
@media (min-width: 1025px) {
  .navbar-toggle {
    display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px; }
@media (max-width: 1024px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px; }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }
@media (min-width: 1025px) {
  .navbar-nav {
    float: left;
    margin: 0; }
  .navbar-nav > li {
    float: left; }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .navbar-form .form-control-static {
    display: inline-block; }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto; }
  .navbar-form .input-group > .form-control {
    width: 100%; }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0; }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }
@media (max-width: 1024px) {
  .navbar-form .form-group {
    margin-bottom: 5px; }
  .navbar-form .form-group:last-child {
    margin-bottom: 0; } }
@media (min-width: 1025px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px; }
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
@media (min-width: 1025px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px; } }

@media (min-width: 1025px) {
  .navbar-left {
    float: left !important; }

  .navbar-right {
    float: right !important;
    margin-right: -15px; }
  .navbar-right ~ .navbar-right {
    margin-right: 0; } }
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
.navbar-default .navbar-brand {
  color: #777; }
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent; }
.navbar-default .navbar-text {
  color: #777; }
.navbar-default .navbar-nav > li > a {
  color: #777; }
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent; }
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7; }
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent; }
.navbar-default .navbar-toggle {
  border-color: #ddd; }
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd; }
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888; }
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7; }
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555; }
@media (max-width: 1024px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent; }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; } }
.navbar-default .navbar-link {
  color: #777; }
.navbar-default .navbar-link:hover {
  color: #333; }
.navbar-default .btn-link {
  color: #777; }
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333; }
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
.navbar-inverse .navbar-brand {
  color: #9d9d9d; }
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent; }
.navbar-inverse .navbar-text {
  color: #9d9d9d; }
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d; }
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent; }
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909; }
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent; }
.navbar-inverse .navbar-toggle {
  border-color: #333; }
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333; }
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff; }
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010; }
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff; }
@media (max-width: 1024px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent; } }
.navbar-inverse .navbar-link {
  color: #9d9d9d; }
.navbar-inverse .navbar-link:hover {
  color: #fff; }
.navbar-inverse .btn-link {
  color: #9d9d9d; }
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff; }
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444; }

.breadcrumb {
  list-style: none;
  border-radius: 4px; }
.breadcrumb > li {
  font-weight: 400;
  color:#999999;
  display: inline-block; }
.breadcrumb > li + li:before {
  content: "/";
  font-family: 'FontAwesome', sans-serif;
  padding: 0 16px;
  color: #ccc; }
@media (max-width: 480px) {
  .breadcrumb > li + li:before {
    padding: 0 5px; } }
.breadcrumb > .active {
  color: var(--engoc-color-main1); }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }
.pagination > li {
  display: inline; }
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 21px;
  line-height: 1.42857;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 999px;
  border-top-left-radius: 999px;
  padding-left: 30px;
  border-left: 2px solid #f0f0f0; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 999px;
  border-top-right-radius: 999px;
  padding-right: 30px;
  border-right: 2px solid #f0f0f0; }
.pagination > li > a,
.pagination > li > span {
  color: #999; }
.pagination > .active > a,
.pagination > .active > span {
  color: #333333; }
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333; }
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center; }
.pager:before, .pager:after {
  content: " ";
  display: table; }
.pager:after {
  clear: both; }
.pager li {
  display: inline; }
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; }
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee; }
.pager .next > a,
.pager .next > span {
  float: right; }
.pager .previous > a,
.pager .previous > span {
  float: left; }
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
.label:empty {
  display: none; }
.btn .label {
  position: relative;
  top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #777777; }
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e; }

.label-primary {
  background-color: #337ab7; }
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090; }

.label-success {
  background-color: #5cb85c; }
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px; }
.badge:empty {
  display: none; }
.btn .badge {
  position: relative;
  top: -1px; }
.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px; }
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff; }
.list-group-item > .badge {
  float: right; }
.list-group-item > .badge + .badge {
  margin-right: 5px; }
.nav-pills > li > a > .badge {
  margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee; }
.jumbotron h1,
.jumbotron .h1 {
  color: inherit; }
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200; }
.jumbotron > hr {
  border-top-color: #d5d5d5; }
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px; }
.jumbotron .container {
  max-width: 100%; }
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px; }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px; }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out; }
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto; }
.thumbnail .caption {
  padding: 9px;
  color: #333333; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
.alert h4 {
  margin-top: 0;
  color: inherit; }
.alert .alert-link {
  font-weight: bold; }
.alert > p,
.alert > ul {
  margin-bottom: 0; }
.alert > p + p {
  margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
.alert-success hr {
  border-top-color: #c9e2b3; }
.alert-success .alert-link {
  color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
.alert-info hr {
  border-top-color: #a6e1ec; }
.alert-info .alert-link {
  color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
.alert-warning hr {
  border-top-color: #f7e1b5; }
.alert-warning .alert-link {
  color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
.alert-danger hr {
  border-top-color: #e4b9c0; }
.alert-danger .alert-link {
  color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }
.media:first-child {
  margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }
.media-object.img-thumbnail {
  max-width: none; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px; }
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

a.list-group-item,
button.list-group-item {
  color: #555; }
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333; }
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed; }
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit; }
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777; }
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7; }
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit; }
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit; }
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6; }
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit; }
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3; }
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit; }
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc; }
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit; }
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc; }
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
.panel-body:before, .panel-body:after {
  content: " ";
  display: table; }
.panel-body:after {
  clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px; }
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px; }
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px; }
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px; }
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0; }
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0; }
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0; }
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0; }
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 20px; }
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px; }
.panel-group .panel + .panel {
  margin-top: 5px; }
.panel-group .panel-heading {
  border-bottom: 0; }
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd; }
.panel-group .panel-footer {
  border-top: 0; }
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd; }
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd; }
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333; }
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd; }

.panel-primary {
  border-color: #337ab7; }
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7; }
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7; }
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff; }
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6; }
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d; }
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1; }
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f; }
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc; }
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b; }
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1; }
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442; }
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: var(--engoc-color-main1);
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20); }
.close:hover, .close:focus {
  color: var(--engoc-color-main1);
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: var(--engoc-color-main1); }
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
.modal-header:before, .modal-header:after {
  content: " ";
  display: table; }
.modal-header:after {
  clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table; }
.modal-footer:after {
  clear: both; }
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }
.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

  .modal-sm {
    width: 300px; } }
@media (min-width: 1025px) {
  .modal-lg {
    width: 900px; } }
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0); }
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90); }
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0; }
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px; }
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0; }
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: var(--engoc-color-main1);
    border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: var(--engoc-color-main1); }
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: var(--engoc-color-main1); }
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: var(--engoc-color-main1); }
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: var(--engoc-color-main1); }
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: var(--engoc-color-main1); }
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: var(--engoc-color-main1); }
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: var(--engoc-color-main1); }
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: var(--engoc-color-main1); }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
.popover.top {
  margin-top: -10px; }
.popover.right {
  margin-left: 10px; }
.popover.bottom {
  margin-top: 10px; }
.popover.left {
  margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff; }
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff; }
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff; }
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left; }
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1; }
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px; }
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0; }
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0; }
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0; } }
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block; }
.carousel-inner > .active {
  left: 0; }
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }
.carousel-inner > .next {
  left: 100%; }
.carousel-inner > .prev {
  left: -100%; }
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0; }
.carousel-inner > .active.left {
  left: -100%; }
.carousel-inner > .active.right {
  left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent; }
.carousel-control.left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90); }
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block; }
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px; }
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px; }
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif; }
.carousel-control .icon-prev:before {
  content: '\2039'; }
.carousel-control .icon-next:before {
  content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent; }
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
.carousel-caption .btn {
  text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }
.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }
.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }

  table.visible-xs {
    display: table !important; }

  tr.visible-xs {
    display: table-row !important; }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm {
    display: block !important; }

  table.visible-sm {
    display: table !important; }

  tr.visible-sm {
    display: table-row !important; }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }
@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 1025px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }

  table.visible-md {
    display: table !important; }

  tr.visible-md {
    display: table-row !important; }

  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }
@media (min-width: 1025px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 1025px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 1025px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }

  table.visible-lg {
    display: table !important; }

  tr.visible-lg {
    display: table-row !important; }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }
@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-sm {
    display: none !important; } }
@media (min-width: 1025px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }
.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }

  table.visible-print {
    display: table !important; }

  tr.visible-print {
    display: table-row !important; }

  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }
.visible-print-block {
  display: none !important; }
@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }
@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }
/** 1.2. Bootstrap **/
/** 1.3. Animation **/
/** 2. Reset **/
/*
2.Reset
2.3. Variable

*/
/** 3. Mixins **/
/*
3. Mixins


*/
/*
2.Reset
2.2. Default base

*/
.f-red {
  color: #ff0000; }

.f-10 {
  font-size: 10px; }

.f-15 {
  font-size: 15px; }

.f-20 {
  font-size: 20px; }

.bd-7 {
  border: 2px solid #f0f0f0;
}
.bd-7.v2 {
  border: 1px solid #f0f0f0; }

.bd-999 {
  border: 2px solid #f0f0f0;
  border-radius: 999px; }

.pd-bd {
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 30px; }

.item-pd {
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  padding: 25px 25px 32px 25px; }
.item-pd:hover {
  -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.1); }

.image-bd {
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  position: relative; }
.image-bd img {
  border-radius: 10px; }

.bd-half {
  border-radius: 10px 10px 0 0;
  overflow: hidden; }

/*Padding Around the Block*/
.space-padding-0 {
  padding: 0; }

.space-padding-10 {
  padding: 10px; }

.space-padding-20 {
  padding: 20px; }

.space-padding-30 {
  padding: 30px; }

.space-padding-40 {
  padding: 40px; }

.space-padding-50 {
  padding: 50px; }

/*Padding Top & Bottom*/
.space-padding-tb-10 {
  padding-top: 10px;
  padding-bottom: 10px; }

.space-padding-tb-20 {
  padding-top: 20px;
  padding-bottom: 20px; }

.space-padding-tb-30 {
  padding-top: 30px;
  padding-bottom: 30px; }

.space-padding-tb-40 {
  padding-top: 40px;
  padding-bottom: 40px; }

.space-padding-tb-50 {
  padding-top: 50px;
  padding-bottom: 50px; }

.space-padding-tb-60 {
  padding-top: 60px;
  padding-bottom: 60px; }

.space-padding-tb-70 {
  padding-top: 70px;
  padding-bottom: 70px; }

.space-padding-tb-80 {
  padding-top: 80px;
  padding-bottom: 80px; }

.space-padding-tb-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.space-padding-tb-130 {
  padding-top: 130px;
  padding-bottom: 130px; }

.margin-0 {
  margin: 0px; }

/*Margin Bottom*/
.space-5 {
  margin-bottom: 5px; }

.space-10 {
  margin-bottom: 10px; }

.space-15 {
  margin-bottom: 15px; }

.space-20 {
  margin-bottom: 20px; }

.space-25 {
  margin-bottom: 25px; }

.space-30 {
  margin-bottom: 30px; }

.space-35 {
  margin-bottom: 35px; }

.space-40 {
  margin-bottom: 40px; }

.space-45 {
  margin-bottom: 45px; }

.space-50 {
  margin-bottom: 50px; }

.space-55 {
  margin-bottom: 55px; }

.space-60 {
  margin-bottom: 60px; }

.space-65 {
  margin-bottom: 65px; }

.space-70 {
  margin-bottom: 70px; }

.space-75 {
  margin-bottom: 75px; }

.space-80 {
  margin-bottom: 80px; }

.space-85 {
  margin-bottom: 85px; }

.space-90 {
  margin-bottom: 90px; }

.space-95 {
  margin-bottom: 95px; }

.space-100 {
  margin-bottom: 100px; }

.space-32 {
  margin-bottom: 32px; }

.engoc-equal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
}

/*Margin top*/
.space-margin-top-0 {
  margin-top: 0px; }

.space-margin-top-85 {
  margin-top: 85px; }

.space-margin-top-50 {
  margin-top: 50px; }
@media (max-width: 767px) {
  .space-margin-top-50 {
    margin-top: 0px; } }

.mg-l10 {
  margin-left: 10px; }

@media (min-width: 1025px) {
  .hover-images {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom; }
  .hover-images img {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }
  .hover-images:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); } }
.effect_img:hover {
  background-color: var(--engoc-color-main1);
    overflow: hidden;
    position: relative;
    margin: 0 auto; }

.effect_img {
  position: relative;
  overflow: hidden; }
.effect_img:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out; }
.effect_img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out; }
@media (min-width: 1025px) {
  .effect_img:hover:before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255, 255, 255, 0.5); }
  .effect_img:hover:after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255, 255, 255, 0.5); } }

.effect_img2 {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden; }
.effect_img2:before {
  border-bottom: 50px solid rgba(255, 255, 255, 0.4);
  border-top: 50px solid rgba(255, 255, 255, 0.4);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  transform: rotate(45deg) scaleY(0);
  -o-transform: rotate(45deg) scaleY(0);
  -webkit-transform: rotate(45deg) scaleY(0);
  -moz-transform: rotate(45deg) scaleY(0);
  -ms-transform: rotate(45deg) scaleY(0);
  -webkit-transition: opacity .35s ease 0s, transform .35s ease 0s;
  -webkit-transition: opacity .35s ease 0s, -webkit-transform .35s ease 0s;
  transition: opacity .35s ease 0s, -webkit-transform .35s ease 0s;
  transition: opacity .35s ease 0s, transform .35s ease 0s;
  transition: opacity .35s ease 0s, transform .35s ease 0s, -webkit-transform .35s ease 0s;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  width: 100%; }
@media (min-width: 1025px) {
  .effect_img2:hover:before {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: rotate(45deg) scaleY(4);
    -o-transform: rotate(45deg) scaleY(4);
    -webkit-transform: rotate(45deg) scaleY(4);
    -moz-transform: rotate(45deg) scaleY(4);
    -ms-transform: rotate(45deg) scaleY(4); } }

.effect-img3 {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  position: relative;
  overflow: hidden; }

.plus-zoom:hover:before {
  right: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.5); }
.plus-zoom:hover:after {
  top: 50%;
  bottom: 50%;
  background-color: rgba(255, 255, 255, 0.5); }
.plus-zoom::before, .plus-zoom::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: 1; }

.container-msr {
  padding-left: 114px;
  width: 100%; }

.container-50 {
  padding-right: 50px;
  padding-left: 50px;
  width: 100%; }

.container-42 {
  padding-right: 42px;
  padding-left: 42px;
  width: 100%; }

.container-40 {
  padding-right: 40px;
  padding-left: 40px;
  width: 100%; }

.container-hf {
  padding-left: 40px;
  padding-right: 37px;
  width: 100%; }

.container-fullwidth {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px; }

@media (max-width: 1024px) {
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; } }

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-15 {
  width: 20%;
  float: left; }

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left; } }
@media (min-width: 1025px) {
  .col-md-15 {
    width: 20%;
    float: left; } }
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left; } }
@media (min-width: 768px) {
  /* Column clear fix */
  .col-lg-1:nth-child(12n+1),
  .col-lg-2:nth-child(6n+1),
  .col-lg-3:nth-child(4n+1),
  .col-lg-4:nth-child(3n+1),
  .col-lg-6:nth-child(2n+1),
  .col-md-1:nth-child(12n+1),
  .col-md-2:nth-child(6n+1),
  .col-md-15:nth-child(5n+1),
  .col-md-3:nth-child(4n+1),
  .col-md-4:nth-child(3n+1),
  .col-md-6:nth-child(2n+1) {
    clear: none; }

  .col-sm-1:nth-child(12n+1),
  .col-sm-2:nth-child(6n+1),
  .col-sm-3:nth-child(4n+1),
  .col-sm-4:nth-child(3n+1),
  .col-sm-6:nth-child(2n+1) {
    clear: left; } }
/*  Medium Desktop  */
@media (min-width: 1025px) {
  /* Column clear fix */
  .col-lg-1:nth-child(12n+1),
  .col-lg-2:nth-child(6n+1),
  .col-lg-3:nth-child(4n+1),
  .col-lg-4:nth-child(3n+1),
  .col-lg-6:nth-child(2n+1),
  .col-sm-1:nth-child(12n+1),
  .col-sm-2:nth-child(6n+1),
  .col-sm-3:nth-child(4n+1),
  .col-sm-4:nth-child(3n+1),
  .col-sm-6:nth-child(2n+1) {
    clear: none; }

  .col-md-1:nth-child(12n+1),
  .col-md-2:nth-child(6n+1),
  .col-md-15:nth-child(5n+1),
  .col-md-3:nth-child(4n+1),
  .col-md-4:nth-child(3n+1),
  .col-md-6:nth-child(2n+1) {
    clear: left; } }
/*  Large Desktop  */
@media (min-width: 1200px) {
  /* Column clear fix */
  .col-md-1:nth-child(12n+1),
  .col-md-2:nth-child(6n+1),
  .col-md-3:nth-child(4n+1),
  .col-md-4:nth-child(3n+1),
  .col-md-6:nth-child(2n+1),
  .col-sm-1:nth-child(12n+1),
  .col-sm-2:nth-child(6n+1),
  .col-sm-3:nth-child(4n+1),
  .col-sm-4:nth-child(3n+1),
  .col-sm-6:nth-child(2n+1) {
    clear: none; }

  .col-lg-1:nth-child(12n+1),
  .col-lg-2:nth-child(6n+1),
  .col-lg-3:nth-child(4n+1),
  .col-lg-4:nth-child(3n+1),
  .col-lg-6:nth-child(2n+1) {
    clear: left; } }
.e-gradient, .blog-post-social a:hover, .blog-comment-item .cmt-content .btn-author:hover, .social a:hover {
  background: #54f0ff;
  background-image: linear-gradient(122deg, #c26af5, #54f0ff); }

.e-pink-gradient {
  background: #ec1dff;
  background-image: linear-gradient(122deg, #ec1dff, #f79bdc); }
.e-pink-gradient:hover {
  color: #fff;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(236, 29, 255, 0.68);
  box-shadow: 0px 2px 20px 2px rgba(236, 29, 255, 0.68); }

.e-yl-gradient {
  background: #ca9171;
  background-image: linear-gradient(122deg, #ca9171, #f8ccb3); }
.e-yl-gradient:hover {
  color: #fff;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(202, 145, 112, 0.68);
  box-shadow: 0px 2px 20px 2px rgba(202, 145, 112, 0.68); }

.e-red-gradient {
  background: #ff4065;
  background-image: linear-gradient(122deg, #ff4065, #ffdce9); }
.e-red-gradient:hover {
  color: #fff;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(255, 64, 100, 0.68);
  box-shadow: 0px 2px 20px 2px rgba(255, 64, 100, 0.68); }

.e-orange-gradient {
  background: #fa4168;
  background-image: linear-gradient(122deg, #fa4168, #f7cfba); }
.e-orange-gradient:hover {
  color: #fff;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(255, 64, 100, 0.68);
  box-shadow: 0px 2px 20px 2px rgba(255, 64, 100, 0.68); }

.btn-gradient, .product-tab-sw li a:hover, .product-tab-sw li.active a, .product-tab-sw2 li a:hover, .product-tab-sw2 li.active a {
  color: #fff;
  font-weight: 500;
  background: #54f0ff;
  background-image: linear-gradient(122deg, #c26af5, #54f0ff);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.btn-gradient:hover, .product-tab-sw li a:hover, .product-tab-sw2 li a:hover {
  color: #fff;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(194, 106, 245, 0.68);
  box-shadow: 0px 2px 20px 2px rgba(194, 106, 245, 0.68); }

.h-ribbon {
  width: 40px;
  height: 17px;
  line-height: 18px;
  border-radius: 20px;
  letter-spacing: 0.2em;
  font-size: 8px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  display: inline-block; }
.h-ribbon.v3 {
  width: 31px;
  height: 13px;
  line-height: 13px;
  font-size: 7px; }
.h-ribbon.v3.e-green:before {
  content: none; }
.h-ribbon.e-green {
  background: #42e9a8; }
.h-ribbon.e-green:before {
  content: ' ';
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  position: absolute;
  width: 0;
  height: 0;
  left: 8px;
  border: 4px solid;
  top: 12px;
  border-color: #42e9a8 transparent transparent #42e9a8; }
.h-ribbon.e-skyblue {
  background: #55d1e3; }
.h-ribbon.e-skyblue:before {
  content: ' ';
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  position: absolute;
  width: 0;
  height: 0;
  left: 8px;
  border: 4px solid;
  top: 12px;
  border-color: #55d1e3 transparent transparent #55d1e3; }
.h-ribbon.e-red {
  background: #ff5050; }
.h-ribbon.e-red.v2:before {
  content: ' ';
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  position: absolute;
  width: 0;
  height: 0;
  left: 8px;
  border: 4px solid;
  top: 12px;
  border-color: #ff5050 transparent transparent #ff5050; }
.h-ribbon.h-pos {
  position: absolute;
  top: 0;
  right: 0; }
.h-ribbon.h-pos.v2 {
  right: 50px;
  top: -8px; }
.h-ribbon.h-pos.v3 {
  margin-left: 5px;
  top: -10px;
  position: relative; }
.h-ribbon.h-pos.v4 {
  top: -5px;
  right: 22px; }

.icon-mobile {
  margin: 0;
  padding: 0;
  border: 0;
  height: 30px;
  width: 30px;
  margin-right: -10px;
  margin-top: 0px;
  background: transparent; }

.e-icon-menu .navbar-toggler-bar {
  display: block;
  width: 25px;
  height: 2px;
  margin-bottom: 5px;
  background: #d7d7d7;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.e-icon-menu .navbar-toggler-bar:last-child {
  margin-bottom: 0; }

.e-icon-menu.active .navbar-toggler-bar:first-child {
  position: relative;
  top: 6px;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg); }

.e-icon-menu.active .navbar-toggler-bar:nth-child(2) {
  opacity: 0; }

.e-icon-menu.active .navbar-toggler-bar:nth-child(3) {
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  position: relative;
  bottom: 8px; }

.scroll_top {
  display: inline-block;
  bottom: 65px;
  position: fixed;
  right: 15px;
  width: 44px;
  height: 44px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  z-index: 1003; }
.scroll_top i {
  line-height: 44px; }

section.all-s {
  background: #fff; }

@media (min-width: 1681px) {
  .wrappage.v2 {
    width: 1522px;
    margin: 0 auto; } }

.h3-bg {
  background: url("../img/h3-bg.jpg") no-repeat center center;
  background-size: cover; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .tab-pane.active {
  display: block;
}

.tab-content {
  position: relative;}

.tab-pane:not(:first-child) {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

/*
2. Reset
2.1. Reset

*/
html,
body,
ul,
p, h1, h2, h3, h4, h5,
ol {
  margin: 0;
  padding: 0; }

body {
  font-family: var(--engoc-primary-font);
    color: var(--engoc-color-main1);
      font-size: 14px; }

a {
  color: var(--engoc-color-main1); }

a:hover, a:focus {
  color: #777;
  text-decoration: none;
  outline: none; }

ul, li {
  list-style: none; }

img {
  display: inline;
  max-width: 100%; }

input, textarea, button {
  border-radius: 0px; }

button {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

* {
  outline: none; }

body {
  overflow-x: hidden;
  position: relative;
  right: 0; }

.pushmenu {
  /*this is the nav*/
  background: #1d1d1f;
  width: 362px;
  height: 100%;
  top: 0;
  z-index: 1000;
  position: fixed; }
.pushmenu.pushmenu-left {
  background: transparent;
  width: 417px; }

.pushmenu-left {
  right: -417px; }

.pushmenu-left.pushmenu-open {
  right: 0; }

.pushmenu-push-toright {
  right: 362px; }

.pushmenu-push-toright-cart {
  right: 417px; }

/*Transition*/
.pushmenu, body {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}

.pushmenu-push-toright .wrappage {
  position: relative; }

.pushmenu-push-toright-cart .wrappage:after {
  position: absolute;
  background: rgba(29, 29, 31, 0.6) none repeat scroll 0 0;
  content: "";
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 9999;
  cursor: pointer; }

@media (max-width: 320px) {
  .pushmenu {
    width: 280px; }

  .pushmenu-left {
    right: -280px; }

  .pushmenu-push-toright-cart {
    right: 280px; }

  .pushmenu.pushmenu-left {
    width: 280px; }

  .menu-social {
    width: 280px; }

  .cart-bottom {
    width: 300px; } }
/** 4. Elements **/
/*
4. Elements
4.1. About page
4.2. Banner
4.3. Blog
4.4. Icon-progress
4.5. Popup
4.6. Slide
4.7. Contact page
4.8. 404 Error page
*/
/*
4.3. Blog
*/
.blog-post-title a {
  font-size: 18px;
  line-height: 24px; }

.blog-post-desc {
  color: #999999;
  line-height: 2;
  margin-bottom: 10px; }
@media (max-width: 480px) {
  .blog-post-desc {
    margin-bottom: 15px; } }

.blog-post-date {
  color: var(--engoc-color-main1);
    text-transform: uppercase;
    justify-content: center;
    width: 90px;
    height: 50px;
    background:#fff;
    font-size:12px;
    font-weight:600;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
/*   .blog-post-date .b-date {

margin-bottom: 7px;
padding-top: 12px;
line-height: 21px;
border-bottom: 1px solid rgba(255, 255, 255, 0.27); } */

.blog-post-date .b-month {
  font-size: 11px;
  letter-spacing: 0.1em; }
.blog-post-date.abs {
  justify-content: center;
  transform: rotate(90deg);
  position: absolute;
  top: 20px;
  left: -20px; }
.blog-post-date.abs.v2 {
  left: 40px; }

.blog-img {
  position: relative; }
.blog-img .hover-images {
  /*     border-radius: 10px 10px 0 0; */
  width: 100%;
  height: 100%;
  overflow: hidden; }
.blog-img img {
  width: 100%; }

.widget-blog-title {
  font-weight:400;
  font-size: 18px;
  margin-bottom: 30px;
  position:relative; }
.blog-widget.blog-widget-popular{
  margin-bottom: 50px;
}
.blog-widget {
  margin-bottom: 60px; }
.blog-widget:last-child {
  border-bottom:0; }
/* ---------------------------------*/
@media (min-width: 768px) {
  .blog-single-post {
    padding-top: 28px; }
  .blog-single-post.blog-standar {
    padding-top: 0; } }
.blog-single-post.blog-standar {
  padding-bottom: 50px; }
@media (min-width: 1025px) {
  .blog-single-post.blog-standar {
    padding-bottom: 100px; } }
@media (min-width: 1681px) {
  .blog-single-post .blog-content {
    padding-left: 15px;
    padding-right: 45px; }
  .blog-single-post .blog-sidebar {
    padding-left: 15px;
    padding-right: 15px; }
  .blog-single-post .row {
    margin-left: -15px;
    margin-right: -15px; } }
@media (max-width: 1024px) {
  .blog-single-post .blog-content {
    margin-bottom: 30px; } }

.blog .pagination {
  margin: 0; }
.blog.spc1 {
  padding-bottom: 50px; }
@media (min-width: 1025px) {
  .blog.spc1 {
    padding-bottom: 76px; } }

.blog-heading {
  font-size: 22px;
  position: relative;
  padding-bottom: 25px;
  padding-top: 7px;
  margin-bottom: 73px; }
.blog-heading:before {
  border-bottom: 1px solid transparent;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 68px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
  background: linear-gradient(90deg, #c467f5, #53f3ff);
  border: 0; }

.blog-post-title {
  font-size: 18px;
  line-height: 24px; }
.blog-post-title.v2 {
  font-size: 22px; }
.blog-post-title.v2 a {
  font-size: 24px; }

.blog-post-desc {
  color: #999999;
  line-height: 26px;
  margin-bottom: 26px; }
@media (max-width: 480px) {
  .blog-post-desc {
    margin-bottom: 15px; } }

.blog-post-author {
  color: #b0b0b0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
.blog-post-author .blog-post-comment {
  background: url(blog-cm-icon.png) no-repeat left top;
  background-position: left 4px;
  padding: 2px 10px 0 28px; }

.c-black {
  color: var(--engoc-color-main1); }

@media (min-width: 1681px) {
  .blog-grid .row {
    margin-left: -20px;
    margin-right: -20px; }
  .blog-grid [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px; } }

.blog-post-item {
  padding-bottom: 30px;
  margin-bottom:30px;

}


@media (min-width: 1681px) {
  .blog-post-item {
    margin-bottom: 30px; } }
/*   .blog-post-item .blog-info {
padding: 60px 12px 34px 24px;
border: 2px solid #f0f0f0;
border-radius: 0 0 10px 10px;
border-top: 0; } */
/*     @media (max-width: 480px) {
.blog-post-item .blog-info {
padding: 40px 12px 20px 24px; } } */
@media (max-width: 480px) {
  .blog-post-item .blog-post-title {
    margin-bottom: 15px; } }
.blog-post-item.v2 .blog-info {
  padding: 60px 39px 38px 41px;
  border: 0; }
@media (max-width: 480px) {
  .blog-post-item.v2 .blog-info {
    padding: 40px 12px 20px 24px; } }
.blog-post-item.v2 .blog-post-title {
  margin-bottom:0;
  max-width: 100%;
  padding-bottom: 18px;
  position: relative; }
/*     .blog-post-item.v2 .blog-post-title:before {
border-bottom: 1px solid transparent;
bottom: 0;
left: 0;
content: "";
position: absolute;
width: 71px;
height: 1px;
background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
background: linear-gradient(90deg, #c467f5, #53f3ff);
border: 0; } */
.blog-post-item.v2 .blog-post-desc p {
  margin-bottom: 28px; }
.blog-post-item.v2 .blog-post-author.v2 {
  border-bottom: 1px solid #dfdfdf;

  border-top: 1px solid #dfdfdf; }
.blog-post-item.v2 .blog-post-author.v2 > a {
  color: #666666; }
.blog-post-item.v2 .blog-post-author.v2 > a:hover {
  color: var(--engoc-color-main1); }
@media (max-width: 480px) {
  .blog-post-item.v2 .blog-post-author.v2 {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
.blog-post-item.v3 .blog-img {
  margin-bottom: 26px; }
/*     .blog-post-item.v3 .blog-img .hover-images {
border-radius: 10px; } */
.blog-post-item.v3 .blog-post-title {
  margin-bottom: 0;
  margin-left: 14px; }
@media (max-width: 480px) {
  .blog-post-item.v3 .blog-post-title {
    max-width: 210px; } }
.blog-post-item.v3 .heading-blog {
  margin-bottom: 12px; }

@media (max-width: 480px) {
  .blog-post-social {
    margin-top: 15px; } }
.blog-post-social a {
  width: 41px;
  height: 41px;
  border: 1px solid #e0e0e0;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  color: #999999;
  margin-left: 8px; }
.blog-post-social a i {
  line-height: 41px; }
.blog-post-social a:hover {
  color: #fff; }

.cmt-title.abs {
  position: relative;
  top: -30px; }
.cmt-title h3 {
  font-size: 18px; }
.cmt-title .oval-bd {
  display: inline-block;
  width: 232px;
  height: 58px;
  line-height: 54px;
  border: 2px solid #f0f0f0;
  background: #fff;
  border-radius: 999px; }
.cmt-title.v2 .oval-bd {
  width: 439px;
  height: 57px;
  line-height: 57px;
  background: #54f0ff;
  background-image: linear-gradient(122deg, #c26af5, #54f0ff);
  border: 0; }
@media (max-width: 480px) {
  .cmt-title.v2 .oval-bd {
    width: 100%; } }
@media (max-width: 480px) {
  .cmt-title.v2 h3 {
    font-size: 16px; } }
.cmt-title.v3 .oval-bd {
  width: 199px;
  height: 57px;
  line-height: 57px;
  background: #54f0ff;
  background-image: linear-gradient(122deg, #c26af5, #54f0ff);
  border: 0; }
@media (max-width: 480px) {
  .cmt-title.v3 .oval-bd {
    width: 100%; } }
@media (max-width: 480px) {
  .cmt-title.v3 h3 {
    font-size: 16px; } }

.blog-comment-item {
  padding: 50px 15px 30px 15px; }
@media (min-width: 480px) {
  .blog-comment-item {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */ } }
@media (min-width: 768px) {
  .blog-comment-item {
    padding: 54px 54px 42px 40px; } }
.blog-comment-item .cmt-img {
  padding-right: 35px; }
@media (max-width: 480px) {
  .blog-comment-item .cmt-img {
    margin-bottom: 15px; } }
.blog-comment-item .cmt-img img {
  border-radius: 100%; }
.blog-comment-item .wrp-name {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column; }
.blog-comment-item .wrp-name .name {
  font-size: 18px;
  margin-bottom: 11px;
  font-weight: 500; }
.blog-comment-item .wrp-name .date {
  color: #b0b0b0;
  margin-bottom: 9px; }
.blog-comment-item .wrp-name .wrp-element {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between; }
.blog-comment-item .wrp-name .wrp-element > a {
  font-size: 16px;
  color: #999999;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.blog-comment-item .wrp-name .wrp-element > a:hover {
  color: #777; }
.blog-comment-item .cmt-content p {
  color: #666666;
  line-height: 26px; }
.blog-comment-item .cmt-content .btn-author {
  color: #fff;
  font-weight: 500;
  width: 179px;
  height: 42px;
  line-height: 42px;
  background: #333333;
  display: inline-block;
  text-align: center;
  border-radius: 999px;
  margin-top: 23px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.blog-comment-item .cmt-content .btn-author i {
  margin-left: 8px; }

.blog-comment-content {

  position: relative;
}
@media (min-width: 480px) {
  .blog-comment-content ul li:nth-child(2) {
    padding-left: 119px; }
  .blog-comment-content ul li:nth-child(2) .blog-comment-item {
    padding-left: 0; } }
.blog-comment-content ul li:nth-child(2) .blog-comment-item {
  border-top: 1px solid #f0f0f0; }
.blog-comment-content ul li:last-child {
  border-top: 1px solid #f0f0f0; }

.blog-comment-top {

  margin-bottom: 70px; }

.blog-comment-bottom {
  position: relative;
  margin-top: 60px;
  padding: 15px;
}
@media (min-width: 768px) {
  .blog-comment-bottom {
    padding: 0; } }

.bdr {
  border-radius: 999px; }

.bdr2 {
  border-radius: 5px; }

@media (min-width: 1025px) {
  .cmt-form {
    padding-top: 20px; } }
@media (max-width: 1024px) {
  .cmt-form [class*="col-"] {
    margin-bottom: 15px; } }
@media (min-width: 1025px) {
  .cmt-form .form-group {
    margin-bottom: 20px; } }
.cmt-form input {
  height: 40px;
  padding-left: 20px;
  border: none;
  background: #f9f9f9;
  font-size: 12px;
}
.cmt-form input::-webkit-input-placeholder {
  color: #999999;
  font-size:12px;  }
.cmt-form input:-moz-placeholder {
  color: #999999;
  font-size:12px;  }
.cmt-form input::-moz-placeholder {
  color: #999999;
  font-size:12px;  }
.cmt-form input:-ms-input-placeholder {
  color: #999999;
  font-size:12px;  }
.cmt-form textarea {
  resize: none;
  padding-top: 20px;
  padding-left: 20px;
  max-height: 180px;
  border: none;
  background: #f9f9f9;
}
.cmt-form .btn-submit {
  width: 130px;
  height: 40px;
  padding: 0;
  font-size: 12px;
  line-height: 40px;
  border: 0;
  border-radius: 0; }

.number {
  color: #aaaaaa; }

/* .wiget-content li {
border-bottom: 1px solid #ededed; } */
.wiget-content li:last-child {
  border-bottom: 0; }
.wiget-content li a {
  color: #999999;
  line-height: 40px;
  position: relative;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.wiget-content li a:hover {
  color: var(--engoc-primary-color); }
.wiget-content.v2 li.active a:before {
  content: "\f3d1";
  font-family: "ionicons";
  position: absolute;
  top: 0;
  right: 0px;
  left: unset;
  color: #bcbcbc; }
.wiget-content.v2 a {
  padding-left: 0;
  margin-right: 20px; }
.wiget-content.v2 a:before {
  content: none; }
.wiget-content.v3 li.active > a {
  background: #f0f0f0;
  font-weight: 500; }
.wiget-content.v3 li.active > a:before {
  content: "\f3d1";
  font-family: "ionicons";
  position: absolute;
  top: 0;
  right: 25px;
  left: unset;
  color: #bcbcbc; }
.wiget-content.v3 a {
  padding-left: 23px;
  margin: 0; }
.wiget-content.v3 a:before {
  content: none; }
.wiget-content.v4 h3 {
  font-size: 14px;
  padding-left: 23px;
  line-height: 45px; }
.wiget-content.v4 a {
  margin-left: 23px;
  padding-left: 15px; }
.wiget-content.v4 a:before {
  content: "\f363";
  font-family: "ionicons";
  position: absolute;
  top: 0;
  left: 0px;
  color: #bfbfbf;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }

.blog-widget-social .social {
  margin-left: 23px;
  padding: 35px 0px; }

.blog-widget-popular .post-item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */

  padding-top: 0px;
  padding-bottom: 5px;

}
.blog-widget-popular .post-item:last-child {
  border-bottom: 0; }
.blog-widget-popular .post-item .post-img {
  margin-right: 20px; }
.blog-widget-popular .post-item .post-img img {
  min-height:60px;
  object-fit:cover;}

.blog-widget-popular .post-item .post-info h3 {
  font-weight: 400;
  font-size: 14px;
  line-height:25px;
  text-transform: inherit;
  margin-bottom: 10px; }
.blog-widget-popular .post-item .post-info h3 a{
  color:#999999;
}
.blog-widget-popular .post-item .post-info h3 a:hover{
  color:var(--engoc-primary-color);
    }
.blog-widget-popular .post-item .post-info p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #666666; }
.blog-widget-popular .owl-nav {
  position: absolute;
  top: -50px;
  right: 12px;
  margin-top: 0; }
.blog-widget-popular .owl-theme .owl-nav [class*=owl-] {
  color: #bcbcbc;
  background: transparent;
  padding: 4px 7px;
  margin-left: 0;
  margin-right: 0; }
.blog-widget-popular .owl-theme .owl-nav [class*=owl-] span {
  font-size: 17px; }

.blog-widget-newsletter .newsletter {
  background:#f6f6f6;
  padding: 40px 20px; }
.blog-widget-newsletter .newsletter .title_newletter {
  font-size:14px;
  font-weight:400;
}
.blog-widget-newsletter .form_newsletter {
  position: relative; }
.blog-widget-newsletter .form_newsletter .form-control {
  background: transparent;
  height: 51px;
  line-height: 51px;
  border: 0;
  border-bottom: 2px solid var(--engoc-color-main1);
    padding-left: 26%;
    padding-top: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 12px; }
.blog-widget-newsletter .form_newsletter .form-control::-webkit-input-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.blog-widget-newsletter .form_newsletter .form-control:-moz-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.blog-widget-newsletter .form_newsletter .form-control::-moz-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.blog-widget-newsletter .form_newsletter .form-control:-ms-input-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.blog-widget-newsletter .form_newsletter .button_mini {
  transition:all .3s ease;
  width: 140px;
  height: 50px;
  background: var(--engoc-color-main1);
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px; }
.blog-widget-newsletter .form_newsletter .button_mini:hover {

  background: var(--engoc-primary-color);
    }

.blog-widget-instagram .instagram {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;

  margin-left: -6.5px;
  margin-right: -6.5px;
}
.blog-widget-instagram .instagram a {
  width: 33.33333%;
  padding-left: 6.5px;
  padding-right: 6.5px;
  margin-bottom: 13px;
}


.blog-standar .blog-post-item.v2 .blog-info {
  padding: 0 0 30px 0 }
@media (min-width: 1681px) {
  .blog-standar .blog-post-item {
    margin-bottom: 60px; } }
.blog-standar .blog-post-desc {
  max-width:760px;
  margin-bottom: 0; }
.blog-standar .button-blog {
  font-weight: 500;
  color: #cfcfcf;
  letter-spacing: 0.5px;
}
.blog-standar .button-blog:hover{
  color: var(--engoc-primary-color);
    }
.blog-post-info .button-blog {
  font-weight: 500;
  color: #cfcfcf;
  letter-spacing: 0.5px;
}
.blog-post-info .button-blog:hover{
  color: var(--engoc-primary-color);
    }

.blog-standar .blog-post-item.v2 .blog-post-author.v2 {
  padding-top: 18px;
  padding-bottom: 14px; }
.blog-standar blockquote {
  padding: 80px 20px;
  margin: 0;
  border-left: 0;
  background: var(--engoc-color-main1); }
@media (min-width: 480px) {
  .blog-standar blockquote {
    padding: 103px 183px 94px 159px; } }
.blog-standar blockquote:before {
  position: absolute;
  content: url("../img/blog/quote.png");
  top: 58px;
  left: 61px; }
@media (max-width: 480px) {
  .blog-standar blockquote:before {
    top: 15px;
    left: 20px; } }
.blog-standar blockquote p {
  color: #fff; }
@media (min-width: 1025px) {
  .blog-standar blockquote p {
    font-size: 30px;
    line-height: 40px;
    font-weight: 300; } }

.blog-post-tags.v2 {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
@media (max-width: 480px) {
  .blog-post-tags.v2 {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
.blog-post-tags.v2 .author {
  padding-right: 15px; }
.blog-post-tags.v2 .blog-tag {
  padding-left: 15px;
  position: relative; }
@media (max-width: 480px) {
  .blog-post-tags.v2 .blog-tag {
    margin-top: 5px;
    margin-bottom: 5px; } }
@media (min-width: 480px) {
  .blog-post-tags.v2 .blog-tag:before {
    border-right: 1px solid #d6d6d6;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); } }

.blog-post-item .slick-dots {
  margin: 0 auto;
  display: table !important;
  padding: 6px 18px;
  border-radius: 999px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  bottom: -19px; }
.blog-post-item .slick-dots li {
  margin: 0; }
.blog-post-item .slick-dots li button:before {
  font-size: 12px; }
.blog-post-item .slick-dotted.slick-slider {
  margin-bottom: 0; }

/*
4.4. Icon-progress
*/
span.star {
  color: #ffb933;
  margin: 0 2px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
span.star:first-child {
  margin-left: 0; }
span.star:last-child {
  color: #bfbfbf; }

span.star:before {
  content: '\f005';
  font-family: FontAwesome; }

/*
4.2. Banner
*/
.banner-callus.spc1 {
  margin-bottom: 50px; }
@media (min-width: 1025px) {
  .banner-callus.spc1 {
    margin-bottom: 78px; } }
.banner-callus.spc2 {
  margin-bottom: 50px; }
@media (min-width: 1025px) {
  .banner-callus.spc2 {
    margin-bottom: 86px; } }
.banner-callus.spc5 {
  margin-top: 30px; }
@media (min-width: 1025px) {
  .banner-callus.spc5 {
    margin-top: -136px; } }

@media (min-width: 1681px) {
  .homepage-banner .row {
    margin: 0 -20px; }
  .homepage-banner [class*="col-"] {
    padding: 0 20px; } }
.homepage-banner.spc1 {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .homepage-banner.spc1 {
    margin-bottom: 76px; } }
@media (max-width: 480px) {
  .homepage-banner.spc1 {
    margin-bottom: 0px; } }
.homepage-banner.spc2 {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .homepage-banner.spc2 {
    margin-bottom: 59px; } }
.homepage-banner.spc3 {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .homepage-banner.spc3 {
    margin-bottom: 125px; } }

.banner-content {
  position: absolute;
  left: 60px;
  top: 50%; }
@media (max-width: 480px) {
  .banner-content {
    top: 15%; } }
.banner-content .banner-title {
  color: #fff;
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 5px; }
.banner-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
  position: relative; }
.banner-content p:before {
  border-bottom: 1px solid #fff;
  bottom: 0;
  content: "";
  position: absolute;
  width: 32px; }

.h-banner-content {
  position: absolute;
  left: 58px;
  top: 113px;
  max-width: 200px; }
.h-banner-content.v2 {
  left: 48px;
  top: 83px;
  max-width: 177px; }
@media (max-width: 1024px) {
  .h-banner-content.v2 {
    top: 40px; } }
.h-banner-content.v3 {
  max-width: unset;
  text-align: center;
  top: 70px; }
@media (max-width: 1366px) {
  .h-banner-content.v3 {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); } }
.h-banner-content.v3 .content-name {
  margin-bottom: 5px; }
.h-banner-content.v3 .content-price {
  margin-bottom: 12px; }
.h-banner-content.v4 {
  max-width: 166px;
  left: 42px;
  top: 82px; }
@media (max-width: 1024px) {
  .h-banner-content.v4 {
    top: 20%; } }
.h-banner-content.v5 {
  top: 70px;
  left: 39px; }
@media (max-width: 1024px) {
  .h-banner-content.v5 {
    top: 20%; } }
.h-banner-content.v5 .content-name {
  margin-bottom: 4px; }
.h-banner-content.v6 {
  text-align: center;
  top: 44px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0); }
.h-banner-content.v6 .content-name {
  margin-bottom: 0; }
.h-banner-content.v6 .content-price {
  margin-bottom: 0px; }
.h-banner-content.v7 {
  max-width: unset;
  text-align: center;
  top: 44px; }
.h-banner-content.v7 .content-name {
  margin-bottom: 0; }
.h-banner-content.v7 .content-price {
  margin-bottom: 4px; }
@media (max-width: 1366px) {
  .h-banner-content.v7 {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); } }
@media (max-width: 1024px) {
  .h-banner-content {
    left: 58px;
    top: 25%; } }
.h-banner-content .content-name {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 13px; }
@media (max-width: 812px) {
  .h-banner-content .content-name {
    font-size: 18px;
    margin-bottom: 5px; } }
.h-banner-content .content-price {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  margin-bottom: 20px; }
@media (max-width: 812px) {
  .h-banner-content .content-price {
    font-size: 14px;
    margin-bottom: 5px; } }
.h-banner-content .content-price .red {
  color: #ff5050;
  font-size: 30px;
  position: relative; }
.h-banner-content .content-price .red:before {
  content: "$";
  position: absolute;
  font-size: 15px;
  font-weight: 500;
  right: -15px; }
@media (max-width: 812px) {
  .h-banner-content .content-price .red {
    font-size: 20px; } }
.h-banner-content .content-price.percent .red:before {
  content: "%";
  position: absolute;
  font-size: 15px;
  font-weight: 500; }
.h-banner-content .btn-banner {
  color: #ff5050;
  font-weight: 500; }
.h-banner-content .btn-banner i {
  margin-left: 15px; }

.banner-img {
  position: relative; }
@media (max-width: 767px) {
  .banner-img {
    margin-bottom: 30px; } }

.pd-banner.v2 {
  padding-top: 27px; }

/*
4.6. Slide

*/
.ads-group {
  margin-bottom: 40px;
  padding-top: 6px; }
@media (max-width: 480px) {
  .ads-group {
    margin-bottom: 0; } }
.ads-group .row {
  margin: 0 -5px; }
.ads-group [class*="col-"] {
  padding: 0 5px; }
@media (min-width: 1025px) {
  .ads-group .set-w {
    width: 23.41%; } }
.ads-group .set-flex {
  padding-left: 0; }
@media (min-width: 1025px) {
  .ads-group .set-flex {
    width: 76.59%; } }
@media (min-width: 1025px) {
  .ads-group .set-w2 {
    width: 76.5%; }
  .ads-group .set-w2 [class*="col-"]:first-child {
    width: 67.8%; }
  .ads-group .set-w2 [class*="col-"]:last-child {
    width: 32.2%; } }
.ads-group .slide {
  border-radius: 10px;
  overflow: hidden; }
@media (max-width: 480px) {
  .ads-group .slide {
    margin-right: 0;
    margin-bottom: 30px; } }
.ads-group.v2 {
  padding-top: 30px; }
.ads-group.v2 .row {
  margin: 0 -8px; }
.ads-group.v2 [class*="col-"] {
  padding: 0 8px; }
@media (min-width: 767px) {
  .ads-group.v2 [class*="col-sm-8"]:first-child {
    width: 66.1016949%; }
  .ads-group.v2 [class*="col-sm-4"]:last-child {
    width: 33.8983051%; } }
.ads-group.v2 .banner-img-item:first-child {
  margin-bottom: 16px; }
.ads-group.v3 .slick-dotted.slick-slider {
  margin-bottom: 0; }
.ads-group.nospc {
  padding-top: 6px; }

.homeclean-slider .slider-img {
  position: relative; }
.homeclean-slider .slider-content h1 {
  color: var(--engoc-color-main1);
    font-size: 150px;
    font-weight: 500;
    margin-bottom: 50px; }
@media (max-width: 768px) {
  .homeclean-slider .slider-content h1 {
    font-size: 80px;
    margin-bottom: 30px; } }
@media (max-width: 480px) {
  .homeclean-slider .slider-content h1 {
    font-size: 30px;
    margin-bottom: 10px; } }
.homeclean-slider .slider-content .btn-shop {
  width: 196px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  color: var(--engoc-color-main1);
    background: transparent;
    border: 2px solid var(--engoc-color-main1);
      font-size: 16px;
      font-weight: 500;
      display: inline-block; }
.homeclean-slider .slider-content .btn-shop:hover {
  background: var(--engoc-color-main1);
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    border-color: #eb5050; }
@media (max-width: 480px) {
  .homeclean-slider .slider-content .btn-shop {
    width: 130px;
    font-size: 12px;
    height: 30px;
    line-height: 30px; } }
.homeclean-slider .slick-dots {
  top: 100%;
  -webkit-transform: matrix(1, 0, 0, 1, 0, -50);
  transform: matrix(1, 0, 0, 1, 0, -50); }
.homeclean-slider .slick-dots li button:before {
  font-size: 10px; }

.slider-homesimple {
  background: #f8f8f8; }
.slider-homesimple .slider-img {
  position: relative;
  padding-bottom: 81px; }
.slider-homesimple .slider-content {
  background: #fff;
  bottom: 0;
  border-bottom: 56px solid #ffffff;
  border-top: 46px solid #ffffff;
  min-width: 555px;
  position: absolute;
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0px);
  transform: translateX(-50%) translateY(0px);
  margin: 0 auto;
  z-index: 4; }
.slider-homesimple .slider-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px; }
.slider-homesimple .slider-content a {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid; }
.slider-homesimple .slick-dotted.slick-slider {
  margin-bottom: 158px; }
@media (max-width: 767px) {
  .slider-homesimple .slick-dotted.slick-slider {
    margin-bottom: 100px; } }
.slider-homesimple .slick-dots {
  bottom: -60px; }
.slider-homesimple .slick-dots li {
  margin: 0 17px;
  padding: 0 6px; }
.slider-homesimple .slick-dots li a {
  font-size: 14px;
  font-weight: 500;
  color: #cfcfcf; }
.slider-homesimple .slick-dots .slick-active {
  border-bottom: 1px solid var(--engoc-color-main1); }
.slider-homesimple .slick-dots .slick-active a {
  color: var(--engoc-color-main1); }
.slider-homesimple .slick-prev:before {
  content: 'p'; }
.slider-homesimple .slick-next:before {
  content: 'n'; }
.slider-homesimple .slick-prev:before,
.slider-homesimple .slick-next:before {
  color: var(--engoc-color-main1);
    font-family: "Helvetica Neue LT Std", sans-serif;
    font-size: 14px;
    font-weight: 500; }
.slider-homesimple .slick-next {
  border-top: 1px solid var(--engoc-color-main1);
    right: -40px;
    width: 86px;
    text-align: right;
    text-transform: uppercase;
    z-index: 3; }
.slider-homesimple .slick-prev {
  border-top: 1px solid var(--engoc-color-main1);
    left: -40px;
    width: 86px;
    text-align: left;
    text-transform: uppercase;
    z-index: 3; }

.btn-shop {
  width: 196px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  color: var(--engoc-color-main1);
    background: transparent;
    border: 2px solid var(--engoc-color-main1);
      font-size: 16px;
      font-weight: 500;
      display: inline-block; }
.btn-shop.v2 {
  border: 2px solid #fff;
  color: #fff;
  width: 165px; }
@media (max-width: 480px) {
  .btn-shop.v2 {
    width: 130px; } }
.btn-shop:hover {
  background: var(--engoc-color-main1);
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    border-color: #eb5050; }
@media (max-width: 480px) {
  .btn-shop {
    width: 130px;
    font-size: 12px;
    height: 30px;
    line-height: 30px; } }

.slider-homecate .slick-dots {
  top: 100%;
  -webkit-transform: matrix(1, 0, 0, 1, 0, -60);
  transform: matrix(1, 0, 0, 1, 0, -60); }
@media (max-width: 768px) {
  .slider-homecate .slick-dots {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -30);
    transform: matrix(1, 0, 0, 1, 0, -30); } }
.slider-homecate .slick-dots li button:before {
  font-size: 10px; }
.slider-homecate .slick-next {
  right: 40px;
  background: url(../img/Long-Arrow-right-50.png) no-repeat center;
  width: 50px;
  height: 50px;
  line-height: 50px; }
.slider-homecate .slick-next:before {
  content: none; }
@media (max-width: 767px) {
  .slider-homecate .slick-next {
    right: 5px; } }
.slider-homecate .slick-prev {
  left: 40px;
  background: url(../img/Long-Arrow-Left-50.png) no-repeat center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 100; }
.slider-homecate .slick-prev:before {
  content: none; }
@media (max-width: 767px) {
  .slider-homecate .slick-prev {
    left: 5px; } }
.slider-homecate.slick-dotted.slick-slider {
  margin-bottom: 0; }
.slider-homecate .slider-img {
  position: relative; }

.homecate-cosre-content {
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 43%; }
@media (max-width: 1024px) {
  .homecate-cosre-content {
    text-align: center;
    top: 25%; } }
.homecate-cosre-content.left {
  left: 50%; }
.homecate-cosre-content.center {
  left: 50%;
  text-align: center; }

.homecate-cosre-title-wrap .home-cate-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em; }
.homecate-cosre-title-wrap .homecate-title-block {
  text-transform: capitalize;
  font-size: 50px;
  padding-top: 20px;
  padding-bottom: 30px;
  margin-bottom: 48px;
  position: relative; }
@media (max-width: 767px) {
  .homecate-cosre-title-wrap .homecate-title-block {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px; } }
.homecate-cosre-title-wrap .homecate-title-block.left:before {
  border-bottom: 1px solid var(--engoc-color-main1);
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
    width: 67px; }
@media (max-width: 1024px) {
  .homecate-cosre-title-wrap .homecate-title-block.left:before {
    border-bottom: 1px solid var(--engoc-color-main1);
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      content: "";
      position: absolute;
      width: 67px; } }
.homecate-cosre-title-wrap .homecate-title-block.center:before {
  border-bottom: 1px solid var(--engoc-color-main1);
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    position: absolute;
    width: 67px; }
.homecate-cosre-title-wrap .homecate-title-block.right:before {
  border-bottom: 1px solid var(--engoc-color-main1);
    bottom: 0;
    right: 0;
    content: "";
    position: absolute;
    width: 67px; }
@media (max-width: 767px) {
  .homecate-cosre-title-wrap .homecate-title-block.right:before {
    border-bottom: 1px solid var(--engoc-color-main1);
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      content: "";
      position: absolute;
      width: 67px; } }

.cosre-bg-parallax [class*="parallax_"] {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 100vh; }

.parallax_1 {
  background-image: url(../img/parallax_1.jpg); }

.parallax_2 {
  background-image: url(../img/parallax_2.jpg);
  height: 100vh; }

.parallax_3 {
  background-image: url(../img/parallax_3.jpg);
  height: 100vh; }

.parallax_4 {
  background-image: url(../img/parallax_4.jpg);
  height: 100vh; }

.cosre-bg-parallax .cosre-title-wrap {
  padding-top: 60px; }
.cosre-bg-parallax .cosre-title-wrap .subtitle-with-desc {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3em; }
.cosre-bg-parallax .cosre-title-wrap .subtitle-with-desc.c-black {
  color: black; }
.cosre-bg-parallax .cosre-title-wrap .title-block {
  color: #fff;
  font-size: 80px;
  margin-top: 5px;
  margin-bottom: 51px;
  padding-bottom: 29px;
  position: relative; }
.cosre-bg-parallax .cosre-title-wrap .title-block.center:before {
  border-bottom: 1px solid #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 85px; }
.cosre-bg-parallax .cosre-title-wrap .title-block.c-black {
  color: black; }
.cosre-bg-parallax .cosre-title-wrap .title-block.right:before {
  border-bottom: 1px solid var(--engoc-color-main1);
    bottom: 0;
    right: 0;
    content: "";
    position: absolute;
    width: 85px; }
@media (max-width: 767px) {
  .cosre-bg-parallax .cosre-title-wrap .title-block.right:before {
    border-bottom: 1px solid var(--engoc-color-main1);
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      content: "";
      position: absolute;
      width: 85px; } }
.cosre-bg-parallax .cosre-title-wrap .title-block.left:before {
  border-bottom: 1px solid var(--engoc-color-main1);
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
    width: 85px; }
@media (max-width: 767px) {
  .cosre-bg-parallax .cosre-title-wrap .title-block.left:before {
    border-bottom: 1px solid var(--engoc-color-main1);
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      content: "";
      position: absolute;
      width: 85px; } }
.cosre-bg-parallax .cosre-title-wrap .title-block.custom-font-2 {
  font-family: "Mr Dafoe", cursive; }
.cosre-bg-parallax .cosre-title-wrap .title-block.custom-font {
  font-family: "Playfair Display", serif; }
.cosre-bg-parallax .cosre-title-wrap .btn-shop.ver2 {
  background: #fff;
  color: var(--engoc-color-main1);
    border: 0; }
.cosre-bg-parallax .cosre-title-wrap .btn-shop.ver2:hover {
  background: var(--engoc-color-main1);
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }
.cosre-bg-parallax .cosre-title-wrap .btn-shop.ver2.c-black {
  color: black; }

.parallax_3 .cosre-title-wrap .title-block {
  font-weight: 500; }

.box-center {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
@media (min-width: 1025px) {
  .box-center.v2 {
    padding-top: 50px; } }

@media (min-width: 1025px) {
  .header-parallax a {
    color: #fff; }
  .header-parallax a:hover {
    color: #777; } }
@media (min-width: 1025px) {
  .header-parallax .sticky-header .text {
    color: #fff; } }

.scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }
@media (max-width: 767px) {
  .scroll {
    display: none; } }

.scroll-down {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  position: relative;
  top: -145px;
  right: auto;
  z-index: 13; }
.scroll-down:after {
  content: url(../img/scrolldown.png);
  -webkit-animation-name: dropdown;
  animation-name: dropdown;
  position: absolute;
  right: 39px;
  top: 30px;
  display: block; }

.fullw-slider .slider-img {
  position: relative; }
.fullw-slider .slider-content h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 55px; }
@media (max-width: 480px) {
  .fullw-slider .slider-content h1 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 24px; } }
.fullw-slider .slider-content .fullw-susbtitle {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  letter-spacing: 0.5em; }
.fullw-slider .slider-content .fullw-susbtitle.center:after {
  border-bottom: 1px solid #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 59px; }
@media (max-width: 480px) {
  .fullw-slider .slider-content .fullw-susbtitle {
    display: none; } }
.fullw-slider.slick-dotted.slick-slider {
  margin-bottom: 0; }
.fullw-slider .slick-dots {
  bottom: unset;
  top: 46%;
  width: 70px;
  right: 0;
  left: auto;
  text-align: left;
  -webkit-transform: matrix(1, 0, 0, 1, -52, -45);
  transform: matrix(1, 0, 0, 1, -52, -45); }
.fullw-slider .slick-dots li {
  display: block;
  margin: 0 0 26px 30px;
  width: unset;
  height: unset; }
.fullw-slider .slick-dots li:hover {
  margin-left: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s; }
.fullw-slider .slick-dots li:hover a:after {
  width: 68px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s; }
.fullw-slider .slick-dots li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5); }
.fullw-slider .slick-dots li a:after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  top: 45%;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  width: 37px;
  margin-left: 8px; }
.fullw-slider .slick-dots li.slick-active {
  margin-left: 0; }
.fullw-slider .slick-dots li.slick-active a {
  color: white; }
.fullw-slider .slick-dots li.slick-active a:after {
  width: 68px; }

.e-slide-img {
  position: relative; }
.e-slide-img img {
  width: 100%; }
@media (min-width: 1025px) {
  .e-slide-img.v2 img {
    max-width: unset; } }

.slide-content {
  position: absolute; }
.slide-content.v1 {
  top: 171px;
  left: 65px;
  max-width: 260px; }
@media (max-width: 1024px) {
  .slide-content.v1 {
    top: 10%; } }
@media (max-width: 767px) {
  .slide-content.v1 {
    left: 45px; } }
.slide-content.v2 {
  top: 146px;
  left: 110px; }
@media (min-width: 480px) {
  .slide-content.v2 {
    max-width: 400px; } }
@media (max-width: 1024px) {
  .slide-content.v2 {
    top: 10%; } }
@media (max-width: 767px) {
  .slide-content.v2 {
    left: 45px; } }
@media (min-width: 480px) {
  .slide-content.v4 {
    margin-top: -17px; } }
.slide-content .cate {
  color: #898e92;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 5px; }
@media (min-width: 480px) {
  .slide-content .cate {
    margin-bottom: 16px; } }
.slide-content .cate.v2 {
  letter-spacing: 0em;
  color: #999999; }
@media (min-width: 480px) {
  .slide-content .cate.v2 {
    margin-bottom: 10px;
    font-size: 20px; } }
.slide-content .cate.white {
  color: #fff; }
.slide-content .sale {
  color: #898e92;
  font-weight: 300;
  margin-bottom: 5px; }
@media (min-width: 480px) {
  .slide-content .sale {
    font-size: 25px;
    line-height: 45px;
    margin-bottom: 40px; } }
.slide-content .sale .red {
  color: #ff0000; }
.slide-content .sale.v2 {
  color: #999999;
  font-weight: 500; }
@media (min-width: 480px) {
  .slide-content .sale.v2 {
    font-size: 16px;
    margin-bottom: 42px; }
  .slide-content .sale.v2 .red {
    font-size: 30px; } }
.slide-content .sale.v3 {
  color: #898e92; }
@media (min-width: 480px) {
  .slide-content .sale.v3 {
    font-size: 30px; } }
.slide-content .sale.white {
  color: #fff; }
.slide-content h3 {
  color: #2f3337;
  font-weight: 300;
  margin-bottom: 5px; }
@media (min-width: 480px) {
  .slide-content h3 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 9px; } }
.slide-content h3.v2 {
  color: #333333; }
@media (min-width: 480px) {
  .slide-content h3.v2 {
    margin-bottom: 12px; } }
@media (min-width: 480px) {
  .slide-content h3.v3 {
    max-width: 350px;
    margin-bottom: 25px; } }
@media (min-width: 767px) {
  .slide-content h3.v4 {
    font-size: 50px; } }
.slide-content h3.white {
  color: #fff; }
.slide-content .slide-btn {
  font-size: 14px;
  color: #fefefe;
  border-radius: 999px;
  display: inline-block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
@media (min-width: 480px) {
  .slide-content .slide-btn {
    font-size: 16px;
    width: 177px;
    height: 50px;
    line-height: 50px; } }
.slide-content .slide-btn i {
  margin-left: 5px; }
@media (min-width: 480px) {
  .slide-content .slide-btn i {
    margin-left: 15px; } }

.e-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden; }
@media (max-width: 480px) {
  .e-slide {
    margin-bottom: 30px; } }
.e-slide .slick-slide img {
  display: inline-block; }
.e-slide .slick-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0); }
@media (min-width: 767px) {
  .e-slide .slick-dots {
    bottom: 36px; } }
.e-slide.v2 .slick-dots {
  bottom: 0; }
@media (min-width: 767px) {
  .e-slide.v2 .slick-dots {
    bottom: 20px; } }
.e-slide.v3.slick-slide img {
  width: 100%; }
.e-slide.v3 .slick-dots {
  bottom: 0; }
@media (min-width: 767px) {
  .e-slide.v3 .slick-dots {
    bottom: 10px; } }

.slide-fullw {
  margin-bottom: 50px; }
@media (max-width: 767px) {
  .slide-fullw .container {
    padding-right: 50px;
    padding-left: 50px; } }
.slide-fullw .slick-arrow {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
@media (min-width: 480px) {
  .slide-fullw .slick-arrow {
    width: 53px;
    height: 53px; } }
.slide-fullw .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.75); }
.slide-fullw .slick-arrow i {
  line-height: 30px; }
@media (min-width: 480px) {
  .slide-fullw .slick-arrow i {
    line-height: 53px;
    font-size: 22px; } }
.slide-fullw .prev {
  display: block;
  position: absolute;
  z-index: 3;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
@media (min-width: 1681px) {
  .slide-fullw .prev {
    left: 100px; } }
.slide-fullw .next {
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3; }
@media (min-width: 1681px) {
  .slide-fullw .next {
    right: 100px; } }

/*
4.5. Popup
*/
.modal-body .input-group {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  width: 100%; }

.modal-content {
  border-radius: 0px; }

.modal-header {
  border: none; }

.modal-title {
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  color: #333; }
.modal-title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: var(--engoc-color-main1);
    left: 50%;
    margin-left: -40px;
    bottom: -10px; }

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  outline: none; }

.button_search {
  border: none;
  background: none;
  width: auto;
  height: auto;
  color: #333; }
.button_search:hover {
  outline: none;
}
.button_search:focus {
  outline: none;
  background: none; }

.input-group-btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 0px;
  width: 40px;
  line-height: 34px;
  z-index: 100; }

.modal-body {
  padding: 0 50px; }

.close-popup {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #333333;
  cursor: pointer; }
@media (min-width: 767px) {
  .close-popup {
    font-size: 30px; } }

.modal-header .close {
  margin-top: -15px;
  margin-right: -15px; }

.quickview-wrapper {
  background: rgba(0,0,0,.3);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  text-align: center; }
.quickview-wrapper.open {
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8); }
.quickview-wrapper .quick-modal {
  max-width: 920px;
  width: 90%;
  margin: 100px auto 0px;
  background: #fff;
  text-align: left;
  position: relative;
  border-radius: 10px;
  display: none; }
.quickview-wrapper .quick-modal.show {
  height: auto; }
.quickview-wrapper .quick-modal #quickview-content {
  padding: 32px 34px; }
@media (min-width: 1681px) {
  .quickview-wrapper .quick-modal #quickview-content [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; }
  .quickview-wrapper .quick-modal #quickview-content .row {
    margin-left: -20px;
    margin-right: -20px; } }
.quickview-wrapper .quick-modal #quickview-content .quickview-close {
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  width: 33px;
  height: 33px;
  overflow: hidden;
  border: 2px solid #ededed;
  border-radius: 50%; }
.quickview-wrapper .quick-modal #quickview-content .quickview-close:before {
  height: 1px; }
.quickview-wrapper .quick-modal #quickview-content .quickview-close:after {
  height: 1px; }
.quickview-wrapper .quick-modal #quickview-content .close-btn:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }
.quickview-wrapper .quick-modal #quickview-content .close-btn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.quickview-wrapper .quick-modal #quickview-content .close-btn::before, .quickview-wrapper .quick-modal #quickview-content .close-btn::after {
  content: '';
  position: absolute;
  width: 9px;
  top: 49%;
  left: 37%;
  background: #bcbcbc; }
/*       .quickview-wrapper .quick-modal #quickview-content .product-img {
border: 1px solid #e9e9e9;
border-radius: 10px; } */
.quickview-wrapper .quick-modal #quickview-content .product-img .main-img a {
  width: 100%; }
.quickview-wrapper .quick-modal #quickview-content .product-img img {

  width: 100%; }
.quickview-wrapper .quick-modal #quickview-content .slick-dots {
  bottom: -20px;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  height: 39px;
  line-height: 31px;
  border: 1px solid #eaeaea;
  margin: 0 auto;
  border-radius: 999px; }
@media (min-width: 1025px) {
  .quickview-wrapper .quick-modal #quickview-content .slick-dots {
    display:none !important;
    width: 98px; } }
.quickview-wrapper .quick-modal #quickview-content .slick-dots li {
  margin: 0; }
.quickview-wrapper .quick-modal #quickview-content .slick-dots li button:before {
  font-size: 12px; }
.quickview-wrapper .quick-modal #quickview-content .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid;
  text-align: center;
  line-height: 38px;
  cursor: pointer; }
.quickview-wrapper .quick-modal #quickview-content .slick-arrow i {
  font-size: 17px; }
.quickview-wrapper .quick-modal #quickview-content .prev {
  display: block;
  position: absolute;
  z-index: 1000;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
.quickview-wrapper .quick-modal #quickview-content .next {
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000; }

/*
4.8. 404 Error page
*/
.error-page {
  padding: 15px;
  margin: 30px 0; }
@media (min-width: 1025px) {
  .error-page {
    padding-bottom: 44px;
    padding-top: 62px;
    margin: 29px 60px 110px 60px; } }
@media (min-width: 1681px) {
  .error-page {
    margin: 29px 120px 110px 120px; } }

.error-img {
  margin-bottom: 10px; }

.error-title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 49px; }

.btn-back {
  font-size:12px;
  font-weight:600;
  background: var(--engoc-primary-color);
    color: #fff;
    width: 225px;
    height: 50px;
    line-height: 50px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    border-radius: 999px;
    margin: 0 auto;
    margin-top: 23px; }
.btn-back:hover {

  background: var(--engoc-color-main1);
    color: #fff;
    }
.btn-back i {
  margin-left: 8px; }

.searchform.full {
  position: relative;
  margin-bottom: 28px; }
@media (min-width: 768px) {
  .searchform.full {
    width: 581px;
    margin: 0 auto;
    margin-bottom: 28px; } }
.searchform.full input {
  height: 62px;
  border-radius: 999px;
  border: 2px solid #eaeaea;
  padding-left: 40px; }
.searchform.full .input-group-btn {
  padding: 0;
  width: 50px;
  top: 6px;
  right: 5px; }
.searchform.full .input-group-btn .button_search {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  border-radius: 50%;
  background: #333333; }

.vertical-divider {
  display: table;
  text-align: center;
  height: 58px;
  width: 100%;
  font-weight: 500;
  color: #999; }
.vertical-divider .center-element {
  position: relative;
  display: table-cell;
  vertical-align: middle; }
.vertical-divider .center-element:before, .vertical-divider .center-element:after {
  position: absolute;
  content: "";
  width: 1px;
  left: 50%;
  border-left: 1px solid #e0e0e0; }
.vertical-divider .center-element:before {
  bottom: 17px;
  top: 0;
  margin-bottom: 20px; }
.vertical-divider .center-element:after {
  top: 17px;
  bottom: 0;
  margin-top: 20px; }

/*
4.7. Contact page

*/
.contact-title {
  font-size: 14px;
  font-weight: 400; }
.contact-title.v2 {
  font-size: 12px;
  line-height:30px;
  color:#c2c2c2;
}
.contact-title.spc { 
  font-size:12px;
  line-height:30px;
  color:#c2c2c2; }
.footer-about .fs-18{
  font-size:18px;
  color:#3e3e3e;
}
.footer-about .fs-14{
  font-size:14px;
  color:#8f8f8f;
  font-weight:300;
}
.footer-about .icon{
  float: left;
  padding-right: 30px;
  padding-top: 10px;
}
.footer-about .text{
  float: left;
}
.footer-about.inline-block{
  width:100%;
}
.lh-30{
  line-height:30px;
}
.e-contact .info h3{
  font-weight:400;
}
.e-contact .info p{
  color:#999999;
}
.contact-info p {
  line-height: 26px;
  color: #666666; }
@media (min-width: 1025px) {
  .contact-info p {
    max-width: 560px; } }

@media (min-width: 1025px) {
  .pdl {
    padding-left: 40px; } }
.e-contact .map {  
  height: 400px;
  margin-bottom: 20px; }
@media (min-width: 1025px) {
  .e-contact .map {
    height: 705px;
  } }
.e-contact .form-control {
  margin-bottom: 26px; }
.e-contact input {
  height: 40px;
  border-radius: 999px;
  border: 1px solid #eaeaea;
  padding-left: 20px; }
.e-contact input::-webkit-input-placeholder {
  color: #999999;
  font-size: 12px; }
.e-contact input:-moz-placeholder {
  color: #999999;
  font-size: 12px; }
.e-contact input::-moz-placeholder {
  color: #999999;
  font-size: 12px; }
.e-contact input:-ms-input-placeholder {
  color: #999999;
  font-size: 12px; }
.e-contact textarea {
  border: 1px solid #eaeaea;
  padding-left: 20px;
  padding-top: 15px;
  border-radius: 0;
  resize: none; }
.e-contact textarea::-webkit-input-placeholder {
  color: #999999;
  font-size: 14px; }
.e-contact textarea:-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.e-contact textarea::-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.e-contact textarea:-ms-input-placeholder {
  color: #999999;
  font-size: 14px; }
.e-contact textarea.form-control {
  margin-bottom: 10px; }
.e-contact .btn-submit {
  width: 130px;
  height: 40px;
  line-height: 40px;
  border-radius: 999px;
  font-size: 12px;
  padding: 0;
  border: 0;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--engoc-color-main1);
    background: var(--engoc-color-main2);
      transition:all .3s ease;}
.e-contact .btn-submit:hover {

  background: var(--engoc-primary-color);
    font-weight: 600;
    color:#fff;
    }

.banner-callus p {
  color: #fff;
  font-weight: 300;
  font-size: 20px; }
@media (min-width: 480px) {
  .banner-callus p {
    font-size: 50px;
    margin-bottom: 14px; } }
.banner-callus .btn-callus {
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff; }
@media (min-width: 480px) {
  .banner-callus .btn-callus {
    font-size: 16px;
    padding-bottom: 6px; } }
.banner-callus.v2 p {
  color: #333; }
.banner-callus.v2 .btn-callus {
  color: #ff5050;
  border-bottom: 1px solid #ff5050; }

/*
4.1. About page
*/


.aubout-us h4{
  font-weight:500;
}
.aubout-us p{
  color:#999999;
  line-height:27px;
  max-width: 300px;
  margin: auto;
}
.aubout-us a{

  width:40px;
  height:40px;
  border-radius:50%;
  line-height:40px;
  transform: rotate(45deg);
  font-size:10px;
  transition: .4s;

}
.aubout-us a:hover{
  font-size:12px;
}
.aubout-us .a1{
  background:#ebf3ef;
  color:var(--engoc-primary-color);
    }
.aubout-us .a2{
  background:#f3ebeb;
  color:#d01749;
}
.aubout-us .a3{
  background:#f3f3f3;
  color:#3c3c3c;
}
.choose-us h4{
  font-weight:500;
  color:var(--engoc-primary-color);
    }
.choose-us p{
  color:#999999;
  line-height:27px;
}
.choose-us{
  background:#f6f8f7;
  padding-top:70px;
  padding-bottom:70px;
  margin-top:50px;
}

.about-title {
  font-size: 20px;
  font-weight: bold; }
.about-title.spc {
  margin-bottom: 28px; }
.about-title.v2 {
  font-size: 18px; }
.about-title.v3 {
  font-size: 24px; }
.about-title.v3.spc {
  margin-bottom: 40px;
  padding-top: 40px; }
@media (min-width: 1025px) {
  .choose-us{
    padding-top:120px;
    padding-bottom:120px;
    margin-top:100px;
    margin-bottom:30px;
  }
  .about-title.v3.spc {
    margin-bottom: 84px;
    padding-top: 80px; } }

.about-desc {
  line-height: 26px; }
.about-desc.spc {
  margin-bottom: 82px; }
@media (max-width: 767px) {
  .about-desc.spc {
    margin-bottom: 30px; } }

.about-element img {
  margin-bottom: 24px; }
.about-element h3 {
  margin-bottom: 24px; }
.about-element p {
  line-height: 26px; }
@media (min-width: 1025px) {
  .about-element p {
    max-width: 395px;
    margin: 0 auto; } }

@media (min-width: 1681px) {
  .aboutus [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; }
  .aboutus .row {
    margin-left: -20px;
    margin-right: -20px; } }
@media (min-width: 1025px) {
  .choose-us .pdr{
    padding-right:95px
  }
  .choose-us .pdl{
    padding-left:95px
  }
}

/* .about-img, .banner-img2, .team-img {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 10px;
z-index: 0; } */
.about-img.spc, .spc.banner-img2, .spc.team-img {
  margin-bottom: 40px; }
.about-img.spc2, .spc2.banner-img2, .spc2.team-img {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .about-img.spc2, .spc2.banner-img2, .spc2.team-img {
    margin-bottom: 78px; } }
.about-img img, .banner-img2 img, .team-img img {
  -webkit-transition: all 1s linear;
  transition: all 1s linear; }
.about-img img:hover, .banner-img2 img:hover, .team-img img:hover {
  display: block;
  z-index: 100;
  -webkit-transform: scale(1.25);
  transform: scale(1.25); }

.about-content .row.pd1 {
  padding-top: 15px; }
@media (max-width: 767px) {
  .about-content .row.pd1 [class*="col-"] {
    margin-bottom: 30px; } }
.about-content .row.pd2 {
  padding-top: 40px;
  padding-bottom: 40px; }
@media (min-width: 1681px) {
  .about-content .row.pd2 {
    padding-bottom: 167px; } }
@media (min-width: 1025px) {
  .about-content .row.pd2 {
    padding-top: 111px; } }
@media (max-width: 767px) {
  .about-content .row.pd2 [class*="col-"] {
    margin-bottom: 15px; } }

.team .owl-nav > div {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--engoc-color-main1);
    font-size: 22px;
    left: 0;
    position: absolute;
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }
@media (max-width: 1024px) {
  .team .owl-nav > div {
    opacity: 1; } }
@media (max-width: 480px) {
  .team .owl-nav > div {
    top: 34%; } }
.team .owl-nav > div.owl-prev {
  right: auto;
  left: 0; }
.team .owl-nav > div.owl-next {
  right: 0;
  left: auto; }
.team .owl-theme .owl-nav [class*=owl-] {
  background: #fff;
  color: var(--engoc-color-main1);
    margin: 0;
    padding: 0;
    font-size: 22px;
    border-radius: 0; }

.team-img {
  margin-bottom: 33px; }

.team-info .team-name {
  font-size: 16px;
  margin-bottom: 5px; }
.team-info .team-career {
  color: #999999;
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 16px; }
.team-info .team-career:before {
  border-bottom: 1px solid transparent;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 68px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
  background: linear-gradient(90deg, #c467f5, #53f3ff);
  border: 0;
  bottom: 0;
  left: 0; }
.team-info .team-desc {
  color: #666666;
  line-height: 26px; }

.agency-title {
  font-size: 35px;
  position: relative;
  padding-bottom: 55px;
  padding-top: 50px;
  margin-bottom: 50px; }
.agency-title:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 67px; }
.agency-title a {
  font-weight: 600;
  position: relative;
  padding-bottom: 1px; }
.agency-title a:before {
  border-bottom: 3px solid var(--engoc-color-main1);
    bottom: 6px;
    left: 0;
    content: "";
    position: absolute;
    width: 100%; }
@media (min-width: 1500px) {
  .agency-title {
    width: 982px;
    margin: 0 auto;
    padding-top: 118px; } }
@media (max-width: 480px) {
  .agency-title {
    font-size: 19px; } }

.agency-container {
  padding-top: 30px;
  padding-bottom: 30px; }
@media (min-width: 1500px) {
  .agency-container {
    padding: 75px 188px 140px 190px;
    width: 100%; }
  .agency-container .row {
    margin: 0; }
  .agency-container [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }
  .agency-container.v2 {
    padding: 102px 139px 160px 190px; }
  .agency-container.v3 {
    padding: 80px 221px 118px 380px; }
  .agency-container.v3 .shop-content {
    padding-right: 53px; } }

@media (min-width: 768px) {
  .agency-clm-right {
    text-align: right;
    padding-top: 147px; } }
@media (min-width: 1025px) {
  .agency-clm-right.ver2 {
    padding-top: 378px; } }

.agency-title-noline {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 45px; }
.agency-title-noline.ver2 {
  font-size: 22px;
  margin-bottom: 0; }
@media (max-width: 480px) {
  .agency-title-noline.ver2 {
    font-size: 19px; } }
.agency-title-noline.ver3 {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 36px; }
@media (min-width: 1025px) {
  .agency-title-noline.ver3 {
    max-width: 514px; } }

.agency-content {
  padding-bottom: 50px;
  border-bottom: 1px solid #eaeaea; }
@media (min-width: 1025px) {
  .agency-content {
    padding-bottom: 90px; } }
.agency-content p {
  color: #a4a4a4; }
@media (max-width: 1024px) {
  .agency-content p {
    margin-bottom: 30px; } }

.agency-img {
  margin: 0 auto;
  padding: 40px 0; }
@media (min-width: 1025px) {
  .agency-img {
    padding: 80px 0; } }

.agency-title-line {
  padding-bottom: 32px;
  position: relative;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 40px; }
.agency-title-line:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 67px; }
@media (min-width: 1025px) {
  .agency-title-line {
    margin-bottom: 79px; } }
@media (max-width: 480px) {
  .agency-title-line {
    font-size: 25px; } }

.heading-top {
  margin-bottom: 40px; }
.heading-top i {
  background: #fb5757;
  color: #fff;
  display: inline-block;
  height: 74px;
  line-height: 74px;
  width: 74px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  margin-right: 19px; }

.agency-service {
  padding-bottom: 50px;
  border-bottom: 1px solid #eaeaea; }
.agency-service p {
  color: #a4a4a4; }
@media (min-width: 1025px) {
  .agency-service p {
    max-width: 340px; } }
@media (max-width: 1024px) {
  .agency-service p {
    margin-bottom: 30px; } }
@media (min-width: 1025px) {
  .agency-service {
    padding-bottom: 117px; } }

.agency-client .owl-theme .client-item {
  text-align: center; }

.agency-client .owl-carousel .owl-item img {
  display: block;
  width: initial;
  margin: 0 auto; }

.agency-client {
  padding: 50px 0; }
@media (min-width: 1025px) {
  .agency-client {
    padding-top: 93px;
    padding-bottom: 100px; } }

.brand-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  position: relative;
  padding-bottom: 46px;
  margin-bottom: 45px; }
.brand-title:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 67px; }
@media (max-width: 480px) {
  .brand-title {
    padding-bottom: 20px;
    margin-bottom: 20px; } }

.shop-content p {
  color: #a4a4a4;
  line-height: 24px; }
@media (min-width: 1500px) {
  .shop-content p {
    max-width: 549px; } }
.shop-content.ver2 a {
  color: #a4a4a4;
  line-height: 24px;
  display: block; }
.shop-content.ver2 a:hover {
  color: #eb5050; }
@media (min-width: 1024px) {
  .shop-content.ver2 {
    width: 195px;
    float: left;
    margin-right: 96px; } }
.shop-content.ver2 p {
  line-height: 24px; }
@media (min-width: 1024px) {
  .shop-content.ver2 p {
    max-width: 140px; } }
@media (max-width: 1024px) {
  .shop-content.ver2 {
    margin-top: 30px;
    margin-bottom: 30px; } }
@media (max-width: 767px) {
  .shop-content {
    margin-bottom: 30px; } }

.shop-social {
  margin-top: 64px; }
.shop-social a {
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background: #fff;
  border: 2px solid var(--engoc-color-main1);
    text-align: center;
    border-radius: 50%;
    margin-right: 15px; }
.shop-social a i {
  font-size: 18px; }

.shop-title {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 17px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 30px; }

@media (min-width: 1025px) {
  .about-shop-ver1 {
    padding-bottom: 100px; } }

.info-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 35px;
  position: relative;
  margin-bottom: 68px;
  letter-spacing: 0.3em; }
.info-title:before {
  border-bottom: 1px solid #6deee0;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 67px; }
@media (max-width: 767px) {
  .info-title {
    padding-bottom: 20px;
    margin-bottom: 20px; } }

.info-desc {
  font-size: 35px;
  font-weight: 500; }
@media (min-width: 1025px) {
  .info-desc {
    max-width: 610px; } }
@media (max-width: 767px) {
  .info-desc {
    font-size: 20px; } }

.design-tag a {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  margin-right: 40px;
  margin-bottom: 30px; }
@media (max-width: 767px) {
  .design-tag a {
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 16px; } }

.container-design {
  padding-top: 50px;
  padding-bottom: 50px; }
@media (min-width: 1500px) {
  .container-design {
    padding: 79px 380px 65px 190px;
    width: 100%; }
  .container-design .row {
    margin-left: 0;
    margin-right: 0; }
  .container-design [class*="col-"] {
    padding-right: 0;
    padding-left: 0; } }
@media (min-width: 1500px) {
  .container-design.ver2 {
    padding: 0 190px 109px 380px; } }
@media (min-width: 1025px) {
  .container-design.ver2 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .container-design.ver2 .row .flex-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    text-align: right; } }
.container-design .design-content {
  padding-top: 5px; }
@media (min-width: 1025px) {
  .container-design .design-content {
    padding-left: 80px; } }
@media (max-width: 1024px) {
  .container-design .design-content {
    margin-top: 30px; } }
.container-design .design-content p {
  color: #a4a4a4;
  line-height: 24px; }
.container-design .design-content p:first-child {
  margin-bottom: 30px; }
.container-design .design-content p:nth-child(2) {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .container-design .design-content p:nth-child(2) {
    margin-bottom: 100px; } }
.container-design .design-content.ver2 {
  padding-top: 18px; }
@media (min-width: 1025px) {
  .container-design .design-content.ver2 {
    padding-left: 0;
    padding-right: 250px; } }
.container-design .design-content.ver2 p:first-child {
  margin-bottom: 0; }
.container-design .design-content.ver2 p:nth-child(2) {
  margin-bottom: 0; }
.container-design .design-content.ver2 .info-title {
  margin-bottom: 40px; }
.container-design .design-content .info-title {
  margin-bottom: 55px; }

.introduce {
  padding-top: 50px; }
@media (min-width: 1025px) {
  .introduce {
    padding-top: 190px; } }

/** 5. Ecommerce **/
/*
5. Ecommerce
5.1. Cart Page
5.2. Item view templates
5.3. Checkout Page
5.4. Newsletter 
5.5. Single product detail page
*/
/*
5.2. Item view templates
*/
.product-title {
  font-size: 14px;
  text-transform: capitalize; }

.product-cate {
  color: #999;
  font-size: 12px;
  text-transform: capitalize; }

.product-price {
  color: #666;
  font-size: 18px; }

.btn-icon {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.icon-bg {
  display: inline-block;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.icon-bg:hover {
  opacity: 1; }

.icon-view {
  background-image: url("icon-eye.png");
  background-repeat: no-repeat;
  height: 13px;
  width: 24px; }

/* .icon-cart {
background-image: url("icon-cart2.png");
background-repeat: no-repeat;
height: 21px;
width: 26px; }
.icon-cart.v2 {
background-image: url("cart-w.png");
opacity: 1; } */

.icon-wishlist {
  background-image: url("icon-heart2.png");
  background-repeat: no-repeat;
  height: 18px;
  width: 21px; }

.icon-compare {
  background-image: url("icon-compare.png");
  background-repeat: no-repeat;
  height: 18px;
  width: 20px; }

.pd-top, .pd-middle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 30px 0; }
@media (max-width: 480px) {
  .pd-top, .pd-middle {
    padding-bottom: 10px; } }
.pd-top .title, .pd-middle .title {
  font-size: 20px; }
.pd-top .title.v2, .pd-middle .title.v2 {
  font-size: 18px; }
.pd-top .show-element, .pd-middle .show-element {
  color: #999999; }

.pd-middle {
  padding-top: 10px; }
@media (max-width: 480px) {
  .pd-middle {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
.pd-middle.space-v1 {
  padding-top: 0; }
@media (min-width: 1025px) {
  .pd-middle.space-v1 {
    padding-bottom: 99px; } }
@media (max-width: 480px) {
  .pd-middle.space-v1 {
    padding-bottom: 30px; }
  .pd-middle.space-v1 .pd-sort {
    display: none; } }
.pd-middle .pagination {
  margin: 0; }

.pd-sort {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
@media (max-width: 480px) {
  .pd-sort {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
.pd-sort .dropdown {
  height: 43px;
  border: 2px solid #f0f0f0;
  border-radius: 999px; }
.pd-sort .dropdown span {
  color: #999; }
.pd-sort .dropdown:after {
  content: "\f0d7";
  font-family: FontAwesome;
  position: absolute;
  top: 10px; }
@media (max-width: 480px) {
  .pd-sort .dropdown-menu {
    width: 100%; } }

@media (max-width: 480px) {
  .filter-sort {
    margin-bottom: 15px; } }
.filter-sort .dropdown {
  padding: 10px 23px; }
.filter-sort .dropdown:after {
  right: 23px; }
.filter-sort .dropdown button {
  background: transparent; }
@media (min-width: 480px) {
  .filter-sort .dropdown button {
    padding-right: 71px;
    padding-left: 4px; } }
@media (max-width: 480px) {
  .filter-sort .dropdown button {
    width: 100%; } }

@media (min-width: 480px) {
  .filter-show {
    margin-left: 9px; } }
.filter-show .dropdown {
  padding: 10px 21px; }
.filter-show .dropdown:after {
  right: 21px; }
.filter-show button {
  background: transparent; }
@media (min-width: 480px) {
  .filter-show button {
    padding-right: 24px;
    padding-left: 5px; } }
@media (max-width: 480px) {
  .filter-show button {
    width: 100%; } }
.filter-show .dropdown-menu {
  left: unset;
  right: 0; }

.view-mode.view-group {
  width: 169px;
  height: 43px;
  border: 2px solid #f0f0f0;
  border-radius: 999px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px; }
@media (max-width: 480px) {
  .view-mode.view-group {
    width: 100%;
    margin-bottom: 15px; } }
.view-mode.view-group a {
  width: 33.333333%;
  text-align: center;
  cursor: pointer; }
.view-mode.view-group a img {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.view-mode.view-group a:hover img {
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.view-mode.view-group a.active img {
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }

.product-bottom, .product-button-group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between; }

@media (min-width: 1681px) {
  .product-grid [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; }
  .product-grid .row {
    margin-left: -20px;
    margin-right: -20px; } }

.product-inner {
  position: relative; }
@media (min-width: 1025px) {
  .product-inner.v2:after {
    bottom: -17%; } }
@media (min-width: 1025px) {
  .product-inner.v3:after {
    bottom: -4%; } }
@media (min-width: 1025px) {
  .product-inner:after {
    content: '';
    width: 100%;
    display: block;
    z-index: -1;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: -8%;
    -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    -webkit-transform: rotateX(45deg);
    transform: rotateX(45deg);
    moz-transform-origin: bottom;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 0; } }

@media (min-width: 1025px) {
  .product-inner.v3 .product-info .product-title {
    font-size: 18px; } }

.product-inner.v2 .product-img {
  margin-right: 5px; }
@media (min-width: 1025px) {
  .product-inner.v2 .product-img {
    margin-right: 30px; } }
.product-inner.v2 .product-img img {
  width: 139px; }
.product-inner.v2 .product-bottom.v2, .product-inner.v2 .v2.product-button-group {
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column; }
.product-inner.v2 .product-info .color-group {
  padding-top: 6px;
  margin-left: 0; margin-top:0;}
.product-inner.v2 .product-bottom-element {
  margin-top: 14px; }
.product-inner.v2 .product-button-group .btn-icon {
  width: 100px; }

.product-button-group {
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding-bottom: 15px;
  margin: 5px -30px -30px -30px; }
@media (min-width: 1025px) {
  .product-button-group {
    opacity: 0;
    visibility: hidden;
    bottom: -5px;
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    margin: 0;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    margin-bottom: -15px;
    z-index: 33; } }
.product-button-group .btn-icon {
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  width: 80px; }

.product-item {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
@media (max-width: 1024px) {
  .product-item .pd-bd {
    -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.1); } }
@media (min-width: 1025px) {
  .product-item:hover .pd-bd {
    border: 0;
    box-shawdow: unset; }
  .product-item:hover .pd-bd:after {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1; }
  .product-item:hover .product-button-group {
    opacity: 1;
    visibility: visible;
    bottom: -19px; } }

.product-list .product-item .product-inner:after {
  bottom: 0; }

@media (max-width: 1024px) {
  .btn-view {
    display: none; } }

@media (min-width: 1025px) {
  .e-category {
    padding-bottom: 63px; } }
@media (min-width: 1681px) {
  .e-category .row {
    margin-left: -20px;
    margin-right: -20px; }
  .e-category [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }
@media (max-width: 480px) {
  .e-category [class*="col-"] {
    margin-bottom: 15px; } }

.cate-title {
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding-bottom: 15px;
  margin-bottom: 19px;
  border-bottom: 1px solid #e7e7e7; }

.e-category .cate-item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.e-category .cate-item:last-child {
  border-bottom: 0; }
.e-category .cate-item .product-img {
  width: 90px;
  height: 90px;
  margin-right: 30px; }
.e-category .cate-item .product-img img {
  border: 1px solid #f0f0f0;
  border-radius: 5px; }
.e-category .cate-item:hover .product-img img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  border: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #c26af5, #57eeff);
  border-image: -webkit-gradient(linear, left top, right top, from(#c26af5), to(#57eeff));
  border-image: linear-gradient(to right, #c26af5, #57eeff);
  border-image-slice: 1; }

.desc-list {
  margin-bottom: 14px; }
.desc-list li {
  font-size: 12px;
  line-height: 24px;
  color: #999999;
  position: relative;
  display: block;
  margin-left: 13px; }
.desc-list li:before {
  content: "\f363";
  font-family: "ionicons";
  position: absolute;
  top: 0;
  left: -13px;
  color: #bfbfbf; }

.product-grid-v2 .product-rating {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
.product-grid-v2 .product-rating.bd-rating {
  border-top: 1px solid #e9e9e9;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-bottom: 20px;
  padding-top: 19px; }
.product-grid-v2 .product-rating .number-rating {
  color: #999;
  font-size: 12px;
  margin-left: 10px; }
.product-grid-v2 .desc-list {
  display: block; }

/* .product-rating {
display: none; } */

.desc-list {
  display: none; }

.product-bottom-group {
  display: none; }

@media (min-width: 1025px) {
  .product-img.v2 {
    margin: 19.6% 0; } }
@media (min-width: 1681px) {
  .product-img.v2 {
    margin: 21.3% 0; } }
@media (min-width: 1025px) {
  .product-img.v3 {
    margin: 10.5% 0; } }
@media (min-width: 1681px) {
  .product-img.v3 {
    margin: 17.4% 0; } }

.filter-brand li a {
  font-weight:400;
  position: relative;
  color: #999999;
  line-height: 40px; }
/*   .filter-brand li a:before {
content: "";
position: absolute;
display: block;
left: 0;
top: 4px;
width: 12px;
height: 12px;
background-color: #fff;
border: 1px solid #bfbfbf;
border-radius: 50%; }
.filter-brand li a:after {
content: "";
position: absolute;
display: block;
left: 0px;
top: 2px;
width: 12px;
height: 12px;
opacity: 0;
background: #333333;
border-radius: 50%; } */
.filter-brand li a:hover, .filter-brand li a.active{
  color:var(--engoc-primary-color);
    }
.filter-brand li.active-filter a:after {
  opacity: 1; }

.filter-product.e-category .cate-item .product-img {
  width: 81px;
  height: 81px;
  margin-right: 20px; }
.filter-product .cate-item {
  padding-left: 23px;
  padding-right: 20px; }

/* .filter {
border-radius: 10px;
border: 2px solid #eaeaea;
margin-bottom: 30px; } */
.filter.filter-product {
  padding-top: 21px; }
.filter.filter-group {
  padding-top: 20px; }

.filter-inside {
  padding-bottom: 28px; }
.filter-inside.filter-color {
  border-bottom: 0; }
.filter-inside.filter-price h3 {
  margin-bottom: 20px; }
.filter-inside.filter-price .filter-content {
  padding-right: 22px; }
.filter-inside.filter-price .min-max {
  color: #666666;
  margin-top: 16px;
  margin-bottom: 16px;
  display: inline-block; }
.filter-inside.filter-price .btn-filter {
  width: 271px;
  height: 45px;
  line-height: 48px;
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 999px;
  width: 100%; }
.filter-inside h3 {
  font-size: 16px;
  padding-top: 18px; }

.e-filter {
  margin-top: 12px;
  margin-bottom: 15px; }

.btn-showmore {
  color: #999999;
  font-size: 12px;
  padding-right: 19px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end; }

.filter-collection-left {
  margin-bottom: 15px; }
.filter-collection-left .btn {
  color: #fff;
  padding: 0 25px;
  text-transform: uppercase;
  line-height: 36px;
  height: 36px;
  letter-spacing: 0.05em;
  text-decoration: none;
  background-color: var(--engoc-color-main1);
    border-color: #ffff;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 0; }

.close-sidebar-collection {
  font-size: 16px;
  line-height: 50px;
  background: var(--engoc-color-main1);
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px; }
.close-sidebar-collection span {
  display: inline-block; }
@media (max-width: 1024px) {
  .close-sidebar-collection {
    margin: 0 -15px 30px; } }
@media (max-width: 1024px) {
  .close-sidebar-collection .icon_close {
    left: auto;
    right: 10px;
    top: 0;
    line-height: 50px;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    color: #fff; } }

.show-filter:after {
  background: rgba(29, 29, 31, 0.6);
  content: "";
  cursor: pointer;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 2; }

@media (max-width: 1024px) {
  .show-filter .col-left {
    left: 0; } }

@media (max-width: 1024px) {
  .col-left {
    position: fixed;
    display: block;
    margin: 0;
    background: #fff;
    list-style: none;
    z-index: 4;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    text-align: left;
    overflow-x: scroll;
    -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s; } }

.shop-collection .breadcrumb {
  margin: 24px 0; }
@media (min-width: 1025px) {
  .shop-collection .product-grid {
    padding-top: 0; } }

@media (min-width: 1025px) {
  .r-sidebar {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
  .r-sidebar .collection-sidebar {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2; }
  .r-sidebar .collection-list {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1; } }
.e-heading {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .e-heading {
    margin-bottom: 53px; } }
.e-heading .product-tab-sw {
  position: relative;
  z-index: 1;
  width: 85.666666%;
  -moz-justify-content: stretch;
  -ms-justify-content: stretch;
  -webkit-box-pack: stretch;
  justify-content: stretch;
  -ms-flex-pack: stretch;
  margin-bottom: 20px; }
@media (min-width: 480px) {
  .e-heading .product-tab-sw {
    margin-bottom: 0; }
  .e-heading .product-tab-sw:before {
    border-top: 1px solid #ededed;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1; } }
.e-heading h3 {
  font-size: 22px;
  position: relative;
  z-index: 1;
  width: 85.666666%; }
.e-heading h3.v2 {
  font-size: 20px;
  font-weight: bold; }
.e-heading h3.v3 {
  font-size: 18px; }
@media (max-width: 480px) {
  .e-heading h3 {
    font-size: 18px; } }
@media (max-widht: 320px) {
  .e-heading h3 {
    font-size: 16px; } }
.e-heading h3 span {
  background: #fff;
  display: inline;
  padding-right: 15px; }
@media (min-width: 1025px) {
  .e-heading h3 span {
    padding-right: 40px; } }
.e-heading h3:before {
  border-top: 1px solid #ededed;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1; }
.e-heading .btn-show {
  font-size: 16px;
  color: #999999;
  width: 201px;
  line-height: 54px;
  height: 56px;
  display: inline-block;
  text-align: center;
  border: 1px solid #eaeaea;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  border-radius: 999px; }
@media (max-width: 480px) {
  .e-heading .btn-show {
    font-size: 14px;
    line-height: 40px;
    height: 40px; } }
.e-heading .btn-show i {
  margin-left: 15px; }
.e-heading .btn-show:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  color: #fff;
  background: var(--engoc-color-main1);
    border-color: var(--engoc-color-main1); }
@media (min-width: 1025px) {
  .e-heading.spc1 {
    margin-bottom: 43px; } }

.e-cat {
  padding-top: 27px; }

.e-title {
  font-size: 22px;
  position: relative;
  padding-bottom: 23px;
  margin-bottom: 48px;
  padding-top: 8px; }
.e-title:before {
  border-bottom: 1px solid transparent;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 68px;
  background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
  background: linear-gradient(90deg, #c467f5, #53f3ff);
  height: 1px;
  border: 0; }

.section-cate {
  margin-bottom: 30px; }
.section-cate .item .product-img {
  margin-bottom: 20px; }
.section-cate .item h3 {
  font-size: 16px; }

.bestseller {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .bestseller.single-space {
    margin-bottom: 122px; } }

.onsale {
  margin-bottom: 30px; }

/* .brand {
padding: 30px 0; }
@media (min-width: 1025px) {
.brand {
padding-top: 51px;
padding-bottom: 68px; } } */

.owl-cate.owl-theme .owl-dots .owl-dot.active span,
.owl-cate .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--engoc-primary-color);
    opacity: 1; }
.owl-cate.owl-theme .owl-dots .owl-dot span {
  transition:all .3s ease;
  width: 11px;
  height: 11px;
  background: #333333;
  opacity: 0.21; }
.owl-cate.owl-theme .owl-dots .owl-dot.active span{
  width:30px;
}
.owl-cate.owl-theme .owl-dots .owl-dot {
  vertical-align: middle; }
@media (min-width: 1025px) {
  .owl-cate.owl-theme .owl-controls .owl-dots {
    margin-top: 44px; } }
@media (min-width: 1025px) {
  .owl-cate.v2.owl-theme .owl-controls .owl-dots {
    margin-top: 3px; } }
@media (min-width: 1025px) {
  .owl-cate.v3.owl-theme .owl-controls .owl-dots {
    margin-top: 6px; } }
.owl-cate .owl-dots {

  margin: 0 auto;

  padding: 8px 10px;
  display: table; }

.about-brand {
  margin-top: 30px; }
@media (min-width: 1025px) {
  .about-brand {
    margin-top: 58px; } }
@media (min-width: 1681px) {
  .about-brand .row {
    margin-left: -20px;
    margin-right: -20px; }
  .about-brand [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }
@media (max-width: 480px) {
  .about-brand [class*="col-xs-6"] {
    width: 100%; } }

.about-brand-info {
  padding: 50px 10px;
  border: 2px solid #f0f0f0;
  border-radius: 10px; }
@media (min-width: 1025px) {
  .about-brand-info {
    padding: 104px 11px; } }
@media (min-width: 1681px) {
  .about-brand-info {
    padding: 93px 30px; } }
@media (max-width: 1024px) {
  .about-brand-info {
    margin-bottom: 30px; } }
.about-brand-info .brand-img {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .about-brand-info .brand-img {
    margin-bottom: 50px; } }
.about-brand-info .brand-info {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .about-brand-info .brand-info {
    margin-bottom: 47px; } }
.about-brand-info .brand-info p {
  color: #666666;
  line-height: 21.99px; }
.about-brand-info .btn-brand {
  font-size: 16px;
  width: 198px;
  height: 51px;
  line-height: 50px;
  display: inline-block;
  font-weight: 500;
  border-radius: 999px; }
.about-brand-info .btn-brand i {
  margin-left: 10px; }

.brand-item img {
  opacity: 0.2; }
.brand-item:hover img {
  opacity: 1; }

.brand .owl-carousel .owl-item img {
  width: auto; }
@media (max-width: 480px) {
  .brand .owl-carousel .owl-item img {
    margin: 0 auto; } }
.brand .owl-nav > div {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--engoc-color-main1);
    font-size: 28px;
    left: 0;
    position: absolute;
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
.brand .owl-theme .owl-nav [class*=owl-],
.brand .blog-home .owl-theme .owl-nav [class*=owl-] {
  background: #fff;
  color: var(--engoc-color-main1);
    margin: 0;
    padding: 0;
    font-size: 22px;
    border-radius: 0; }
.brand .owl-nav > div.owl-next {
  left: auto;
  right: 0; }
.brand .owl-nav > div.owl-prev {
  left: 0;
  right: auto; }
.brand.v2 {
  border-top: 1px solid #ededed; }
.brand.v2 .owl-theme .owl-nav [class*=owl-] {
  font-size: 28px;
  color: #cacaca; }
.brand.v2 .owl-theme .owl-nav [class*=owl-].active {
  color: #333; }
.brand.v2 .owl-theme .owl-nav [class*=owl-]:hover {
  color: #333; }
.brand.v2 .owl-nav > div {
  font-size: 28px;
  top: 50%; }
.brand.v2 .owl-nav > div.owl-next {
  left: auto;
  right: 0; }
@media (min-width: 1681px) {
  .brand.v2 .owl-nav > div.owl-next {
    right: -66px; } }
@media (min-width: 1025px) {
  .brand.v2 .owl-nav > div.owl-next {
    right: -30px; } }
.brand.v2 .owl-nav > div.owl-prev {
  left: 0;
  right: auto; }
@media (min-width: 1681px) {
  .brand.v2 .owl-nav > div.owl-prev {
    left: -66px; } }
@media (min-width: 1025px) {
  .brand.v2 .owl-nav > div.owl-prev {
    left: -30px; } }

.catleft .pd-banner {
  margin-bottom: 35px;
  padding-top: 0; }

.ribbon, .ribbon-sale, .ribbon-new {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 96px;
  height: 23px;
  background: #d7d7d7;
  display: inline-block;
  text-align: center; }
.ribbon span, .ribbon-sale span, .ribbon-new span {
  font-size: 10px;
  font-weight: 600;
  color: #fff; }
.ribbon span:after, .ribbon-sale span:after, .ribbon-new span:after {
  position: absolute;
  content: "";
  top: 8px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff; }
.ribbon span:before, .ribbon-sale span:before, .ribbon-new span:before {
  position: absolute;
  top: 0;
  left: -8px;
  content: "";
  border-style: solid;
  border-width: 12px 8px 11px 8px;
  border-color: #d7d7d7 transparent #d7d7d7 transparent; }

/* .product-images img {
width: 100%; } */

.product,
.item,
.product-item {
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s; }
.product .product-images,
.item .product-images,
.product-item .product-images {
  position: relative; }
@media (min-width: 1025px) {
  .product .product-images > a,
  .item .product-images > a,
  .product-item .product-images > a {
    position: relative; } }
.product .product-images .btn-add-wishlist,
.item .product-images .btn-add-wishlist,
.product-item .product-images .btn-add-wishlist {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  display: inline-block;
  text-align: center;
  right: 10px;
  top: 10px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s; }
@media (min-width: 1025px) {
  .product .product-images .btn-add-wishlist,
  .item .product-images .btn-add-wishlist,
  .product-item .product-images .btn-add-wishlist {
    opacity: 0; } }
.product .product-images .btn-add-wishlist.ver2,
.item .product-images .btn-add-wishlist.ver2,
.product-item .product-images .btn-add-wishlist.ver2 {
  right: initial;
  left: 10px; }
.product .product-images .btn-quickview,
.item .product-images .btn-quickview,
.product-item .product-images .btn-quickview {
  bottom: 0;
  height: 40px;
  left: 0;
  line-height: 30px;
  overflow: hidden;
  position: absolute;
  top: calc(100% - 40px);
  width: 100%;
  z-index: 2;
  opacity: 0;
  background: #fff;
  text-align: center;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  color: #eb5050;
  font-size: 10px; }
.product .product-images .btn-quickview:before,
.item .product-images .btn-quickview:before,
.product-item .product-images .btn-quickview:before {
  content: "\e087";
  font-family: "simple-line-icons";
  font-size: 20px;
  margin-right: 10px;
  position: relative;
  top: 5px; }
@media (max-width: 1024px) {
  .product .product-images .btn-quickview,
  .item .product-images .btn-quickview,
  .product-item .product-images .btn-quickview {
    display: none; } }
.product .product-images .button-group,
.item .product-images .button-group,
.product-item .product-images .button-group {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0; }
.product .product-images .button-group .button,
.item .product-images .button-group .button,
.product-item .product-images .button-group .button {
  width: 33.33333%;
  text-align: center;
  margin: 0;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  height: 60px;
  line-height: 60px;
  float: left;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.product .product-images .button-group .button:before,
.item .product-images .button-group .button:before,
.product-item .product-images .button-group .button:before {
  font-family: 'simple-line-icons', sans-serif;
  font-size: 20px;
  color: #fff;
  display: block;
  margin-bottom: 12px; }
.product .product-images .button-group .button.add-to-cart, .product .product-images .button-group .button.view-cart, .product .product-images .button-group .button.sold-out,
.item .product-images .button-group .button.add-to-cart,
.item .product-images .button-group .button.view-cart,
.item .product-images .button-group .button.sold-out,
.product-item .product-images .button-group .button.add-to-cart,
.product-item .product-images .button-group .button.view-cart,
.product-item .product-images .button-group .button.sold-out {
  background-color: rgba(37, 37, 37, 0.9); }
.product .product-images .button-group .button.add-to-wishlist,
.item .product-images .button-group .button.add-to-wishlist,
.product-item .product-images .button-group .button.add-to-wishlist {
  background-color: rgba(73, 73, 73, 0.95); }
.product .product-images .button-group .button.add-view,
.item .product-images .button-group .button.add-view,
.product-item .product-images .button-group .button.add-view {
  background-color: rgba(103, 103, 103, 0.95); }
.product .product-images .button-group .button:hover,
.item .product-images .button-group .button:hover,
.product-item .product-images .button-group .button:hover {
  line-height: 10px; }
.product .product-images .button-group .button:hover:before,
.item .product-images .button-group .button:hover:before,
.product-item .product-images .button-group .button:hover:before {
  margin-top: 15px;
  color: #eb5050; }
.product .product-images img,
.item .product-images img,
.product-item .product-images img {
  width: 100%; }
.product .product-images img.secondary_image,
.item .product-images img.secondary_image,
.product-item .product-images img.secondary_image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: auto;
  bottom: 0; }
.product .product-after-switch,
.item .product-after-switch,
.product-item .product-after-switch {
  height: 20px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }
@media (max-width: 1024px) {
  .product .product-after-switch,
  .item .product-after-switch,
  .product-item .product-after-switch {
    height: auto; } }
.product .product-after-switch .product-price,
.item .product-after-switch .product-price,
.product-item .product-after-switch .product-price {
  color: #868686;
  opacity: 1;
  display: block;
  font-weight: 500; }
.product .product-after-switch .product-after-button,
.item .product-after-switch .product-after-button,
.product-item .product-after-switch .product-after-button {
  opacity: 0;
  height: 33px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s; }
@media (max-width: 1024px) {
  .product .product-after-switch .product-after-button,
  .item .product-after-switch .product-after-button,
  .product-item .product-after-switch .product-after-button {
    height: auto;
    opacity: 1; } }
.product .product-after-switch .product-after-button .addcart,
.item .product-after-switch .product-after-button .addcart,
.product-item .product-after-switch .product-after-button .addcart {
  font-size: 12px;
  color: #eb5050;
  display: inline-block; }
.product .rating-star,
.item .rating-star,
.product-item .rating-star {
  margin-top: 5px;
  display: inline-block;
  width: 100%; }
.product .product-desc,
.item .product-desc,
.product-item .product-desc {
  display: none; }
.product .button-group,
.item .button-group,
.product-item .button-group {
  display: none; }
@media (min-width: 1025px) {
  .product:hover img.primary_image,
  .item:hover img.primary_image,
  .product-item:hover img.primary_image {
    opacity: 0; }
  .product:hover img.secondary_image,
  .item:hover img.secondary_image,
  .product-item:hover img.secondary_image {
    opacity: 1; }
  .product:hover .btn-quickview,
  .product:hover .btn-add-wishlist,
  .item:hover .btn-quickview,
  .item:hover .btn-add-wishlist,
  .product-item:hover .btn-quickview,
  .product-item:hover .btn-add-wishlist {
    opacity: 1; }
  .product:hover .product-after-switch .product-price,
  .item:hover .product-after-switch .product-price,
  .product-item:hover .product-after-switch .product-price {
    opacity: 0;
    height: 0;
    visibility: hidden; }
  .product:hover .product-after-switch .product-price.product-price-default,
  .item:hover .product-after-switch .product-price.product-price-default,
  .product-item:hover .product-after-switch .product-price.product-price-default {
    opacity: 1; }
  .product:hover .product-after-switch,
  .item:hover .product-after-switch,
  .product-item:hover .product-after-switch {
    -webkit-transform: translateY(-2);
    transform: translateY(-2); }
  .product:hover .product-after-button,
  .item:hover .product-after-button,
  .product-item:hover .product-after-button {
    opacity: 1; }
  .product:hover .button-group,
  .item:hover .button-group,
  .product-item:hover .button-group {
    opacity: 1; } }

.add-to-cart:before {
  content: "\e04e"; }

.add-to-wishlist:before {
  content: "\e08a"; }

.add-view:before {
  content: "\e087"; }

.view-cart:before {
  content: "\e080"; }

/* .sold-out:before {
content: "\e066"; } */

.wrap-gallery {
  padding-bottom: 28px; }

@media (min-width: 768px) {
  .wrap-gallery-masonry .wrap-gallery-item:nth-child(2) {
    margin-top: 129px; }
  .wrap-gallery-masonry .wrap-gallery-item:last-child {
    margin-bottom: 0; }
  .wrap-gallery-masonry .wrap-gallery-item {
    margin-bottom: 244px; } }
@media (max-width: 767px) {
  .wrap-gallery-masonry .wrap-gallery-item {
    margin-bottom: 30px; } }
@media (max-width: 480px) {
  .wrap-gallery-masonry .wrap-gallery-item {
    width: 100%; } }

@media (min-width: 1025px) {
  .wrap-gallery-grid .row {
    margin-left: -20px;
    margin-right: -20px; }
  .wrap-gallery-grid [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }
.lookbook {
  margin-bottom: 30px; }
@media (min-width: 1681px) {
  .lookbook {
    margin-bottom: 63px; } }
.lookbook .flex-colect {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
@media (max-width: 480px) {
  .lookbook .flex-colect {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
.lookbook .flex-colect .flex-column {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column; }

.lookbook-img, .product-img {
  position: relative; }

@media (min-width: 768px) {
  .lookbitem:hover .lookbitem_content {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100); } }

.lookbitem_content {
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); }
@media (max-width: 767px) {
  .lookbitem_content {
    display: none; } }
@media (min-width: 768px) {
  .lookbitem_content {
    position: absolute;
    z-index: 2;
    width: 186px;
    -webkit-transition: all 0.4s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    transition: all 0.4s cubic-bezier(0.44, 0.13, 0.48, 0.87); } }
.lookbitem_content.centerl {
  margin-right: 20px;
  right: 28px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%); }
.lookbitem_content.centerl:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 1;
  margin-top: -12px;
  border-left: 15px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent; }
.lookbitem_content.centerr {
  margin-left: 20px;
  left: 28px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%); }
.lookbitem_content.centerr:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  z-index: 1;
  margin-top: -12px;
  border-right: 15px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent; }
.lookbitem_content.topl {
  right: 28px;
  bottom: 28px; }
.lookbitem_content.topr {
  left: 28px;
  bottom: 28px; }

.lookbitem {
  position: absolute;
  margin-top: -20px;
  margin-left: -20px; }

.lookbitem_price {
  text-align: center;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  -webkit-animation: pulse 1.5s infinite; }
.lookbitem_price span {
  font-size: 16px;
  color: #fff; }
.lookbitem_price.blue {
  background-color: #2f56ff; }

.lookbitem_price2 {
  text-align: center;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 126px;
  height: 38px;
  line-height: 38px;
  border-radius: 999px;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  -webkit-animation: pulse 1.5s infinite; }
.lookbitem_price2 span {
  color: #fff; }
.lookbitem_price2.red {
  background-color: #f14444; }

.lookbitem_btn:before,
.lookbitem_btn:after {
  content: '';
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease; }

.lookbitem_btn.green:before {
  background-color: #2cb96e; }
.lookbitem_btn.green:after {
  background-color: #2cb96e; }
.lookbitem_btn.pink:before {
  background-color: #dc30a1; }
.lookbitem_btn.pink:after {
  background-color: #dc30a1; }
.lookbitem_btn.skyblue:before {
  background-color: var(--engoc-primary-color); }
.lookbitem_btn.skyblue:after {
  background-color: var(--engoc-primary-color); }
.lookbitem_btn.yl:before {
  background-color: #ffae00; }
.lookbitem_btn.yl:after {
  background-color: #ffae00; }

.lookbitem_btn.green:after {
  background-color: rgba(44, 185, 110, 0.2); }
.lookbitem_btn.pink:after {
  background-color: rgba(220, 48, 161, 0.2); }
.lookbitem_btn.skyblue:after {
  background-color: rgba(65, 204, 229, 0.2); }
.lookbitem_btn.yl:after {
  background-color: rgba(255, 174, 0, 0.2); }

.lookbitem_price:after {
  -webkit-animation: lookbookBorder2 3s infinite;
  animation: lookbookBorder2 3s infinite; }

.lookbitem_btn:after {
  -webkit-animation: lookbookBorder 3s infinite;
  animation: lookbookBorder 3s infinite; }

@-webkit-keyframes lookbookBorder {
  0% {
    width: 14;
    height: 14; }
  50% {
    width: 25px;
    height: 25px; }
  100% {
    width: 14px;
    height: 14px; } }
@keyframes lookbookBorder {
  0% {
    width: 14px;
    height: 14px; }
  50% {
    width: 25px;
    height: 25px; }
  100% {
    width: 14px;
    height: 14px; } }
@-webkit-keyframes pulse {
  70% {
    -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); } }
.overlay-img {
  background-color: rgba(0, 0, 0, 0.48);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.overlay-img.ver2 {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(13%, rgba(255, 255, 255, 0.09)), color-stop(26%, rgba(255, 255, 255, 0.21)), color-stop(61%, rgba(255, 255, 255, 0.65)), color-stop(80%, rgba(255, 255, 255, 0.87)), color-stop(93%, rgba(255, 255, 255, 0.98)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.09) 13%, rgba(255, 255, 255, 0.21) 26%, rgba(255, 255, 255, 0.65) 61%, rgba(255, 255, 255, 0.87) 80%, rgba(255, 255, 255, 0.98) 93%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
.overlay-img.ver3 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.91+0,0.91+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.91)), to(rgba(255, 255, 255, 0.91)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.91) 0%, rgba(255, 255, 255, 0.91) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
.overlay-img.ver4 {
  background-color: rgba(0, 0, 0, 0.6); }
@media (max-width: 1024px) {
  .overlay-img {
    opacity: 1; } }

.btn-shoplook {
  background: var(--engoc-color-main1);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    width: 180px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    display: inline-block; }
.btn-shoplook.v2 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase; }
@media (max-width: 767px) {
  .btn-shoplook.v2 {
    width: 100%; } }

@media (min-width: 1025px) {
  .wrap-gallery-item:hover .overlay-img {
    opacity: 1; } }
.wrap-gallery .heading-gallery {
  text-align: center;
  position: relative;
  margin-bottom: 40px; }
@media (min-width: 1025px) {
  .wrap-gallery .heading-gallery {
    margin-bottom: 85px;
    margin-top: 80px; } }
.wrap-gallery .heading-gallery .title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.4em;
  margin-bottom: 5px; }
@media (max-width: 768px) {
  .wrap-gallery .heading-gallery .title {
    font-size: 30px; } }
.wrap-gallery .heading-gallery p {
  font-size: 20px;
  font-weight: 500;
  color: #a4a4a4;
  position: relative;
  padding-bottom: 30px; }
.wrap-gallery .heading-gallery p:before {
  border-bottom: 1px solid var(--engoc-color-main1);
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    position: absolute;
    width: 59px;
    border-bottom: 2px solid var(--engoc-color-main1); }

.wrap-gallery-item {
  margin-bottom: 40px; }

.banner-heading img {
  width: 100%; }

.page-heading {
  position: relative; }

.banner-heading {
  position: relative; }
.banner-heading.hero-dark {
  min-height: 262px;
  background: #39393d; }
.banner-heading.hero-light {
  min-height: 262px;
  background: #ebebeb; }

.heading-content {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 8; }
@media (max-width: 480px) {
  .heading-content {
    top: 50%; } }
@media (min-width: 768px) {
  .heading-content.v2 {
    top: 35%; } }
@media (min-width: 768px) {
  .heading-content.v3 {
    top: 58%; } }
.heading-content .page-title {
  font-weight: 500; }
@media (max-width: 480px) {
  .heading-content .page-title {
    font-size: 16px; } }
@media (max-width: 1024px) {
  .heading-content .page-title {
    margin: 15px 0; } }
@media (min-width: 1025px) {
  .heading-content .page-title {
    font-size: 60px;
    margin-bottom: 40px; }
  .heading-content .page-title.v2 {
    font-size: 30px; } }
.heading-content .page-title:before {
  border-bottom: 2px solid #eb5050;
  top: 50%;
  content: "";
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 2px; }
@media (max-width: 480px) {
  .heading-content .page-title:before {
    top: 30%; } }
.heading-content .page-title.white {
  color: #fff; }
.heading-content .page-title.v2:before {
  content: none; }
.heading-content .page-title.v2 {
  float: left;
  margin-bottom: 0; }
.heading-content .breadcrumb {
  background: transparent; }
.heading-content .breadcrumb li a {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: normal; }
.heading-content .breadcrumb li + li:before {
  content: "\F105";
  font-family: 'FontAwesome', sans-serif;
  color: var(--engoc-color-main1); }
.heading-content .breadcrumb.black a {
  color: var(--engoc-color-main1); }
.heading-content .breadcrumb.white a {
  color: #fff; }
.heading-content .breadcrumb.white li + li:before {
  color: #fff; }
.heading-content .breadcrumb.v2 {
  float: right;
  margin: 12px 0 0 0; }
.heading-content .breadcrumb.v2 > li > a.active {
  color: #a4a4a4; }

.hero-light .breadcrumb > li > a {
  color: var(--engoc-primary-color); }

.wrap-filter {
  display: table;
  width: 100%;
  position: relative; }

.nav-filter .owl-theme .owl-nav {
  margin-top: 0; }
.nav-filter .owl-theme .owl-nav [class*=owl-] {
  background: transparent;
  color: var(--engoc-color-main1);
    margin: 0;
    padding: 0;
    font-size: 12px;
    border-radius: 0; }
.nav-filter .owl-nav > div {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--engoc-color-main1);
    font-size: 22px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
.nav-filter .owl-nav > div.owl-next {
  left: auto;
  right: 33px; }
.nav-filter .owl-nav > div.owl-prev {
  left: 33px;
  right: auto; }
.nav-filter .owl-carousel .owl-nav .owl-prev,
.nav-filter .owl-carousel .owl-nav .owl-next,
.nav-filter .owl-carousel .owl-dot {
  font-family: 'fontAwesome'; }
.nav-filter .owl-carousel .owl-nav .owl-prev:before {
  content: "\f053"; }
.nav-filter .owl-carousel .owl-nav .owl-next:after {
  content: "\f054"; }

@media (min-width: 768px) {
  .nav-filter {
    position: absolute;
    bottom: 0; } }
.nav-filter li {
  text-align: center; }
.nav-filter a {
  border-radius: 0;
  font-size: 14px;
  color: var(--engoc-color-main1);
    font-weight: 500;
    font-family: "Helvetica Neue LT Std", sans-serif;
    text-transform: capitalize;
    display: inline-block;
    padding: 26px 0;
    width: 100%; }
.nav-filter a:after {
  border-bottom: 3px solid #eb5050;
  bottom: -1px;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  -webkit-transition: all 0.5s linear 0s; }
@media (min-width: 768px) {
  .nav-filter a {
    font-size: 20px; } }
.nav-filter a:hover:after {
  opacity: 1; }
.nav-filter li {
  border-right: 1px solid #d5d5d5;
  border-top: 1px solid #d5d5d5; }
.nav-filter.white a {
  color: #fff; }
.nav-filter.white li {
  border-right: 1px solid #8a8c8d;
  border-top: 1px solid #8a8c8d; }
@media (max-width: 767px) {
  .nav-filter.white li {
    background: var(--engoc-color-main1); } }
.nav-filter.white li:hover {
  background: #8a8c8d;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.nav-filter.white .owl-theme .owl-nav [class*=owl-] {
  color: #fff; }
.nav-filter.boder-w-tlr-opc1 li {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.09); }
.nav-filter.boder-w-tlr-opc1 li:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.08+0,0.08+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.08)), to(rgba(255, 255, 255, 0.08)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#14ffffff', endColorstr='#14ffffff', GradientType=0);
  /* IE6-9 */
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }

.wrap-filter .wrap-filter-box {
  width: 25%;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  display: table-cell;
  vertical-align: middle;
  padding-top: 7px;
  padding-bottom: 7px; }
.wrap-filter .wrap-filter-box.filter-half {
  width: 50%;
  border-right: 0;
  border-left: 0;
  padding-top: 15px;
  padding-bottom: 15px; }
@media (max-width: 768px) {
  .wrap-filter .wrap-filter-box.filter-half {
    line-height: 40px; } }
@media (max-width: 767px) {
  .wrap-filter .wrap-filter-box {
    display: inline-block;
    width: 33.333333%;
    float: left;
    padding: 10px;
    line-height: 40px;
    border-top: 1px solid #e0e0e0; }
  .wrap-filter .wrap-filter-box.filter-half {
    border: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    line-height: unset;
    padding: 10px 15px;
    text-align: center; } }

@media (min-width: 1025px) {
  .wrap-filter .wrap-filter-box {
    width: 20%; }
  .wrap-filter .wrap-filter-box.filter-half {
    width: 50%; } }
.wrap-filter-tab {
  padding-left: 15px; }

.wrap-filter-number.right {
  text-align: right;
  padding-right: 15px; }

@media (min-width: 1025px) {
  .wrap-filter-number {
    text-align: left;
    padding-left: 42px;
    display: block; }
  .wrap-filter-number.right {
    text-align: right;
    padding-right: 42px; }

  .wrap-filter-tab {
    padding-left: 42px; }}



.wrap-filter-box button {
  position: relative;
  font-size: 12px;
  color: #868686;
  border: 0;
  background: transparent;
  padding: 0;
  margin-right: 20px; }
.wrap-filter-box button:before {
  color: var(--engoc-color-main1);
    content: "\f0d7";
    font-family: 'FontAwesome', sans-serif;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -20px;
    display: block;
    height: 100%; }

.list.active .icon-list-img {
  opacity: 1; }

.col.active .icon-grid-img {
  opacity: 1; }

.list:hover .icon-list-img {
  opacity: 1; }

.col:hover .icon-grid-img {
  opacity: 1; }

.icon-grid-img {
  content: "";
  height: 16px;
  display: inline-block;
  background: url(../img/grid.png) no-repeat center;
  width: 16px;
  background-size: cover;
  opacity: 0.4; }

.icon-list-img {
  content: "";
  height: 16px;
  display: inline-block;
  background: url(../img/list.png) no-repeat center;
  width: 22px;
  background-size: cover;
  opacity: 0.4; }

.filter-title:after {
  display: block;
  content: "Filters";
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  line-height: 2; }

@media (max-width: 1024px) {
  .wrap-filter-box {
    text-align: center; } }
.wrap-filter-box .pagination {
  vertical-align: middle;
  margin: 0;
  border-radius: 0; }
@media (min-width: 1025px) {
  .wrap-filter-box .pagination {
    display: inline-block; } }
.wrap-filter-box .pagination li {
  float: left;
  margin-right: 6px; }
.wrap-filter-box .pagination li a {
  font-size: 11px;
  font-weight: 500;
  color: #ababab;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  padding: 0; }
.wrap-filter-box .pagination li:first-child > a {
  border-radius: 50%; }
.wrap-filter-box .pagination li:last-child > a {
  border-radius: 50%; }
.wrap-filter-box .pagination li.active > a {
  background-color: #fff;
  border-color: var(--engoc-color-main1);
    color: var(--engoc-color-main1); }
.wrap-filter-box .total-count {
  font-size: 12px;
  color: #868686;
  margin-left: 4px;
  display: inline-block; }

.product-img {
  position: relative; }

.color-group .circle {
  border-radius: 50%;
  border: 1px solid #f0f0f0;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 5px; }
.color-group .circle.black {
  background: var(--engoc-color-main1); }
.color-group .circle.red {
  background: #ff413a; }
.color-group .circle.gray {
  background: #e8e8e8; }
.color-group .circle.blue {
  background: #616adb; }
.color-group .circle.skyblue {
  background: #3aa5ff; }
.color-group .circle.yellow {
  background: #f0da23; }
.color-group .circle.darkyellow {
  background: #f2dac0; }
.color-group .circle.pink {
  background: #f228ff; }
.color-group .circle.aqua {
  background: #38d6cd; }

.product-info .color-group {
  height: 20px;
  margin-bottom: 6px;
  margin-top:5px;}
.product-info .product-img {
  margin-bottom: 20px; }
.product-info .product-cate {
  color: #999;
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: 8px; }
.product-info .product-title {
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 12px; }
.product-info .product-title.v2 {
  font-size: 16px;
  margin-top: 36px;
  line-height: 24px; }
@media (min-width: 1025px) {
  .product-info .product-title.v2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto; } }
.product-info .product-title.v3 {
  font-size: 18px;
  margin-bottom: 16px; }
@media (min-width: 480px) {
  .product-info .product-title.v3 {
    font-size: 20px;
    line-height: 28px; } }
.product-info .product-title.v4 {
  font-size: 18px;
  margin-bottom: 32px; }
@media (min-width: 480px) {
  .product-info .product-title.v4 {
    font-size: 20px;
    line-height: 28px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto; } }
.product-info .product-price {
  color: #666;
  font-size: 18px; }
.product-info .product-price.thin-price {
  font-weight: 300;
  font-size: 23px; }
.product-info .product-price.thin-price .old {
  font-size: 16px;
  margin-left: 2px; }
.product-info .product-price.v3 {
  width: 238px;
  margin: 0 auto;
  border-radius: 999px;
  background: #f5f5f5;
  text-align: center;
  height: 58px;
  line-height: 58px; }
.product-info .product-price.v3.no-bg {
  background: #fff; }
.product-info .product-price.v3.bd {
  border: 1px solid #eaeaea; }
.product-info .product-price .red {
  color: #ff2929; }
.product-info .product-price .old {
  color: #aaaaaa;
  font-size: 14px;
  text-decoration: line-through;
  margin-left: 6px; }
.product-info .product-price.v2 {
  font-size: 16px; }
.product-info .btn-quickview {
  color: #fff; }

@media (min-width: 1025px) {
  .product-img:hover .product-info {
    opacity: 1; } }
.product-grid {
  padding-top: 34px; }
@media (min-width: 1025px) {
  .product-grid.spc1 {
    padding-top: 0; } }
.product-grid.modern-grid {
  padding-top: 40px; }
.product-grid.modern-grid-custom {
  padding-top: 40px; }
.product-grid.modern-grid-custom.space-v1 {
  padding-bottom: 40px; }
@media (min-width: 768px) {
  .product-grid.product-custom-bg {
    background: #f1f1f1; }
  .product-grid.product-custom-bg [class*="col-"] {
    padding: 0; }
  .product-grid.product-custom-bg .row {
    margin: 0; } }
@media (min-width: 768px) {
  .product-grid.product-flat [class*="col-"] {
    padding: 0;
    border-bottom: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7; }
  .product-grid.product-flat .row {
    margin: 0; } }

.product-grid.product-custom-bg.product-list {
  background: transparent; }

.button-v {
  margin: 0 0 70px 0; }
.button-v.v2 {
  margin: 0 0 40px 0; }
.button-v.v3 {
  margin: 30px 0 80px 0; }
.button-v.v4 {
  margin: 54px 0 94px 0; }
.button-v.v5 {
  margin: 27px 0 94px 0; }
.button-v.v6 {
  margin: 50px 0 50px 0; }
.button-v.v7 {
  margin: 18px 0 70px 0; }

.product-list .button-v.v2 {
  margin: 35px 0 65px 0; }

/* .btn-loadmore {
width: 196px;
height: 51px;
line-height: 51px;
text-align: center;
color: #fff;
font-size: 16px;
font-weight: 500;
background: var(--engoc-color-main1);
display: inline-block; }
.btn-loadmore:hover {
background: var(--engoc-color-main1);
color: #fff;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s; } */
.btn-loadmore i {
  margin-right: 10px;transform: rotate(90deg);
  display: inline-block; }

@media (min-width: 768px) {
  .product-flat .product-list {
    border-top: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7; } }
.product-flat .product-img > a:after {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(13%, rgba(255, 255, 255, 0.09)), color-stop(26%, rgba(255, 255, 255, 0.21)), color-stop(61%, rgba(255, 255, 255, 0.65)), color-stop(80%, rgba(255, 255, 255, 0.87)), color-stop(93%, rgba(255, 255, 255, 0.98)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.09) 13%, rgba(255, 255, 255, 0.21) 26%, rgba(255, 255, 255, 0.65) 61%, rgba(255, 255, 255, 0.87) 80%, rgba(255, 255, 255, 0.98) 93%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
.product-flat .product-info {
  color: var(--engoc-color-main1); }
.product-flat .product-info .product-title a {
  color: var(--engoc-color-main1); }
.product-flat .product-info .btn-quickview {
  color: var(--engoc-color-main1); }

.product-flat.product-list .product-list {
  border: 0; }
.product-flat.product-list .product-list .product-item {
  border-right: 0; }

.product-grid.product-flat .product-info-ver2 {
  display: none; }
.product-grid.modern-grid-custom .product-info-ver2 {
  display: none; }
.product-grid.modern-grid .product-info-ver2 {
  display: none; }

.ribbon-sale, .ribbon-new {
  top: 12px;
  right: 12px;
  width: 68px;
  height: 23px;
  line-height: 23px;
  background: #eb5050; }
.ribbon-sale span, .ribbon-new span {
  font-weight: 500;
  text-transform: uppercase; }
.ribbon-sale span:before, .ribbon-new span:before {
  border-color: #eb5050 transparent #eb5050 transparent; }
.ribbon-sale.ver2, .ver2.ribbon-new {
  top: 8px;
  right: 8px; }

.ribbon-new {
  width: 68px;
  height: 23px;
  line-height: 23px;
  background: #58d6db; }
.ribbon-new span {
  font-weight: 600;
  letter-spacing: 0.2em; }
.ribbon-new span:before {
  border-color: #58d6db transparent #58d6db transparent; }
.ribbon-new.ver2 {
  top: 8px;
  right: 8px; }

.ribbon-price {
  position: absolute;
  top: -17px;
  right: -15px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  display: inline-block;
  border-radius: 50%; }
.ribbon-price.red {
  background: #ff5050; }
.ribbon-price span {
  font-size: 12px;
  color: #fff;
  font-weight: 500; }
.ribbon-price.v2 {
  top: 17px;
  left: 21px;
  width: 60px;
  height: 20px;
  line-height: 15px; }
.ribbon-price.v3 {
  width: 62px;
  height: 62px;
  line-height: 62px;
  top: 0;
  left: 40px; }
.ribbon-price.v4 {
  top: 13px;
  right: 17px; }

.ribbon-price-h {
  position: absolute;
  top: 40px;
  width: 149px;
  height: 57px;
  line-height: 57px;
  background: var(--engoc-color-main1);
    text-align: center;
    display: inline-block; }
@media (max-width: 768px) {
  .ribbon-price-h {
    top: 15px; } }
@media (max-width: 480px) {
  .ribbon-price-h {
    width: 100px; } }
.ribbon-price-h.left {
  left: -17px; }
@media (max-width: 767px) {
  .ribbon-price-h.left {
    left: 0; } }
.ribbon-price-h.left:before {
  position: absolute;
  top: 0;
  right: -8px;
  content: "";
  border-style: solid;
  border-width: 28px 8px 29px 8px;
  border-color: #000 transparent #000 transparent; }
.ribbon-price-h.left:after {
  border-color: #dedede transparent transparent;
  border-style: solid;
  border-width: 14px 0 0 17px;
  bottom: -14px;
  content: "";
  left: 0;
  position: absolute;
  right: auto;
  z-index: 9; }
@media (max-width: 767px) {
  .ribbon-price-h.left:after {
    content: none; } }
.ribbon-price-h.right {
  right: -17px; }
@media (max-width: 767px) {
  .ribbon-price-h.right {
    right: 0; } }
.ribbon-price-h.right:before {
  position: absolute;
  top: 0;
  left: -15px;
  content: "";
  border-style: solid;
  border-width: 28px 0 29px 15px;
  border-color: #000 transparent #000 transparent; }
.ribbon-price-h.right:after {
  border-right: 17px solid transparent;
  border-top: 14px solid #dddddd;
  bottom: -14px;
  content: "";
  position: absolute;
  right: 0;
  z-index: 9; }
@media (max-width: 767px) {
  .ribbon-price-h.right:after {
    content: none; } }
.ribbon-price-h span {
  font-size: 22px;
  font-weight: 500;
  color: #fff; }
@media (max-width: 768px) {
  .ribbon-price-h span {
    font-size: 16px; } }

.product-grid.product-list {
  padding-top: 0; }
.product-grid.product-list .product-item {
  width: 100%; }
@media (min-width: 768px) {
  .product-grid.product-list .product-item {
    margin-bottom: 40px; }
  .product-grid.product-list .product-item .product-inner {
    padding: 0; } }
@media (min-width: 480px) {
  .product-grid.product-list .product-item .ribbon-price {
    top: 30px;
    right: 30px; } }
.product-grid.product-list .product-item:first-child {
  padding-top: 0; }
.product-grid.product-list .product-item .product-inner {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
@media (max-width: 480px) {
  .product-grid.product-list .product-item .product-inner {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
@media (min-width: 768px) {
  .product-grid.product-list .product-item .product-images,
  .product-grid.product-list .product-item .product-img {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width: 33.3333%;
    position: relative;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px; } }
@media (min-width: 768px) {
  .product-grid.product-list .product-item .product-info {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width: 66.666667%; }
  .product-grid.product-list .product-item .product-info .element-list {
    width: 50%; }
  .product-grid.product-list .product-item .product-info .element-list.element-list-left {
    padding-left: 25px;
    position: relative; }
  .product-grid.product-list .product-item .product-info .element-list.element-list-left:before {
    content: "";
    height: 100%;
    position: absolute;
    border-left: 1px solid #e9e9e9;
    left: -15px; }
  .product-grid.product-list .product-item .product-info .element-list.element-list-left .desc-list {
    margin-top: 40px; }
  .product-grid.product-list .product-item .product-info .element-list.element-list-middle .product-rating {
    margin-top: 24px;
    border-top: 0; } }
.product-grid.product-list .product-item .product-info .element-list-left {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2; }
.product-grid.product-list .product-item .product-info .element-list-middle {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1; }
.product-grid.product-list .product-item .product-info .color-group {
  position: absolute;
  left: 30px;
  top: 46px;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  transform: translateX(-50%) translateY(-50%) rotate(-90deg); }
.product-grid.product-list .product-item .product-info .product-bottom-group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  margin-top: 14px; }
.product-grid.product-list .product-item .product-info .product-bottom-group .btn-icon {
  width: 41px;
  height: 41px;
  line-height: 41px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.product-grid.product-list .product-item .product-info .product-bottom-group .btn-icon:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  border-color: var(--engoc-color-main1); }
.product-grid.product-list .product-item .product-info .product-bottom-group .btn-icon .icon-bg {
  background-size: cover; }
.product-grid.product-list .product-item .product-info .product-bottom-group .btn-icon .icon-cart {
  height: 14px;
  width: 17px; }
.product-grid.product-list .product-item .product-info .product-bottom-group .btn-icon .icon-wishlist {
  height: 12px;
  width: 14px; }
.product-grid.product-list .product-item .product-info .product-bottom-group .btn-icon .icon-compare {
  height: 14px;
  width: 15px; }
.product-grid.product-list .product-item .btn-view {
  display: none; }
.product-grid.product-list .product-item .product-button-group {
  display: none; }
.product-grid.product-list .row {
  margin: 0; }
.product-grid.product-list .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0; }

.product-standard .product-item .product-title a {
  font-weight: 500; }
.product-standard .product-item .product-after-switch .product-price {
  font-weight: 500; }

@media (min-width: 1681px) {
  .shop-colect {
    margin-left: -20px;
    margin-right: -20px; }

  [class*="col-md-"].collection-list {
    padding-left: 20px;
    padding-right: 20px; }

  [class*="col-md-"].collection-sidebar {
    padding-left: 20px;
    padding-right: 20px; } }
.collection-sidebar.v2 .banner {
  margin-bottom: 41px; }

.filter-product {
  padding-top: 34px;
  position: relative; }
@media (min-width: 1025px) {
  .filter-product.e-category {
    padding-bottom: 22px; } }
.filter-product .filtertitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px; }
.filter-product .filter-content {
  padding-top: 30px;
  border-top: 1px solid #e7e7e7;
  padding-bottom: 60px; }
.filter-product .filter-content > li {
  position: relative; }
.filter-product .filter-content > li > a {
  font: 500 14px/35px "Helvetica Neue LT Std", sans-serif;
  color: #a4a4a4;
  display: block;
  position: relative;
  text-transform: capitalize; }
.filter-product .filter-content > li > a:hover {
  color: #777; }
.filter-product .filter-content > li .filter-menu {
  margin-left: 10px;
  display: none; }
.filter-product .filter-content > li .filter-menu > li > a {
  font-size: 12px;
  color: #a4a4a4; }
.filter-product .filter-content > li .filter-menu > li > a:hover {
  color: #777; }
.filter-product .filter-content .plus,
.filter-product .filter-content .minus {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px; }
.filter-product .filter-content .plus:after {
  content: "\f489";
  display: block;
  font-family: "ionicons";
  font-size: 20px;
  position: absolute;
  right: 16px;
  top: 5px;
  color: #333;
  cursor: pointer;
  -moz-transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s; }
.filter-product .filter-content .minus:after {
  content: "\f462";
  display: block;
  font-family: "ionicons";
  font-size: 20px;
  position: absolute;
  right: 16px;
  top: 5px;
  color: #333;
  cursor: pointer;
  -moz-transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s; }
.filter-product .filter-color .filter-content > li > a {
  font-weight: 600;
  text-transform: capitalize; }
.filter-product .filter-size .filter-content .btn {
  width: 100%;
  border-radius: 0;
  background: transparent;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 3px solid var(--engoc-color-main1);
    color: #a4a4a4;
    font-weight: normal; }
.filter-product .filter-size .filter-content .btn .caret {
  float: right;
  margin: 6px 0;
  color: var(--engoc-color-main1); }
.filter-product .filter-size .filter-content .btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }
.filter-product .filter-size .filter-content .dropdown-menu {
  width: 100%; }
.filter-product .filter-size .filter-content .dropdown-menu > li > a {
  text-transform: uppercase; }
.filter-product .owl-nav {
  position: absolute;
  top: -50px;
  right: 12px;
  margin-top: 0; }
.filter-product .owl-theme .owl-nav [class*=owl-] {
  color: #bcbcbc;
  background: transparent;
  padding: 4px 7px;
  margin-left: 0;
  margin-right: 0; }
.filter-product .owl-theme .owl-nav [class*=owl-] span {
  font-size: 17px; }

.product-tab-sw {
  margin-bottom: 53px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
@media (min-width: 480px) {
  .product-tab-sw {
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center; } }
@media (max-width: 480px) {
  .product-tab-sw {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }
.product-tab-sw li {
  float: left;
  padding: 0 3px;
  background: #fff; }
@media (max-width: 480px) {
  .product-tab-sw li {
    margin-bottom: 15px; }
  .product-tab-sw li:last-child {
    margin-bottom: 0; } }
.product-tab-sw li a {
  height: 44px;
  line-height: 40px;
  font-size: 16px;
  width: 174px;
  font-weight: bold;
  color: #666666;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e6e6e7;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
@media (min-width: 480px) {
  .product-tab-sw li a {
    height: 54px;
    line-height: 50px;
    font-size: 20px; } }
.product-tab-sw li a:hover {
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none; }
.product-tab-sw li.active a {
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0; }
.product-tab-sw li:first-child {
  padding-left: 0; }
.product-tab-sw li:last-child {
  padding-right: 0; }
.product-tab-sw.v2 {
  margin-bottom: 0;
  position: relative; }
@media (max-width: 480px) {
  .product-tab-sw.v2 {
    margin-bottom: 20px; } }
.product-tab-sw.v2 li a {
  font-size: 18px; }

.product-tab-sw2 {
  position: relative;
  background: #fff; }
@media (max-width: 1024px) and (min-width: 480px) {
  .product-tab-sw2 {
    margin: 0 auto;
    display: inline-block;
    width: 100%;
    text-align: center; } }
.product-tab-sw2 li {
  display: inline-block;
  margin: 0 auto;
  float: none;
  padding: 0px; }
@media (max-width: 480px) {
  .product-tab-sw2 li {
    width: 100%;
    padding: 2px;
    text-align: center; } }
.product-tab-sw2 li a {
  color: #666666;
  line-height: 45px;
  margin: 0 5px;
  position: relative;
  border: 1px solid #e6e6e6;
  padding: 12px 15px;
  border-radius: 999px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.product-tab-sw2 li a:hover {
  font-weight: normal;
  -webkit-box-shadow: none;
  box-shadow: none; }
.product-tab-sw2 li:first-child a {
  margin-left: 0; }
.product-tab-sw2 li:last-child a {
  margin-right: 0; }
.product-tab-sw2 li.active a {
  font-weight: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0; }

.form-filter-product {
  top: 100%;
  left: 0;
  height: 999em;
  max-height: 100vh;
  padding: 85px 110px;
  position: absolute;
  right: 0;
  margin: 0;
  z-index: 100;
  display: none; }
.form-filter-product:before {
  background: var(--engoc-color-main1);
    bottom: 0;
    content: "";
    height: 999em;
    max-height: 200vh;
    left: 0;
    position: absolute;
    right: 0;
    top: 0; }
@media (max-width: 1024px) {
  .form-filter-product {
    padding: 50px 30px; } }
.form-filter-product .close-left {
  position: relative; }

.product-filter-wrapper {
  margin-top: 20px; }

.product-filter {
  width: 25%;
  float: left;
  padding-right: 10px;
  padding-left: 10px; }
.product-filter .title-filter {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 18px;
  margin-bottom: 35px;
  position: relative;
  display: inline-block; }
.product-filter .title-filter:before {
  border-bottom: 1px solid #3a3a3a;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 40px; }
@media (max-width: 1024px) {
  .product-filter {
    width: 50%;
    margin-right: -10px; } }
@media (max-width: 480px) {
  .product-filter {
    width: 100%;
    float: none; } }

.product-filter-button-group {
  margin-top: 62px; }

.product-filter-button {
  width: 50%;
  float: left;
  position: relative;
  padding-right: 10px;
  padding-left: 10px; }
.product-filter-button:first-child {
  text-align: right; }
@media (max-width: 767px) {
  .product-filter-button:first-child {
    text-align: center; } }
.product-filter-button:last-child {
  text-align: left; }
@media (max-width: 767px) {
  .product-filter-button:last-child {
    text-align: center; } }
@media (max-width: 767px) {
  .product-filter-button {
    width: 100%;
    float: none;
    text-align: center;
    margin-top: 30px; } }
.product-filter-button .btn-submit {
  width: 196px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  color: #fff;
  background: var(--engoc-color-main1);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #fff; }
.product-filter-button .btn-submit:hover {
  background: #fff;
  color: var(--engoc-color-main1); }

.product-filter .form-group {
  position: relative; }
.product-filter .form-control {
  font-size: 14px;
  color: #a4a4a4;
  border-radius: 0;
  border: 1px solid #3a3a3a;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  height: 55px;
  -webkit-appearance: none;
  padding: 0 18px 0 25px;
  text-align: left; }
.product-filter .form-control:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  position: absolute;
  right: 20px;
  bottom: 23px;
  pointer-events: none; }
.product-filter .dropdown-menu {
  border-radius: 0;
  width: 100%;
  padding: 20px 18px 20px 25px;
  margin-top: 10px; }
.product-filter .dropdown-menu li {
  font-size: 14px;
  color: #a4a4a4;
  padding-bottom: 15px;
  cursor: pointer; }
.product-filter .filter-content {
  color: #fff; }
.product-filter .filter-content .slider-track {
  height: 2px;
  background: #a4a4a4; }
.product-filter .filter-content .min-max {
  color: #a4a4a4;
  font-size: 14px;
  font-family: "Helvetica Neue LT Std", sans-serif; }

@media (max-width: 767px) {
  .tab-filter {
    display: inline-block; } }
.tab-filter li {
  float: left;
  margin: 0 12px; }
@media (max-width: 480px) {
  .tab-filter li {
    margin: 0 5px; } }
.tab-filter li a {
  font-size: 16px;
  font-weight: 500;
  color: #a4a4a4; }
@media (max-width: 480px) {
  .tab-filter li a {
    font-size: 13px; } }
.tab-filter li.active a {
  color: var(--engoc-color-main1);
    border-bottom: 1px solid var(--engoc-color-main1); }
.tab-filter li:first-child {
  margin-left: 0; }

.product-flat {
  padding-top: 30px; }

.mg-flat {
  margin: 0 -15px; }

.inner-masonry .grid-item {
  margin-bottom: 30px; }

.ecome-heading {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  position: relative; }
@media (max-width: 480px) {
  .ecome-heading {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: 20px; } }
.ecome-heading h3 {
  font-size: 22px;
  background: #fff; }
.ecome-heading h3.v2 {
  background: #f7f7f7; }
.ecome-heading .btn-show {
  font-size: 16px;
  color: #999999;
  width: 201px;
  line-height: 54px;
  height: 56px;
  display: inline-block;
  text-align: center;
  border: 1px solid #eaeaea;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  background: #fff;
  position: relative;
  z-index: 1;
  border-radius: 999px; }
@media (max-width: 480px) {
  .ecome-heading .btn-show {
    font-size: 14px;
    line-height: 40px;
    height: 40px; } }
.ecome-heading .btn-show i {
  margin-left: 15px; }
.ecome-heading .btn-show:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  color: #fff;
  background: var(--engoc-color-main1);
    border-color: var(--engoc-color-main1); }
@media (min-width: 480px) {
  .ecome-heading.style2:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ededed; } }
.ecome-heading.style2 h3 {
  margin: 13px 0; }
@media (min-width: 480px) {
  .ecome-heading.style2 h3 {
    padding-right: 30px;
    position: relative;
    z-index: 1; } }
@media (min-width: 480px) {
  .ecome-heading.style3:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ededed; } }
.ecome-heading.style3 h3 {
  margin: 13px 0; }
@media (min-width: 480px) {
  .ecome-heading.style3 h3 {
    padding-right: 40px;
    position: relative;
    z-index: 1; } }
@media (min-width: 480px) {
  .ecome-heading.style3v2:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ededed; } }
.ecome-heading.style3v2 h3 {
  margin: 13px 0;
  font-size: 18px; }
@media (min-width: 480px) {
  .ecome-heading.style3v2 h3 {
    padding-right: 28px;
    position: relative;
    z-index: 1; } }
@media (min-width: 480px) {
  .ecome-heading.style5:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ededed; } }
.ecome-heading.style5 h3 {
  margin: 13px 0;
  font-size: 20px;
  font-weight: bold; }
@media (min-width: 480px) {
  .ecome-heading.style5 h3 {
    padding-right: 33px;
    position: relative;
    z-index: 1; } }
@media (min-width: 480px) {
  .ecome-heading.style5v2:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ededed; } }
.ecome-heading.style5v2 h3 {
  margin: 13px 0;
  font-size: 20px;
  font-weight: bold; }
@media (min-width: 480px) {
  .ecome-heading.style5v2 h3 {
    padding-right: 40px;
    position: relative;
    z-index: 1; } }

.ecome-heading.style5v3 h3 {
  margin: 13px 0;
  font-size: 24px;
  font-weight: 400; }
@media (min-width: 480px) {
  .ecome-heading.style5v3 h3 {
    position: relative;
    z-index: 1; } }
@media (max-width: 812px) {
  .ecome-heading.style4 {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
@media (min-width: 1024px) {
  .ecome-heading.style4:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ededed; } }
.ecome-heading.spc3 {
  margin-bottom: 53px; }
.ecome-heading.spc4 {
  margin-bottom: 55px; }
.ecome-heading.spc5 {
  margin-bottom: 43px; }
.ecome-heading.spc5v2 {
  margin-bottom: 55px; }
@media (min-width: 1025px) {
  .ecome-heading.spc5v2 {
    margin-bottom: 77px; } }
.ecome-heading.spc5v3 {
  margin-bottom: 46px;
  flex-direction: column;
}

.ecome-info {
  color: #666666;
  margin-top: -3px; }
.ecome-info.spc1 {
  margin-bottom: 30px; }
@media (min-width: 480px) {
  .ecome-info.spc1 {
    margin-bottom: 67px; } }
.ecome-info.spc3 {
  margin-bottom: 30px; }
@media (min-width: 480px) {
  .ecome-info.spc3 {
    margin-bottom: 91px; } }
.ecome-info.spc2 {
  margin-bottom: 30px; }
@media (min-width: 480px) {
  .ecome-info.spc2 {
    margin-bottom: 73px; } }

.owl-custom-dots.v2 .owl-dots {
  background: #fff; }
.owl-custom-dots .owl-dots {
  border: 1px solid #eaeaea;
  margin: 0 auto;
  border-radius: 999px;
  padding: 8px 11px;
  display: table; }
.owl-custom-dots.owl-theme .owl-dots .owl-dot {
  vertical-align: middle; }
.owl-custom-dots.owl-theme .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  background: #333333;
  opacity: 0.21; }
.owl-custom-dots.owl-theme .owl-dots .owl-dot.active span, .owl-custom-dots.owl-theme .owl-dots .owl-dot:hover span {
  background: #333333;
  opacity: 1; }

/*
5.5. Single product detail page
*/
.e-product-button {
  width: 140px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  letter-spacing: 2px;
  border: 0;
  transition:all .3s ease;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  position: absolute;
  bottom: 15px;
  left: 17px;
  cursor: pointer;
  color: #fff;
  background: var(--engoc-primary-color); }
.e-product-button span {
  font-weight: 600; }
.e-product-button:hover{
  background: var(--engoc-color-main1);
    }
.e-threed-view .nav_bar a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 0;
  text-align: center;
  text-decoration: none;
  text-indent: unset;
  background: #fff; }
.e-threed-view .nav_bar a:after {
  font-size: 26px;
  font-family: "ionicons"; }
.e-threed-view .nav_bar .nav_bar_previous:after {
  content: "\f3d2"; }
.e-threed-view .nav_bar .nav_bar_play:after {
  content: "\f487"; }
.e-threed-view .nav_bar .nav_bar_next:after {
  content: "\f3d3"; }
.e-threed-view .nav_bar .nav_bar_stop:after {
  content: "\f24f"; }

.product-360-view-wrapper {
  position: relative;
  max-width: 800px;
  margin: 100px auto; }

.e-threed-view:after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 50%;
  z-index: 5;
  border-bottom: 5px solid rgba(175, 175, 175, 0.15);
  border-top: 2px solid rgba(175, 175, 175, 0.05);
  border-right: 2px solid rgba(175, 175, 175, 0.1);
  border-left: 2px solid rgba(175, 175, 175, 0.1);
  border-radius: 50%; }

.e-threed-view .nav_bar {
  bottom: 20px;
  z-index: 11;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15); }

.entry-info h3 {
  font-size: 18px;
  padding-bottom: 16px;
  margin-bottom: 0px;
  font-weight: normal;
  position: relative; }
@media (max-width: 767px) {
  .entry-info h3 {
    text-align: center; } }
@media (min-width: 480px) {
  .entry-info h3 {
    font-size: 24px;
    padding-bottom: 24px;
    margin-bottom: 30px; } }
.entry-info h3:before {
  border-bottom: 1px solid transparent;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 85px;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #c26af5, #57eeff);
  border-image: -webkit-gradient(linear, left top, right top, from(#c26af5), to(#57eeff));
  border-image: linear-gradient(to right, #c26af5, #57eeff);
  border-image-slice: 1; }
@media (min-width: 767px) {
  .entry-info h3:before {
    border-bottom: 1px solid transparent;
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
    width: 85px;
    -webkit-transform: none;
    transform: none; } }

.entry-title {
  font-weight: 300;
  position: relative; }
.entry-title.spc {
  padding-bottom: 24px;
  margin-bottom: 30px;
  padding-top: 24px; }
@media (min-width: 1025px) {
  .entry-title {
    font-size: 30px;
    line-height: 40px; }
  .entry-title.spc {
    padding-bottom: 34px;
    margin-bottom: 57px;
    padding-top: 32px; } }
.entry-title:before {
  border-bottom: 1px solid transparent;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 85px;
  border: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
  background: linear-gradient(90deg, #c467f5, #53f3ff); }
.entry-title.v2:before {
  content: none; }

@media (min-width: 1025px) {
  .s-50 {
    width: 50%; }

  .single-flex {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-pack: space-between; }

  .single-product-feature {
    padding-left: 15px; } }
@media (min-width: 1367px) {
  .single-product-feature {
    padding-left: 84px; } }
.s-50 {
  width: 100%; }

.hot-line {
  margin-top: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#c26af5), to(#54f0ff));
  background: linear-gradient(to right, #c26af5, #54f0ff);
  border-radius: 10px;
  padding: 2px; }
.hot-line > p {
  background: #fff;
  display: block;
  border-radius: 9px 9px 0 0;
  padding: 15px 17px 1px 17px;
  color: #666666; }
.hot-line .tele {
  background: #fff;
  border-radius: 0 0 9px 9px;
  padding: 0px 0px 16px 17px;
  font-size: 22px;
  font-weight: 300; }
.hot-line .tele img {
  margin-right: 15px; }

.single-feature-box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  padding-left: 23px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5; }
@media (min-width: 1367px) {
  .single-feature-box {
    padding-right: 45px; } }
.single-feature-box:last-child {
  border-bottom: 0; }
.single-feature-box:first-child .single-feature-img {
  width: 70px; }
.single-feature-box .single-feature-img {
  margin-right: 15px; }
.single-feature-box .single-feature-img img {
  opacity: 0.3; }
.single-feature-box .single-feature-info h3 {
  font-size: 14px;
  margin-bottom: 7px; }
.single-feature-box .single-feature-info p {
  color: #999;
  font-size: 12px;
  line-height: 18px; }

.e-qa {

  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  margin-top: 70px;
  margin-bottom: 40px; }
@media (min-width: 1681px) {
  .e-qa {
    padding-left: 80px;
    padding-right: 80px; }
  .e-qa .row {
    margin-left: -20px;
    margin-right: -20px; }
  .e-qa [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }
@media (min-width: 1025px) {
  .e-qa {
    padding-bottom: 79px;
    margin-top: 93px; }
  .e-qa.v2 {
    margin-top: 60px;
    padding-bottom: 44px;
    margin-bottom: 87px; } }
.e-qa .form_newsletter {
  position: relative; }
.e-qa .form_newsletter .form-control {
  height: 63px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  background: #fff;
  padding-left: 37px; }
.e-qa .form_newsletter .form-control::-webkit-input-placeholder {
  color: 14px;
  font-size: #999999; }
.e-qa .form_newsletter .form-control:-moz-placeholder {
  color: 14px;
  font-size: #999999; }
.e-qa .form_newsletter .form-control::-moz-placeholder {
  color: 14px;
  font-size: #999999; }
.e-qa .form_newsletter .form-control:-ms-input-placeholder {
  color: 14px;
  font-size: #999999; }
@media (min-width: 480px) {
  .e-qa .form_newsletter .button_mini {
    position: absolute;
    top: 0;
    margin-top: 0;
    right: 0; } }
.e-qa .form_newsletter .button_mini.btn {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  font-size: 16px;
  font-weight: normal;
  height: 63px;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  width: 176px;
  line-height: 54px; }
@media (min-width: 480px) {
  .e-qa .form_newsletter .button_mini.btn {
    border-radius: 0 5px 5px 0; } }
@media (max-width: 480px) {
  .e-qa .form_newsletter .button_mini.btn {
    margin-top: 15px;
    width: 100%; } }
.e-qa .form_newsletter .button_mini.btn i {
  margin-left: 10px; }

.btn-qa {
  width: 275px;
  height: 55px;
  line-height: 55px;
  font-weight: 500;
  color: #fff;
  display: block;
  text-align: center;
  background: #333333;
  border-radius: 999px;
  margin: 34px auto 67px auto; }
@media (max-width: 480px) {
  .btn-qa {
    margin: 20px auto 40px auto; } }
.btn-qa i {
  margin-left: 10px; }

.qa-icon {
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50%;
  border: 1px solid #ececec;
  display: inline-block;
  margin-right: 15px; }
@media (max-width: 812px) {
  .qa-icon {
    display: none; } }

.qa-element {
  padding: 30px 0;
  border-bottom: 1px solid #e9e9e9; }
@media (min-width: 1025px) {
  .qa-element {
    padding-top: 48px;
    padding-bottom: 42px; } }
.qa-element:last-child {
  border-bottom: 0; }
.qa-element:first-child {
  padding-top: 30px; }
.qa-element h3 {
  font-size: 16px; }
@media (min-width: 768px) {
  .qa-element h3 {
    max-width: 230px; } }
@media (min-width: 1025px) {
  .qa-element h3 {
    max-width: 100%; } }
.qa-element p {
  color: #666666;
  line-height: 26px; }
@media (min-width: 768px) {
  .qa-element p {
    max-width: 360px; } }
@media (min-width: 813px) {
  .qa-element p {
    height: 80px; } }
@media (min-width: 1025px) {
  .qa-element p {
    max-width: 475px; } }
@media (min-width: 1681px) {
  .qa-element p {
    max-width: 514px; } }

@media (min-width: 813px) {
  .qa-answer > * {
    display: inline-block; } }

.qa-quest {
  margin-bottom: 10px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
.qa-quest .qa-icon {
  margin-right: 19px; }

.qa-answer > * {
  vertical-align: top; }

.breadcrumb > li > a {
  color: var(--engoc-primary-color); }
.breadcrumb .active {
  color: #666666; }
@media (min-width: 1681px) {
  .breadcrumb.v2 {
    margin-bottom: 64px; } }
@media (min-width: 1025px) {
  .breadcrumb.v3 {
    margin: 42px 0; } }
.breadcrumb.v4 {
  margin: 24px 0; }

.add-cart, .tab-desc .product-info-ver2 .btn-download {
  width: 237px;
  height: 54px;
  line-height: 54px;
  background: var(--engoc-color-main1);
    color: #fff;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-right: 13px; }
.add-cart:hover, .tab-desc .product-info-ver2 .btn-download:hover {
  background: var(--engoc-color-main1);
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }

@media (min-width: 1025px) {
  .product-bundle .breadcrumb {
    margin-top: 38px;
    margin-bottom: 48px; } }

@media (min-width: 1681px) {
  .single-product-detail [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; }
  .single-product-detail .row {
    margin-left: -20px;
    margin-right: -20px; } }
@media (min-width: 1025px) and (max-width: 1366px) {
  .single-product-detail.v2 [class*="col-"] {
    width: 50%; } }
@media (min-width: 1367px) {
  .single-product-detail.v2 [class*="col-"]:last-child {
    padding-right: 0; } }
.single-product-detail .product-images {
  position: relative; }
.single-product-detail .single-product-info label {
  color: var(--engoc-color-main1);
    font-weight: 500;
    margin-bottom: 0; }
.single-product-detail .single-product-info .product-rating {
  margin-bottom: 16px; }
.single-product-detail .single-product-info .product-title {
  font-size: 18px;
  font-weight: normal; }
.single-product-detail .single-product-info .product-price {
  margin: 10px 0 10px 0; }
.single-product-detail .single-product-info .product-price > span {
  font-weight: 400;
  font-size: 24px;
  color: var(--engoc-primary-color); }
.single-product-detail .single-product-info .product-price span.old {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
  margin-right: 5px; }
.single-product-detail .single-product-info .availability {
  margin-bottom: 15px; }
.single-product-detail .single-product-info .availability .product-inventory label {
  color: #999999; }
.single-product-detail .single-product-info .availability .product-inventory span {
  color: #5cb85c;
  font-weight: bold; }
.single-product-detail .single-product-info .product-brand {
  margin-bottom: 27px; }
.single-product-detail .single-product-info .product-brand p {
  margin-bottom: 13px; }
.single-product-detail .single-product-info .product-sku {
  margin-bottom: 26px; }
.single-product-detail .single-product-info .product-sku span {
  color: #999999; }
.single-product-detail .single-product-info .product-sku .desc-list {
  margin-bottom: 26px; }
.single-product-detail .single-product-info .short-desc {
  margin-bottom: 23px; }
.single-product-detail .single-product-info .product-desc {
  color: #666666;
  line-height: 21.99px;
  margin-bottom: 20px; }
@media (min-width: 1025px) {
  .single-product-detail .single-product-info .product-desc {
    max-width: 328px; } }
.single-product-detail .single-product-info .color-group {
  margin-bottom: 34px; }
.single-product-detail .single-product-info .color-group label {
  vertical-align: middle; }
.single-product-detail .single-product-info .color-group .circle {
  vertical-align: middle; }
.single-product-detail .single-product-info .product-tags a {
  color: #999999; }
.single-product-detail .single-product-info .product-tags a:hover {
  color: #333333; }
.single-product-detail .single-product-info .single-product-button-group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px; }
.single-product-detail .single-product-info .single-product-button-group .e-btn {
  margin-right: 0px; }
/*     .single-product-detail .single-product-info .single-product-button-group .e-btn:last-child {
margin-right: 0; } */
/*     @media (max-width: 480px) {
.single-product-detail .single-product-info .single-product-button-group .e-btn:last-child {
display: none; } } */
.single-product-detail .single-product-info .cart-qtt {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.single-product-detail .single-product-info .cart-qtt .btn-add-cart {
  transition:all .3s ease;
  width: 140px;
  height: 40px;
  border-radius: 50px;
  background: var(--engoc-color-main1);
    justify-content: center;
    font-weight: 600;
    color: #fff;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -moz-align-items: center;
      -ms-align-items: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
.single-product-detail .single-product-info .cart-qtt .btn-add-cart.btn-amazon {
  width: 260px;
  height: auto;
}
.single-product-detail .single-product-info .cart-qtt .btn-add-cart:hover{
  background:var(--engoc-primary-color);
    }
.single-product-detail .single-product-info .cart-qtt .btn-add-cart p {
  margin-left: 8px; }
.single-product-detail .single-product-info .cart-qtt .btn-add-cart.btn-outofstock {
  color: #333333;
  margin:0 auto; }
.single-product-detail .single-product-info .cart-qtt .btn-add-cart.btn-amazon {
  text-align: center;
  display: block; }
.single-product-detail .single-product-info .cart-qtt.no-qtt {
  padding: 0;
  border: 2px solid #eaeaea;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  display: block;
  line-height: 43px; }
.single-product-detail .single-product-info .cart-qtt.no-qtt.v2 {
  border: 0;
  width: 260px;
  line-height: 55px; }
.single-product-detail .single-product-info .cart-qtt.no-qtt.v3 {
  border: 0;
  width: 148px;
  line-height: 47px; }
.single-product-detail .single-product-info .btn-icon {
  font-size: 20px;
  width: 65px;
  height: 55px;
  line-height: 50px;
  border: 2px solid var(--engoc-color-main1);
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;-webkit-align-self: flex-end; /* add prefixed version */
    -ms-flex-item-align: end; /* add prefixed version */
    align-self: flex-end; }
.single-product-detail .single-product-info .e-quantity {
  width: 140px;
  height: 40px;
  text-align: left;
  margin-right: 0;
  position: relative;
  background: #fff;
  color: #333333; }
.single-product-detail .single-product-info .e-quantity input[type=number]::-webkit-inner-spin-button,
.single-product-detail .single-product-info .e-quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0; }
.single-product-detail .single-product-info .e-quantity input.input-text[type=text] {
  width: 140px;
  height: 40px;
  background: 0 0;
  padding: 0;
  font-weight: 500;
  font-size: 20px;
  text-align: center; }
.single-product-detail .single-product-info .e-quantity .tc {
  top: 0;
  right: 0;
  width: 20px;
  position: absolute;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column; }
.single-product-detail .single-product-info .e-quantity .tc a {
  height: 10px;
  line-height: 30px;
  color: #bfbfbf;
  cursor: pointer; }
.single-product-detail .single-product-info .share-social {
  text-align: right; }
@media (max-width: 768px) {
  .single-product-detail .single-product-info .share-social {
    text-align: unset; } }
.single-product-detail .single-product-info .share-social span {
  font-weight: 500;
  text-decoration: underline; }
.single-product-detail .single-product-info .share-social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: #f3f3f3;
  margin: 0 5px; }
.single-product-detail .single-product-info .share-social a:last-child {
  margin-right: 0; }
.single-product-detail .single-product-info .mobile-column {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

@media (max-width: 768px) {
  .share-social {
    text-align: unset; } }
.share-social span {
  font-weight: 500;
  text-decoration: underline; }
.share-social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: #f3f3f3;
  margin: 0 5px; }
.share-social a:last-child {
  margin-right: 0; }

.single-product-tab .nav-tabs {
  background: #fff;
  margin: 0 auto;
  margin-bottom: 29px; }
@media (min-width: 480px) {
  .single-product-tab .nav-tabs {

    line-height: 80px; } }
.single-product-tab .nav-tabs.v2 {
  margin-bottom: 17px; }
.single-product-tab .nav-tabs.v3 {
  margin-bottom: 20px; }
.single-product-tab .nav-tabs > li {
  float: none;
  display: inline-block;
  text-align: center; }
.single-product-tab .nav-tabs > li > a {
  border: 0;
  font-size: 18px;
  font-weight: 500;
  color: #999;
  margin: 0;
  padding: 8px 40px 8px 0; }
@media (max-width: 480px) {
  .single-product-tab .nav-tabs > li > a {
    padding: 0; } }
.single-product-tab .nav-tabs > li > a:hover {
  border: 0; }
.single-product-tab .nav-tabs > li > a:before {

  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
@media (max-width: 767px) {
  .single-product-tab .nav-tabs > li > a:before {
    content: none; } }
@media (max-width: 480px) {
  .single-product-tab .nav-tabs > li {
    display: block; } }
.single-product-tab .nav-tabs > li:first-child > a {
  padding-left: 0; }
.single-product-tab .nav-tabs > li:first-child > a:before {
  content: none; }
.single-product-tab .nav-tabs > li:last-child > a {
  padding-right: 0; }
.single-product-tab .nav-tabs li.active > a {
  background-color: transparent;
  border: 0;
  color: #333; }
.single-product-tab .nav-tabs li.active:hover {
  border: 0; }
.single-product-tab .nav-tabs.nav-space {
  margin-bottom: 67px; }
.single-product-tab .tab-content p {
  font-size: 14px;
  line-height: 26px;
  color: #666666; }
@media (max-width: 767px) {
  .single-product-tab .tab-content p {
    padding: 20px 0; } }
.single-product-tab .tab-content .p-center {
  text-align: center; }
@media (min-width: 1025px) {
  .single-product-tab .tab-content .p-center {
    width: 756px;
    margin: 0 auto 50px auto; } }

.entry-content {
  overflow: hidden; }
@media (max-width: 1024px) {
  .entry-content {
    padding: 0 15px; } }
.entry-content .entry-img-first {
  padding: 0 30px; }
@media (min-width: 1681px) {
  .entry-content .entry-img-first {
    padding-left: 78px;
    padding-right: 78px; }
  .entry-content .entry-img-first.v2 {
    padding-left: 0;
    padding-right: 0; } }
@media (min-width: 480px) {
  .entry-content .entry-element {
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-pack: space-between; } }
.entry-content .entry-element h3 {
  font-size: 18px;
  padding-bottom: 16px;
  margin-bottom: 0px;
  font-weight: normal;
  position: relative; }
@media (min-width: 480px) {
  .entry-content .entry-element h3 {
    font-size: 24px;
    padding-bottom: 24px;
    margin-bottom: 30px; } }
.entry-content .entry-element h3:before {
  border-bottom: 1px solid transparent;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 85px;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #c26af5, #57eeff);
  border-image: -webkit-gradient(linear, left top, right top, from(#c26af5), to(#57eeff));
  border-image: linear-gradient(to right, #c26af5, #57eeff);
  border-image-slice: 1; }
@media (min-width: 480px) {
  .entry-content .entry-element h3:before {
    border-bottom: 1px solid transparent;
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
    width: 85px;
    -webkit-transform: none;
    transform: none; } }
.entry-content .entry-element p {
  line-height: 26px; }
.entry-content .entry-element .entry-img {
  width: 45.001%; }
@media (max-width: 480px) {
  .entry-content .entry-element .entry-img {
    width: 100%;
    margin-bottom: 30px; } }
.entry-content .entry-element .entry-info {
  width: 54.999%; }
@media (max-width: 480px) {
  .entry-content .entry-element .entry-info {
    width: 100%; } }
@media (min-width: 480px) {
  .entry-content .entry-element.v2 .entry-img {
    width: 57%; } }
@media (min-width: 480px) {
  .entry-content .entry-element.v2 .entry-info {
    width: 43%; } }
.entry-content.active::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background: linear-gradient(transparent, #fff);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 600px;
  opacity: .7;
  z-index: 3;
  height: 200px; }
@media (min-width: 1025px) {
  .entry-content.active::before {
    height: 500px; } }

@media (min-width: 1025px) {
  .entry-inside {
    padding-left: 200px;
    padding-right: 200px; }
  .entry-inside.v2 {
    padding: 0 78px; }
  .entry-inside.v3 {
    padding-left: 120px;
    padding-right: 120px; }
  .entry-inside.v4 {
    padding: 0 350px; } }
@media (min-width: 1681px) {
  .entry-inside.v4 {
    padding: 0 455px; } }

.entry-inside.v3 .entry-middle {
  padding: 30px 0; }
@media (min-width: 1025px) {
  .entry-inside.v3 .entry-middle {
    padding-top: 84px;
    padding-bottom: 76px; } }

@media (max-width: 480px) {
  .entry-element {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0 15px;
    text-align: center; } }
.entry-element:first-child {
  border-bottom: 1px solid #f0f0f0;
  padding-top: 69px;
  padding-bottom: 82px; }
@media (max-width: 480px) {
  .entry-element:first-child {
    padding-top: 40px;
    padding-bottom: 15px; } }
@media (min-width: 480px) {
  .entry-element:first-child .entry-img {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1; } }
.entry-element:last-child {
  padding-top: 80px;
  padding-bottom: 92px; }
@media (max-width: 480px) {
  .entry-element:last-child {
    padding-top: 40px;
    padding-bottom: 30px; } }
@media (min-width: 480px) {
  .entry-element:last-child .entry-info {
    text-align: right; } }
@media (min-width: 480px) {
  .entry-element:last-child .entry-info h3:before {
    left: unset;
    border-bottom: 1px solid transparent;
    bottom: 0;
    right: 0;
    content: "";
    position: absolute;
    width: 85px; } }
.entry-element.v2:first-child {
  padding-top: 49px; }

.information {
  background: #303030;
  padding: 20px 0; }
@media (min-width: 1025px) {
  .information {
    line-height: 84px;
    height: 84px;
    padding: 0; } }
.information ul > li {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #a5a5a5;
  text-align: center; }
@media (min-width: 1025px) {
  .information ul > li {
    width: 33.33333%;
    float: left; } }
.information ul > li span {
  color: #fff; }
.information ul > li a {
  color: #a5a5a5; }
.information ul > li a:hover {
  color: #777; }
@media (min-width: 1025px) {
  .information ul .info-left {
    text-align: right; } }
@media (min-width: 1025px) {
  .information ul .info-right {
    text-align: left; } }

.product-related {
  padding: 92px 0 25px 0; }
.product-related .title {
  font-size: 22px;
  font-weight: 500;
  position: relative;
  margin: 0 0 56px;
  padding-bottom: 12px; }
.product-related .title:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 73px; }

.product-related .owl-nav > div {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--engoc-color-main1);
    font-size: 22px;
    left: 0;
    position: absolute;
    top: 35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }
@media (max-width: 1024px) {
  .product-related .owl-nav > div {
    opacity: 1; } }

.product-related:hover .owl-nav > div {
  opacity: 1; }

.product-related .owl-theme .owl-nav [class*=owl-] {
  background: #fff;
  color: var(--engoc-color-main1);
    margin: 0;
    padding: 0;
    font-size: 22px;
    border-radius: 0; }

.product-related .owl-nav > div.owl-prev {
  right: auto;
  left: 0; }

.product-related .owl-nav > div.owl-next {
  right: 0;
  left: auto; }

.single-product-detail.single-product-fullwidth .product-images {
  margin-bottom: 30px; }
.single-product-detail.single-product-fullwidth .single-product-info {
  margin: 0 auto;
  text-align: center; }
@media (min-width: 1025px) {
  .single-product-detail.single-product-fullwidth .single-product-info {
    width: 1170px; } }
.single-product-detail.single-product-fullwidth .single-product-info .product-cate {
  margin-bottom: 16px; }
.single-product-detail.single-product-fullwidth .single-product-info .product-rating {
  margin-bottom: 16px; }
.single-product-detail.single-product-fullwidth .single-product-info .product-title {
  margin-bottom: 0; }
.single-product-detail.single-product-fullwidth .single-product-info .rating-star .icon-rating {
  margin-right: 10px;
  display: inline;
  float: none; }
.single-product-detail.single-product-fullwidth .single-product-info .action .quantity {
  float: none;
  margin-right: 18px;
  display: inline-block;
  vertical-align: top; }
@media (max-width: 480px) {
  .single-product-detail.single-product-fullwidth .single-product-info .action .link-ver1 {
    float: none; } }
.single-product-detail.single-product-fullwidth .single-product-info .share-social {
  text-align: center;
  margin: 60px 0; }
.single-product-detail.single-product-fullwidth .single-product-info .product-desc {
  margin: 0 auto; }
@media (min-width: 1025px) {
  .single-product-detail.single-product-fullwidth .single-product-info .product-desc {
    max-width: 930px; } }
.single-product-detail.single-product-fullwidth .single-product-info .action .quantity {
  float: none; }
.single-product-detail.single-product-fullwidth .single-product-info .action .add-cart, .single-product-detail.single-product-fullwidth .single-product-info .action .tab-desc .product-info-ver2 .btn-download, .tab-desc .product-info-ver2 .single-product-detail.single-product-fullwidth .single-product-info .action .btn-download {
  display: block;
  margin: 18px auto; }

.multiple-img-list {
  margin: 0 auto;
  display: inline-block; }
@media (min-width: 768px) {
  .multiple-img-list {
    left: 0;
    right: 0;
    bottom: 45px;
    width: 365px;
    position: absolute; } }
@media (max-width: 767px) {
  .multiple-img-list {
    margin-top: 15px; } }
.multiple-img-list .product-col {
  float: left;
  width: 33.33333%;
  padding: 0 6px; }
@media (max-width: 767px) {
  .multiple-img-list .product-col {
    padding: 0; } }
.multiple-img-list .product-col .img {
  border: 4px solid #fff;
  opacity: 0.6; }
.multiple-img-list .product-col .img.active {
  opacity: 1; }

.multiple-img-list-ver2 {
  position: relative; }
.multiple-img-list-ver2.slick-vertical .slick-slide {
  border-radius: 10px; }
.multiple-img-list-ver2.v2 .slick-slide {
  border-radius: 10px; }
@media (max-width: 1366px) {
  .multiple-img-list-ver2 {
    margin: 0 -4px; } }
@media (min-width: 1367px) {
  .multiple-img-list-ver2 {
    width: 16.6666%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 12px; }
  .multiple-img-list-ver2.v2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0;
    margin-left: 12px; }
  .multiple-img-list-ver2 .img img {
    width: 100%;
    /*         border-radius: 10px;
    border: 1px solid #eaeaea; */
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .multiple-img-list-ver2 .slick-slide img {
    display: inline-block; }
  .multiple-img-list-ver2 .product-col .img {
    display: inline-block; } }
.multiple-img-list-ver2 .product-col {
  margin-bottom: 10px; }
.multiple-img-list-ver2 .product-col.v2 {
  margin-bottom: 14px; }
@media (max-width: 1366px) {
  .multiple-img-list-ver2 .product-col {
    margin-top: 30px;
    width: 108px;
    padding: 0 4px; }
  .multiple-img-list-ver2 .product-col .img img {
    border: 1px solid #eaeaea;
    opacity: .5;
    -webkit-transition: all .3s;
    transition: all .3s; } }
.multiple-img-list-ver2 .slick-current .img img {
  border: 1px solid var(--engoc-color-main1);
    opacity: 1; }

.main-img a {
  overflow: hidden; }

.main-img.v2 a {
  border-radius: 0;
  border: 0; }
.main-img.v2 img {
  border-radius: 0; }

.product-images {
  /*   border-radius: 10px;
  border: 1px solid #eaeaea; */
  overflow: hidden; }
@media (min-width: 1367px) {
  .product-images {
    width: 81.5555%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2; }
  .product-images.v2 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
    border: 0; } }

@media (max-width: 1366px) {
  .product-img-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; } }

.action {
  margin: 30px 0 30px 0; }
.action.v2 {
  margin: 0 0 30px 0; }
.action.v3 {
  margin: 20px 0 20px 0; }
.action.v4 {
  margin: 40px 0 40px 0; }
.action.v5 {
  margin: 30px 0 40px 0; }
.action.v6 {
  margin: 40px 0 20px 0; }
.action.v7 {
  margin: 0; }

.btn-video, .btn-360 {
  height: 42px;
  line-height: 42px;
  font-size: 11px;
  letter-spacing: 0.3em; }
.btn-video a, .btn-360 a {
  border-radius: 25px;
  -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  color: var(--engoc-color-main1);
    display: inline-block;
    font-weight: 500;
    line-height: 42px;
    padding: 0 25px;
    text-transform: uppercase; }
.btn-video a:before, .btn-360 a:before {
  background: #000000 none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  content: "\F0da";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 18px;
  height: 38px;
  letter-spacing: -3px;
  line-height: 38px;
  margin-left: -22px;
  margin-right: 13px;
  text-align: center;
  vertical-align: middle;
  width: 38px; }

.btn-360 a:before {
  content: "\e098";
  font-family: simple-line-icons; }

.single-product-tab .product-info-ver2 {
  max-width: 485px; }
.single-product-tab .product-info-ver2.v2 {
  max-width: 379px; }
.single-product-tab .product-info-ver2.v3 {
  max-width: 385px; }
@media (max-width: 767px) {
  .single-product-tab .product-info-ver2 {
    margin: 0 auto; } }
.single-product-tab .product-info-ver2 .product-title {
  position: relative;
  padding-bottom: 10px;
  font-size: 30px;
  color: var(--engoc-color-main1); }
@media (max-width: 767px) {
  .single-product-tab .product-info-ver2 .product-title {
    font-size: 20px; } }
.single-product-tab .product-info-ver2 .product-title a {
  font-size: 30px;
  color: var(--engoc-color-main1); }
@media (max-width: 767px) {
  .single-product-tab .product-info-ver2 .product-title a {
    font-size: 20px; } }
.single-product-tab .product-info-ver2 .product-title:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 73px; }
.single-product-tab .product-info-ver2 .product-title.ver2:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 73px; }
.single-product-tab .product-info-ver2 .product-title.ver3:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  right: 0;
  content: "";
  position: absolute;
  width: 73px;
  left: unset; }
@media (max-width: 1024px) {
  .single-product-tab .product-info-ver2 .product-title.ver3:before {
    margin: 0 auto;
    left: 0; } }
@media (min-width: 1025px) {
  .single-product-tab .product-info-ver2 .product-title.swith {
    max-width: 287px;
    margin: 0 auto; } }
.single-product-tab .product-info-ver2 .product-title.space-pm {
  padding-bottom: 20px;
  margin-bottom: 20px; }
.single-product-tab .product-info-ver2 .product-desc.center {
  margin: 0 auto; }
.single-product-tab .product-info-ver2.center {
  margin: 0 auto; }
@media (max-width: 1024px) {
  .single-product-tab .product-info-ver2.center {
    padding: 30px 0; } }
@media (min-width: 1025px) {
  .single-product-tab .product-info-ver2.right {
    text-align: right;
    float: right; } }

.tab-bg img {
  width: 100%; }

@media (min-width: 1025px) {
  .flex-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; } }
.tab-desc {
  display: inline-block;
  vertical-align: bottom; }
.tab-desc [class*="col-"] {
  padding: 0; }
@media (min-width: 1025px) {
  .tab-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #171717; } }
.tab-desc .column-1 {
  background: #171717; }
.tab-desc .product-info-ver2 .product-title {
  position: relative;
  max-width: 348px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding-bottom: 20px; }
.tab-desc .product-info-ver2 .product-title a {
  color: #fff;
  font-size: 30px;
  font-weight: 500; }
@media (max-width: 767px) {
  .tab-desc .product-info-ver2 .product-title a {
    font-size: 20px; } }
.tab-desc .product-info-ver2 .product-title:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 73px; }
.tab-desc .product-info-ver2 .product-desc {
  padding: 0 0 45px 0; }
.tab-desc .product-info-ver2 .btn-download {
  background: #eb5050;
  margin-right: 0; }

.single-product-detail .single-product-info .group-info .product-title a {
  font-size: 16px;
  color: #eb5050; }
.single-product-detail .single-product-info .group-info .product-price {
  margin: 0; }
.single-product-detail .single-product-info .group-info .product-price span {
  font-size: 14px;
  color: #a4a4a4; }
@media (max-width: 480px) {
  .single-product-detail .single-product-info .group-item .quantity {
    float: none; } }

.tab-group:first-child {
  background: #f8f8f8; }
.tab-group:nth-child(2n+1) {
  background: #f8f8f8; }
@media (min-width: 768px) {
  .tab-group .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }
.tab-group .product-info-ver2 .product-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px; }
.tab-group .product-info-ver2 .product-title a {
  font-size: 30px;
  color: var(--engoc-color-main1); }
.tab-group .product-info-ver2 .product-title:before {
  border-bottom: 1px solid #eb5050;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 73px; }
.tab-group .product-info-ver2 .product-desc {
  max-width: 379px;
  text-align: left;
  margin: unset; }

.tab-simple > [class*="col-"] {
  padding: 0; }
.tab-simple .product-images {
  position: relative; }
@media (min-width: 1024px) {
  .tab-simple .tab-simple-content {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    right: 42px;
    z-index: 1; } }
@media (min-width: 1500px) {
  .tab-simple .tab-simple-content {
    width: 1669px;
    bottom: 96px; } }
@media (min-width: 1024px) {
  .tab-simple .tab-simple-content .product-info-ver2 h3 a {
    color: #fff; } }
.tab-simple .createdby {
  font-size: 80px;
  font-family: "Playfair Display";
  font-weight: 600;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
@media (max-width: 1366px) {
  .tab-simple .createdby {
    font-size: 60px; } }
@media (max-width: 1024px) {
  .tab-simple .createdby {
    font-size: 25px; } }
@media (max-width: 480px) {
  .tab-simple .createdby {
    font-size: 14px; } }
.tab-simple .createdby span {
  font-style: italic;
  font-weight: normal; }

.tab-variable {
  display: inline-block;
  vertical-align: bottom; }
.tab-variable > [class*="col-"] {
  padding: 0; }
@media (min-width: 768px) {
  .tab-variable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }
.tab-variable:nth-child(2n+1) {
  background: #f8f8f8; }

@media (min-width: 1500px) {
  .tab-variable-col {
    width: 100%;
    padding: 165px 175px 193px 175px; } }
.tab-variable-col .product-info-ver2 {
  padding: 35px 0; }
.tab-variable-col .product-info-ver2:first-child {
  border-bottom: 1px solid #eaeaea; }
@media (max-width: 1024px) {
  .tab-variable-col .product-info-ver2 {
    margin: 0 auto;
    text-align: center; }
  .tab-variable-col .product-info-ver2 .product-title:before {
    margin: 0 auto;
    right: 0; } }

.product-aff {
  margin-bottom: 70px; }

.single-product-tab {
  margin-top: 90px; }
@media (max-width: 480px) {
  .single-product-tab {
    margin-top: 30px; }
  .single-product-tab .cmt-title.abs {
    top: 0;
    padding: 10px 0; } }
.single-product-tab.ver2 {
  margin-bottom: 0px; }
@media (min-width: 480px) {
  .single-product-tab.ver3 {
    margin-top: 60px; } }
.single-product-tab .tab-content {
  position: relative; }
.single-product-tab .entry-button {
  z-index: 4;
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0; }
.single-product-tab .entry-button.active {
  background-image: unset; }
.single-product-tab .entry-button .btn-show {
  background: #fff;
  font-size: 12px;
  color: #999;
  width: 112px;
  line-height: 32px;
  height: 34px;
  display: inline-block;
  text-align: center;
  border: 1px solid #eaeaea;
  font-weight: 500;
  border-radius: 999px; }
.single-product-tab .entry-button .btn-show i {
  margin-left: 5px; }

.single-product-tab .product-info-ver2.v2 .product-title {
  margin-bottom: 25px; }

.single-product-left .product-images {
  margin-bottom: 30px; }

@media (min-width: 1500px) {
  .single-product-info.v2 {
    padding-left: 69px; } }
.single-product-right {
  max-width: 555px;
  position: static; }

/* The sticky */
@media (min-width: 768px) {
  .sticky.fixed {
    height: 532px;
    max-width: 490px;
    position: fixed;
    top: 130px;
    z-index: auto; } }
.single-product-space {
  margin-bottom: 75px; }
.single-product-space.v2 {
  margin-bottom: 90px; }
.single-product-space.v3 {
  margin-bottom: 40px; }

.single-product-tab .nav > li > a {
  padding-bottom: 5px; }

@media (max-width: 320px) {
  #my360 .modal-dialog {
    margin: 5px; } }

.product-grouped {
  padding-top: 13px;
  padding-bottom: 30px; }

.single-product-detail .single-product-info .product-grouped .e-quantity input.input-text[type=number] {
  border-radius: 999px;
  border: 2px solid #eaeaea; }

.group-title {
  margin-left: 15px; }
.group-title h3 {
  font-size: 14px;
  line-height: 22px; }

.group-price {
  color: #ff5050;
  font-weight: 500; }

.product-grouped-element:first-child {
  margin-bottom: 19px; }

.bundle-title {
  font-size: 18px; }
.bundle-title.spc {
  padding-bottom: 33px;
  padding-top: 47px; }
@media (max-width: 480px) {
  .bundle-title.spc {
    padding-bottom: 15px;
    padding-top: 25px; } }
@media (max-width: 480px) {
  .product-bundle .bundle .row.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; } }
@media (min-width: 1025px) {
  .bundle-product {

    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row; } }
@media (min-width: 1024px) {
  .bundle-product {
    margin-left: -23px;
    margin-right: -23px; } }
.bundle-product .bundle-product-img {
  position: relative; }
@media (min-width: 768px) {
  .bundle-product .bundle-product-img {
    max-width: 193px;
    padding-left: 23px;
    padding-right: 23px; } }
.bundle-product .bundle-product-img:before {
  content: "\f218";
  font-family: 'ionicons', sans-serif;
  color: #999999;
  position: absolute;
  top: 50%;
  left: -6px; }
.bundle-product .bundle-product-img:first-child:before {
  content: none; }

.product-bundle-list.spc {
  padding-top: 27px;
  padding-bottom: 48px; }
@media (max-width: 480px) {
  .product-bundle-list.spc {
    padding-bottom: 25px; } }
.product-bundle-list input {
  display: none; }
.product-bundle-list input[type="checkbox"]:checked + label:before {
  content: "\f192";
  color: var(--engoc-color-main1); }
.product-bundle-list label {
  width: 100%;
  font-weight: 400;
  color: #666666;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px; }
.product-bundle-list label:before {
  content: "\f10c";
  display: inline-block;
  width: 14px;
  height: 14px;
  font-family: 'FontAwesome';
  font-size: 14px;
  margin-right: 15px;
  color: #d7d7d7; }
@media (max-width: 480px) {
  .product-bundle-list label:before {
    margin-right: 5px; } }
.product-bundle-list .bundle-price {
  color: #ff5050;
  font-size: 18px; }

.bundle-info .bundle-price {
  color: #ff5050;
  font-size: 30px;
  margin-bottom: 5px;
  display: inline-block; }
.bundle-info .bundle-total {
  color: #999999;
  margin-bottom: 25px; }
.bundle-info .btn-addcart {
  font-weight: 500;
  width: 210px;
  height: 47px;
  line-height: 46px;
  text-align: center;
  background: #f3f3f3;
  display: inline-block;
  border-radius: 999px; }

.bundle-left {
  padding-left: 15px; }
@media (min-width: 1025px) {
  .bundle-left {
    padding-left: 80px; } }

@media (max-width: 767px) {
  .bundle-info {
    padding-bottom: 30px; } }

.bundle {
  margin-top: 30px; }
@media (min-width: 1025px) {
  .bundle {
    margin-top: 65px; } }

@media (min-width: 480px) {
  .bundle .bdl:before {
    background: #e8e8e8;
    content: "";
    height: 100%;
    right: -15px;
    position: absolute;
    top: 0;
    width: 1px; } }
@media (min-width: 1681px) {
  .bundle .bdl:before {
    right: -20px; } }

@media (min-width: 1681px) {
  .bundle [class*="col-md-9"] {
    width: 72%; }
  .bundle [class*="col-md-3"] {
    width: 28%; } }

/*
5.4. Newsletter 
*/
.newsletter {

  padding-top: 125px;
  padding-bottom: 160px;
  background-size: cover; }
@media (max-width: 767px) {
  .newsletter {
    padding-left: 15px;
    padding-right: 15px; } }
.newsletter.ver2 {
  background: #f6f6f6; }

.newsletter-title {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 45px; }
@media (max-width: 480px) {
  .newsletter-title {
    font-size: 22px; } }
.newsletter-title.ver2 {
  color: var(--engoc-color-main1); }

.newsletter-content {
  max-width: 520px;
  margin: 0 auto; }
.newsletter-content .form-group {
  position: relative; }
.newsletter-content .form-control {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.16)), to(rgba(255, 255, 255, 0.16)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  height: 52px; }
.newsletter-content .form-control::-webkit-input-placeholder {
  color: #fffefe;
  font-size: "14px"; }
.newsletter-content .form-control:-moz-placeholder {
  color: #fffefe;
  font-size: "14px"; }
.newsletter-content .form-control::-moz-placeholder {
  color: #fffefe;
  font-size: "14px"; }
.newsletter-content .form-control:-ms-input-placeholder {
  color: #fffefe;
  font-size: "14px"; }
@media (min-width: 768px) {
  .newsletter-content .form-control {
    width: 420px;
    padding-left: 30px; } }
.newsletter-content .form-control.ver2 {
  background: transparent;
  border-top: 1px solid var(--engoc-color-main1);
    border-bottom: 1px solid var(--engoc-color-main1);
      border-left: 1px solid var(--engoc-color-main1); }
.newsletter-content .form-control.ver2::-webkit-input-placeholder {
  color: var(--engoc-color-main1);
    font-size: "14px"; }
.newsletter-content .form-control.ver2:-moz-placeholder {
  color: var(--engoc-color-main1);
    font-size: "14px"; }
.newsletter-content .form-control.ver2::-moz-placeholder {
  color: var(--engoc-color-main1);
    font-size: "14px"; }
.newsletter-content .form-control.ver2:-ms-input-placeholder {
  color: var(--engoc-color-main1);
    font-size: "14px"; }
.newsletter-content .btn-newsletter {
  position: absolute;
  width: 77px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  color: var(--engoc-color-main1);
    background: #fbfbfb;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 0;
    right: 0; }
.newsletter-content .btn-newsletter.ver2 {
  width: 77px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  color: #fff;
  background: var(--engoc-color-main1); }
.newsletter-content .btn-newsletter:hover {
  background: #eb5050;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }

/*
5.1. Cart Page
*/
@media (min-width: 1681px) {
  .co .row,
  .co-coupon .row {
    margin-left: -20px;
    margin-right: -20px; }
  .co [class*="col-"],
  .co-coupon [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }

.co-coupon {
  padding: 20px 0;
  padding-bottom: 40px; }
@media (min-width: 1025px) {
  .co-coupon {
    padding-bottom: 76px; } }

@media (max-width: 1024px) {
  .cart-box-container-ver2 > [class*="col-"] {
    margin-bottom: 60px; } }

.checkout {
  padding-bottom: 60px; }
.checkout .row {
  margin-top: 60px; }
@media (max-width: 767px) {
  .checkout .row {
    margin-top: 0;
  }
  .checkout .shopping-cart {
    border: none;
  }
}
@media (min-width: 1681px) {
  .checkout {
    padding-bottom: 88px; }
  .checkout .row {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 88px; }
  .checkout [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }
@media (max-width: 1024px) {
  .checkout [class*="col-"] {
    margin-bottom: 60px; } }
.checkout.wishlist .shopping-cart.v2 {
  margin-top: 94px; }
@media (min-width: 1025px) {
  .checkout.wishlist .shopping-cart.v2 {
    margin-left: 40px;
    margin-right: 40px; } }
@media (min-width: 1681px) {
  .checkout.wishlist .shopping-cart.v2 {
    margin-left: 120px;
    margin-right: 120px; } }
.checkout.wishlist .shopping-cart.v2 .item_cart:last-child {
  border: 0; }
.checkout.wishlist .shopping-cart.v2 .item_cart .product-name {
  padding: 44px 0 44px 80px; }
.checkout.wishlist .shopping-cart.v2 .item_cart .total-price {
  padding: 62px 60px; }
.checkout.wishlist .w-empty p {
  font-size: 50px;
  color: #666666;
  font-weight: lighter;
  text-align: center;
  line-height: 62px;
  max-width: 520px;
  margin: 0 auto;
  padding: 100px 0; }

.item_cart {
  border-bottom: 1px solid #f1f1f1; 
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item_cart .single-product-detail .single-product-info .e-quantity input.input-text[type=text] {

  border: 2px solid var(--engoc-color-main1); }
.item_cart .product-name {
  padding: 28px 0 28px 28px; }

@media (min-width: 768px) {
  .item_cart .product-name {
    width: 320px;
  }
}
.item_cart .product-name .btn-del {
  font-size: 38px;
  margin-left:35px;
  margin-right: 35px; }
.item_cart .product-name .product-img {
  width: 79px;
  margin-right: 28px; }
.item_cart .product-name .product-img img {
  border-radius: 7px;
  border: 1px solid #ebebeb; }
.item_cart .product-name .product-info {
  max-width: 170px; }
.item_cart .product-name .product-info a {
  font-size: 16px;
  font-weight: 500; }
/* .item_cart .bcart-quantity {
padding: 49px 100px; } */
.item_cart .total-price {
  padding: 56px 46px;
  text-align: center;
  padding-left: 0; }
@media (max-width: 767px) {
  .item_cart {
    position: relative;
    padding: 0 20px;
    padding-bottom: 30px;
    border: 1px solid #f1f1f1;
    margin-bottom: 30px;
  }
  .item_cart .product-name {
    padding: 0;
  }
  .item_cart .product-name .product-img {
    width: 100%;
    padding-bottom: 20px;
  }
  .item_cart .bcart-quantity {
    padding: 0;
  }
  .item_cart .bcart-quantity:after {
    padding-top: 8px;
  }
  .item_cart .bcart-quantity .single-product-info {
    margin-top: 0;
  }
  .item_cart .total-price {
    padding: 25px 0;
  }
  .item_cart .product-name .btn-del {
    margin-left: 0;
    margin-right: 0;
  }
}
.item_cart .total-price .price {
  font-size: 18px;
  color: #666666; }
.item_cart .w-status {
  padding: 63px 40px; }
.item_cart .w-status p {
  font-weight: 500;
  width: 107px;
  height: 39px;
  line-height: 35px;
  border-radius: 999px;
  border: 2px solid #eaeaea;
  text-align: center; }
.item_cart .w-button {
  padding: 58px 54px; }
.item_cart .w-button .btn-addcart {
  border-radius: 999px;
  font-size: 16px;
  width: 198px;
  height: 54px;
  line-height: 54px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center; }

.shopping-cart .table-cart-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 27px;
  padding-bottom: 48px; }
@media (max-width: 767px) {
  .shopping-cart .table-cart-bottom {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0;
    padding-bottom: 0; }
}
@media (max-width: 480px) {
  .shopping-cart .table-cart-bottom {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; }
  .shopping-cart .table-cart-bottom .btn-update {
    margin-top: 30px; } }
.shopping-cart .table-cart-bottom .btn-update {
  width: 100%;
  height: 54px;
  line-height: 54px;
  text-align: center;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; 
}
@media (max-width: 575px) {
  .shopping-cart .table-cart-bottom .btn-update {
    height: 46px;
    line-height: 46px;
  }
}
.shopping-cart .table-cart-bottom input {
  color: #fff;
  background: var(--engoc-color-main1);
    }
.shopping-cart .table-cart-bottom input:hover {
  background: var(--engoc-primary-color);
    color: #fff;
    opacity: .7;}
.shopping-cart .table-cart-bottom a {
  background: var(--engoc-primary-color);
    color: #fff;
    margin-right: 15px; }
@media (max-width: 575px) {
  .shopping-cart .table-cart-bottom a {
    margin-right: 0;
  }
}
.shopping-cart .table-cart-bottom a:hover {
  opacity: .7;
  color: #fff; }
.shopping-cart .table-cart-bottom .form_coupon {
  position: relative; }
@media (min-width: 480px) {
  .shopping-cart .table-cart-bottom .form_coupon {
    width: 480px; } }
@media (max-width: 480px) {
  .shopping-cart .table-cart-bottom .form_coupon {
    text-align: center; } }
.shopping-cart .table-cart-bottom .form-control {
  height: 54px;
  border-radius: 999px;
  border: 1px solid #e1e1e1;
  background: #fff;
  padding-left: 65px; }
.shopping-cart .table-cart-bottom .form-control::-webkit-input-placeholder {
  color: 14px;
  font-size: #999999; }
.shopping-cart .table-cart-bottom .form-control:-moz-placeholder {
  color: 14px;
  font-size: #999999; }
.shopping-cart .table-cart-bottom .form-control::-moz-placeholder {
  color: 14px;
  font-size: #999999; }
.shopping-cart .table-cart-bottom .form-control:-ms-input-placeholder {
  color: 14px;
  font-size: #999999; }
.shopping-cart .table-cart-bottom .input-icon {
  position: absolute;
  top: 18px;
  left: 20px; }
.shopping-cart .table-cart-bottom .button_mini {
  margin-top: 15px;
  font-weight: 500;
  color: #fff;
  background: #333333; }
@media (min-width: 480px) {
  .shopping-cart .table-cart-bottom .button_mini {
    position: absolute;
    top: 0;
    margin-top: 0;
    right: 0; } }
.shopping-cart .table-cart-bottom .button_mini.btn {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  height: 54px;
  border: 0;
  border-left: 1px solid #e1e1e1;
  padding-left: 0;
  padding-right: 0;
  width: 162px;
  line-height: 44px; }
@media (min-width: 480px) {
  .shopping-cart .table-cart-bottom .button_mini.btn {
    border-radius: 0 999px 999px 0; } }
.shopping-cart .table-cart-bottom .button_mini.btn:hover {
  background: #efefef;
  color: #333; }

.cart-total {
  background: #f8f8f8; }

@media (max-width: 767px) {
  .cart-total {
    margin-top: 30px;
  }
}
.cart-total th {
  padding: 30px 40px;
  vertical-align: top; }
.cart-total .cart-product th {
  color: #666666;
  line-height: 24px; }
.cart-total .cart-product td {
  color: #666666; }
.cart-total .cart-subtotal {
  border-bottom: 1px solid #ececec; }
.cart-total .cart-subtotal th {
  font-size: 16px;
  font-weight: 500;
  padding-top: 26px;
  padding-bottom: 30px; }
.cart-total .cart-subtotal td {
  font-size: 16px;
  padding: 1em 20px;
  padding-top: 26px;
  padding-bottom: 30px; }
@media (min-width: 1681px) {
  .cart-total .cart-subtotal td {
    padding: 1em 84px; } }
.cart-total .cart-shipping {
  border-bottom: 1px solid #ececec; }
.cart-total .cart-shipping .calcu {
  font-size: 16px;
  color: #ff5050;
  padding-left: 24px;
  text-decoration: underline; }
.cart-total .cart-shipping th {
  font-size: 16px;
  font-weight: 500;
  padding-top: 30px; }
.cart-total .cart-shipping td {
  padding-top: 30px;
  padding-left: 20px;
  padding-bottom: 55px; }
@media (min-width: 1681px) {
  .cart-total .cart-shipping td {
    padding-left: 84px; } }
.cart-total .cart-shipping.v2 td {
  padding-bottom: 10px; }
.cart-total .cart-shipping .shipping input {
  display: none; }
.cart-total .cart-shipping .shipping input[type="radio"]:checked + label:before {
  content: "\f192";
  color: var(--engoc-color-main1); }
.cart-total .cart-shipping .shipping label {
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  position: relative;
  margin-bottom: 15px; }
.cart-total .cart-shipping .shipping label:before {
  content: "\f10c";
  display: inline-block;
  width: 14px;
  height: 14px;
  font-family: 'FontAwesome';
  font-size: 14px;
  margin-right: 10px;
  color: #d7d7d7; }
@media (max-width: 480px) {
  .cart-total .cart-shipping .shipping label:before {
    margin-right: 5px; } }
.cart-total .order-total th {
  font-size: 16px;
  font-weight: 500;
  padding-top: 15px; }
.cart-total .order-total td {
  font-size: 20px;
  font-weight: 500;
  padding: 15px 20px; }
@media (min-width: 1681px) {
  .cart-total .order-total td {
    padding: 15px 84px; } }
.cart-total .order-total.v2 {
  border-bottom: 1px solid #ececec; }
.cart-total .order-total.v2 td {
  padding-top: 25px;
  padding-bottom: 40px; }
.cart-total .cart-total-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center; 
  margin-bottom: 40px;
}
.cart-total .cart-total-bottom .btn-checkout {
  font-size: 16px;
  width: 228px;
  height: 54px;
  line-height: 54px;
  border-radius: 999px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-top: 10px; }
.cart-total .cart-total-bottom .btn-checkout.btn-co-order {
  width: 100%; }
.cart-total .cart-total-bottom.v2 {
  padding: 0 42px;
  margin-bottom: 66px; }
.cart-total .sign-in-divider {
  border-top: 1px solid #f1f1eb;
  margin: 0 0 20px 0; }
.cart-total .sign-in-divider span {
  color: #999999;
  padding: 0 10px;
  background-color: #fff;
  width: 35px;
  height: 35px;
  line-height: 31px;
  border: 2px solid #eaeaea;
  border-radius: 50%;
  display: table;
  margin: -17px auto 0;
  position: relative;
  z-index: 1; }
.cart-total .pp-checkout {
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .cart-total .pp-checkout {
    padding: 0 20px;
  }
}
.cart-total .pp-checkout .contact-form.coupon {
  width: 100%;
  text-align: center;
}
.cart-total .form-check {
  padding-left: 40px;
  padding-top: 30px;
  padding-bottom: 37px; }

.dropdown-cart {
  -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  left: unset;
  right: 15px;
  min-width: 346px;
  border: 1px solid #ebebeb;
  padding: 15px 28px 37px 22px; }
@media (max-width: 480px) {
  .dropdown-cart {
    right: -18px;
    width: 300px;
    min-width: 300px; } }
@media (max-width: 1025px) {
  .dropdown-cart {
    margin: 10px 0 0; } }
.dropdown-cart:after {
  content: '';
  display: block;
  position: absolute;
  top: -7px;
  right: 30px;
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  border-right: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }
@media (max-width: 480px) {
  .dropdown-cart:after {
    right: 45px; } }

.mini-products-list .item-cart {
  position: relative;
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #ebebeb; }
.mini-products-list .e-del {
  position: absolute;
  right: 0;
  top: 15px;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 20px;
  color: #bfbfbf; }
.mini-products-list .product-img-wrap {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  margin-right: 20px;
  height: 82px;
  min-width: 70px;
  border: 1px solid #ebebeb;
  border-radius: 2px; }
.mini-products-list .product-details {
  position: relative; }
.mini-products-list .product-details .inner-left {
  max-width: 136px;
  line-height: 22px; }
.mini-products-list .product-details .inner-left .product-price {
  font-size: 14px;
  color: #333333; }
.mini-products-list .product-details .product-price {
  font-weight: 500; }

.cart-price {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding-top: 28px;
  padding-bottom: 30px; }
.cart-price span {
  font-weight: 500; }

.button-cart {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between; }

.cart-btn {
  color: #fff;
  background: var(--engoc-color-main1);
    width: 180px;
    height: 54px;
    line-height: 51px;
    border-radius: 32px;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    font-weight: 500; }
.cart-btn.btn-viewcart {
  color: #fff;
  background: var(--engoc-color-main1);
    }
.cart-btn:hover {
  background: var(--engoc-primary-color);
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    }

.payment {
  padding-left: 40px;
  padding-top: 40px; }
.payment input {
  display: none; }
.payment input[type="radio"]:checked + label:before {
  content: "\f192";
  color: var(--engoc-color-main1); }
.payment input[type="radio"]:checked + label {
  color: #333; }
.payment label {
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
  color: #666666; }
.payment label:before {
  content: "\f10c";
  display: inline-block;
  width: 14px;
  height: 14px;
  font-family: 'FontAwesome';
  font-size: 14px;
  margin-right: 10px;
  color: #d7d7d7; }
@media (max-width: 480px) {
  .payment label:before {
    margin-right: 5px; } }

.co-left {
  padding-left: 30px;
  padding-right: 30px; }
@media (min-width: 1681px) {
  .co-left {
    padding-left: 80px;
    padding-right: 80px; } }
.co-left:first-child {
  margin-bottom: 60px; }
@media (min-width: 1025px) {
  .co-left:first-child {
    margin-bottom: 75px; } }

.co-pd {
  padding-bottom: 15px;
  border-bottom: 1px solid #ececec; }
.co-pd .co-title {
  padding-top: 24px;
  padding-left: 42px;
  padding-right: 77px;
  padding-bottom: 18px;
  font-size: 16px;
  font-weight: 500; }
.co-pd .co-title span {
  float: right; }
.co-pd .co-pd-list {
  padding: 0 42px; }
.co-pd .co-pd-list .co-name {
  color: #666666;
  line-height: 24px;
  float: left;
  max-width: 140px; }
.co-pd .co-pd-list .co-price {
  float: right;
  color: #666666; }

.form-customer {
  padding-top: 25px; }
.form-customer.v2 {
  padding-top: 0; }
.form-customer .control-label {
  color: #666666;
  font-weight: 500;
  margin-bottom: 16px; }
.form-customer input {
  height: 54px;
  border-radius: 999px;
  border: 1px solid #e1e1e1;
  padding-left: 33px;
  margin-bottom: 15px; }
.form-customer input::-webkit-input-placeholder {
  color: #999999;
  font-size: 14px; }
.form-customer input:-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.form-customer input::-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.form-customer input:-ms-input-placeholder {
  color: #999999;
  font-size: 14px; }
.form-customer textarea {
  border: 1px solid #e1e1e1;
  padding-left: 40px;
  padding-top: 40px;
  border-radius: 5px;
  resize: none; }
.form-customer textarea::-webkit-input-placeholder {
  color: #999999;
  font-size: 14px; }
.form-customer textarea:-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.form-customer textarea::-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.form-customer textarea:-ms-input-placeholder {
  color: #999999;
  font-size: 14px; }
@media (min-width: 1025px) {
  .form-customer textarea.form-control {
    margin-bottom: 60px; } }
.form-customer .form-check {
  padding-top: 20px;
  padding-bottom: 44px; }

.form-check .form-check-label span {
  color: #666666;
  font-weight: 500; }

.form-check .form-check-label span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 50%;
  margin-right: 11px;
  margin-bottom: -2px; }

.form-check .form-check-label .form-check-input {
  display: none; }

.form-check .form-check-label .form-check-input:checked + span::before {
  background: var(--engoc-color-main1);
    border-color: var(--engoc-color-main1); }

.btn-co-order {
  width: 100%; }

.co-pp {
  margin-left: 15px; }

.term {
  color: #ff0000; }

.form_coupon {
  position: relative; }
.form_coupon .form-control {
  height: 54px;
  border-radius: 999px;
  border: 1px solid #e1e1e1;
  background: #fff;
  padding-left: 65px; }
.form_coupon .input-icon {
  position: absolute;
  top: 18px;
  left: 20px; }
.form_coupon .button_mini {
  font-weight: 500;
  color: #fff;
  background: #333333; }
.form_coupon .button_mini.btn {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  height: 54px;
  border: 0;
  border-left: 1px solid #e1e1e1;
  padding-left: 0;
  padding-right: 0;
  width: 162px;
  line-height: 44px; }
@media (min-width: 480px) {
  .form_coupon .button_mini.btn {
    border-radius: 0 999px 999px 0;
    position: absolute;
    top: 0;
    margin-top: 0;
    right: 0; } }

.main-content.space1 {
  padding-top: 12px;
  padding-bottom: 40px; }
@media (min-width: 1025px) {
  .main-content.space1 {
    padding-bottom: 91px; } }

/*
5.3. Checkout Page
*/
.checkout-login .form-login {
  display: none; }
.checkout-login .form-login p {
  color: #a4a4a4;
  line-height: 24px;
  margin-bottom: 20px; }

.form-cp {
  display: none; }

.box-toggle {
  font-weight: 500;
  color: #666666;
  width: 100%;
  border: 2px solid #f0f0f0;
  height: 105px;
  line-height: 105px;
  border-radius: 10px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
@media (max-width: 812px) {
  .box-toggle {
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center; } }
@media (max-width: 480px) {
  .box-toggle {
    padding-left: 15px;
    padding-right: 15px; } }
@media (min-width: 1024px) {
  .box-toggle {
    padding-left: 70px; } }
.box-toggle img {
  margin-right: 20px; }
@media (max-width: 812px) {
  .box-toggle img {
    margin-right: 5px; } }
@media (max-width: 480px) {
  .box-toggle img {
    display: none; } }
.box-toggle a {
  margin-left: 4px; }

.box-toggle {
  margin-bottom: 35px; }

.checkout-cp input {
  background: #f8f8f8; }

.btn-cp-inline {
  width: 128px;
  height: 54px;
  line-height: 54px;
  padding: 0;
  border-radius: 0;
  float: right; }

.checkout .cart-list .product-price {
  float: none; }
.checkout .cart-list .quantity {
  float: none;
  font-size: 14px;
  font-weight: 500; }
.checkout .cart-list .list > li .text .product-name {
  margin-bottom: 5px; }

.box-payment ul li:first-child {
  border: 0; }
.box-payment ul li .payment label {
  color: var(--engoc-color-main1); }
.box-payment ul li .payment .no-checkbox {
  color: #a4a4a4;
  line-height: 18px;
  font-size: 12px;
  padding-left: 20px;
  margin-bottom: 35px; }

.btn-checkout {
  height: 83px;
  line-height: 83px;
  font-size: 18px; }

.form-note {
  -webkit-box-shadow: none;
  box-shadow: none; }

/** 6. Templates Layout **/
/*
6. Layout
6.1. Header
6.1.1. Header version 1
6.1.2. Header version 2
6.1.3. Header version 3
6.1.4. Header version 4
6.1.5. Header version 5
6.2. Footer
6.2.1 Footer version 1
6.3. Homepages
6.3.1. Home 1
6.3.2. Home 2
6.3.3. Home 3
6.3.4. Home 4
6.3.5. Home 5
6.4. Other Page
6.4.1 My account
6.5. Commingsoon
6.5.1 Commingsoon Page
*/
/*
6.1. Header
6.1.1. Header version 1
6.1.2. Header version 2
6.1.3. Header version 3
6.1.4. Header version 4
6.1.5. Header version 5
*/
.topbar {
  background: #f4f4f4;
  padding: 10px 0; }
@media (min-width: 1025px) {
  .topbar {
    padding: 20px 0; } }

.row.flex {

  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;

}

.v-center {
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column; }

.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
.flex.lr {
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
.flex.lr2 {
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between; }

.align-center {
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.justify-center {
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center; }

.element {
  display: inline-block;
  padding: 0 15px;
  position: relative; }
.element a,
.element span {
  font-size: 12px;
  color: #777777; }
.element a:hover,
.element span:hover {
  color: #ff5050; }
.element img {
  vertical-align: middle;
  margin-top: -2px; }
@media (min-width: 1025px) {
  .element span {
    margin-left: 10px; } }
.element span.e-arrow {
  margin-left: 5px; }
.element:first-child {
  padding-left: 0; }
.element:last-child {
  padding-left: 0; }
.element:before {
  border-left: 1px solid #d9d9d9;
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
@media (max-width: 1025px) {
  .element.element-account {
    padding-left: 0; }
  .element.element-account:before {
    border: 0; }
  .element.element-leaguage:before {
    border: 0; } }
.element.element-currency .dropdown-menu {
  right: 0;
  left: unset; }

.topbar-left .element:first-child:before {
  border: 0; }
@media (min-width: 1200px) and (max-width: 1299px) {
  .header-v4 .topbar .flex-left {
    width: 40%;
  }
  .header-v4 .topbar .flex-right {
    width: 60%;
  }
}
.topbar-right .element:first-child:before {
  border: 0; }

.topbar-right {
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

.topbar-account-link,
.topbar-logout-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease; }

.topbar-account-link:hover,
.topbar-logout-link:hover {
  opacity: 0.7; }

.topbar-logout-link {
  opacity: 0.6; }

.topbar-logout-link:hover {
  opacity: 0.9; }

/* Header search & cart icon hover swap */
.header-icon-swap {
  filter: brightness(0);
  transition: filter 0.3s ease; }

#btn-search:hover .header-icon-swap,
#btn-cart:hover .header-icon-swap {
  filter: brightness(1); }

/* Mobile hamburger account panel */
.mobile-account-panel {
  padding: 30px 20px; }

.mobile-account-greeting {
  text-align: center;
  margin-bottom: 30px; }

.mobile-account-avatar {
  color: var(--engoc-color-main1);
  margin-bottom: 12px; }

.mobile-account-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px; }

.mobile-account-email {
  font-size: 13px;
  color: #888;
  margin: 0; }

.mobile-account-links {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.mobile-account-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  background: #fafafa;
  transition: background 0.2s ease, border-color 0.2s ease; }

.mobile-account-btn svg {
  color: var(--engoc-color-main1);
  flex-shrink: 0; }

.mobile-account-btn:hover {
  background: #f0f0f0;
  border-color: var(--engoc-color-main1);
  color: #1a1a1a; }

.mobile-account-btn--logout {
  background: #fff;
  color: #888; }

.mobile-account-btn--logout svg {
  color: #aaa; }

.mobile-account-btn--logout:hover {
  background: #fff5f5;
  border-color: #ffcccc;
  color: #cc0000; }

.mobile-account-btn--logout:hover svg {
  color: #cc0000; }

/* Header account & logout icons */
.header-account-btn,
.header-logout-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--engoc-color-main1);
  transition: opacity 0.2s ease;
  vertical-align: middle; }

.header-account-btn svg,
.header-logout-btn svg {
  display: block;
  color: var(--engoc-color-main1);
  flex-shrink: 0; }

.header-account-btn:hover,
.header-logout-btn:hover {
  opacity: 0.7;
  color: var(--engoc-color-main1); }

.header-customer-name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.header-logout-btn {
  opacity: 0.7; }

.header-logout-btn:hover {
  opacity: 1; }

.header-search {
  padding-left: 95px;
  padding-top: 10px; }
@media (min-width: 1650px) {
  .header-search form {
    width: 760px; } }
.header-search form {
  display: table;
  position: relative; }
.header-search input {
  height: 62px;
  border-radius: 31px 0 0 31px;
  border: 2px solid #eaeaea;
  padding-left: 34px;
  width: 300px;
  display: table-cell;
  border-right: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }
.header-search input::-webkit-input-placeholder {
  color: #999999;
  font-size: 14px; }
.header-search input:-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.header-search input::-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.header-search input:-ms-input-placeholder {
  color: #999999;
  font-size: 14px; }
.header-search input:focus {
  -webkit-box-shadow: none;
  box-shadow: none; }
@media (min-width: 1200px) {
  .header-search input {
    width: 400px; } }
@media (min-width: 1400px) {
  .header-search input {
    width: 495px; } }
@media (min-width: 1460px) {
  .header-search input {
    width: 380px; } }
@media (min-width: 1600) {
  .header-search input {
    width: 470px; } }
@media (min-width: 1650px) {
  .header-search input {
    width: 540px; } }
.header-search .select-option {
  width: 220px;
  height: 62px;
  border: 2px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-radius: 0 31px 31px 0;
  border-radius: none;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  padding-left: 29px; }
.header-search .search-panel {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: relative;
  border: 2px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-radius: 0 999px 999px 0;
  border-radius: none;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  position: relative; }
@media (min-width: 1025px) {
  .header-search .search-panel {
    padding-left: 13px; } }
@media (min-width: 1681px) {
  .header-search .search-panel {
    padding-left: 29px; } }
.header-search .search-panel > a {
  display: block;
  color: #999; }
.header-search .search-panel > a span {
  margin-left: 14px;
  color: var(--engoc-color-main1); }
.header-search .search-panel .dropdown-category {
  -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  width: 256px;
  right: 0;
  left: unset;
  border: 1px solid #ebebeb;
  padding: 12px 0;
  margin-top: 17px; }
.header-search .search-panel .dropdown-category li a {
  color: #666666;
  line-height: 30px;
  padding-left: 34px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.header-search .search-panel .dropdown-category li a:before {
  content: "\f363";
  font-family: "ionicons";
  position: absolute;
  top: 5px;
  left: 20px;
  color: #bfbfbf;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.header-search .search-panel .dropdown-category li a:hover {
  color: #333333;
  background-color: transparent; }
.header-search .search-panel .dropdown-category li a:hover:before {
  color: #333; }
.header-search .search-panel .dropdown-category:after {
  content: '';
  display: block;
  position: absolute;
  top: -7px;
  right: 75px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }
.header-search .input-group-btn {
  padding: 0;
  width: 50px;
  top: 6px;
  right: 5px; }
.header-search .input-group-btn .button_search {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  border-radius: 100%;
  background: #333333;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.header-search .input-group-btn .button_search:hover {
  -webkit-box-shadow: 0px 2px 20px 2px rgba(194, 106, 245, 0.68);
  box-shadow: 0px 2px 20px 2px rgba(194, 106, 245, 0.68); }

.header-sub {
  margin-left: 0; }

.right-panel {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column; }

.header-sub-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.header-sub-element.row {
  margin-left: auto; }
.header-sub-element.row > a {
  padding-right: 26px; }
@media (max-width: 1025px) {
  .header-sub-element.row > a:last-child {
    padding-right: 15px; } }
@media (max-width: 1025px) {
  .header-sub-element.row img {
    width: 20px; } }

.sub-right span {
  color: #999999; }
.sub-right .phone {
  font-size: 24px;
  color: #333333;
  font-weight: 300;
  margin-bottom: 22px; }

.sub-left {
  margin-right: 15px; }

.header-center {
  padding-top: 15px;
  padding-bottom: 15px; }
@media (min-width: 1025px) {
  .header-center {
    padding-top: 36px;
    padding-bottom: 30px; } }

@media (min-width: 1025px) {
  .header-logo {
    margin-top: -30px; } }

.tags {
  padding-top: 25px;
  font-size: 12px;
  text-align: center;
  margin-left: 55px; }
.tags span {
  color: #333333; }
.tags a {
  color: #999999;
  padding: 0 10px;
  border-right: 1px solid #e6e6e6; }
.tags a:last-child {
  border-right: 0; }
.tags a:first-child {
  padding-left: 0; }
.tags a:hover {
  color: #ff5050; }

.header-bottom-right {
  color: #999999; }
.header-bottom-right span {
  margin-left: 12px; }

@media (min-width: 1200px) {
  .header-top-absolute {
    position: absolute;
    width: 100%;
    z-index: 9; } }
.home-lookbook .sticky-header {
  border-bottom: 1px solid #d9d9d9; }

.sticky-header {
  border-bottom: 1px solid #efefef;
  line-height: 20px;
  padding: 12px; }
.sticky-header .u-line {
  color: #eb5050;
  text-decoration: underline; }
.sticky-header .text {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 10px;
  color: #aaaaaa;
  letter-spacing: 0.2em; }
.sticky-header .text.text-w {
  color: #fff; }

.bd-v1 {
  border-bottom: 1px solid #dcdddf; }

.bd-v2 {
  border-bottom: 1px solid #dbdbdb; }

.topbar-option {
  font-weight: 500; }
.topbar-option > * {
  display: inline-block;
  position: relative; }
@media (max-width: 480px) {
  .topbar-option > * {
    min-width: 40px;
    text-align: center; } }
@media (max-width: 320px) {
  .topbar-option > * {
    min-width: unset;
    padding: 0 5px; } }
@media (min-width: 480px) {
  .topbar-option > * {
    padding: 0 20px; } }
.topbar-option > *:before {
  border-left: 1px solid #e3e3e3;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
@media (max-width: 480px) {
  .topbar-option > *:before {
    border: none; } }
.topbar-option > *:last-child {
  padding-right: 0; }
.topbar-option > *:first-child {
  padding-left: 0; }
.topbar-option > *:first-child:before {
  border: none; }
@media (max-width: 320px) {
  .topbar-option .dropdown-menu {
    left: -35px; } }

/* Scoped to .topbar-option (its original Ciloe context, per the rules
   immediately above) — was previously a bare, unscoped ".count" selector,
   which meant it hijacked ANY element site-wide with class="count",
   including WooCommerce's own native widget count spans (Product
   Categories / Filter by Attribute widgets both render plain
   <span class="count">(1)</span> by WC's own convention) — those aren't
   notification badges and shouldn't render as a floating red circle.
   class="count" isn't used anywhere in this theme's own templates or JS,
   so this scoping doesn't remove any currently-working feature. */
.topbar-option .count {
  width: 17px;
  height: 17px;
  line-height: 17px;
  display: inline-block;
  text-align: center;
  background: #eb5050;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  position: absolute;
  top: -8px;
  overflow: hidden;
  right: 15px; }
@media (min-width: 1025px) {
  .topbar-option .count {
    width: 23px;
    height: 23px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    top: -10px; } }

@media (min-width: 1199px) {
  .header-top {
    background: #e4e4e4; } }
@media (max-width: 1024px) {
  .header-top {
    margin: 30px 0 0 0; } }
.header-top .logo-mobile {
  float: left;
  display: inline-block; }
.header-top .navbar {
  min-height: 0px;
  margin-bottom: 0px;
  width: 100%;
  margin-top: 30px; }
@media (min-width: 1199px) {
  .header-top .navbar {
    margin-top: 0; } }
@media (max-width: 1024px) {
  .header-top .navbar {
    display: inline-block; } }
@media (max-width: 480px) {
  .header-top .navbar {
    margin-top: 20px; } }
.header-top .navbar .navbar-collapse {
  border: 1px solid #ddd; }
@media (min-width: 1199px) {
  .header-top .navbar .navbar-collapse {
    border: 0; } }

@media (max-width: 480px) {
  .icon-mobile {
    width: 40px; } }

@media (max-width: 1025px) {
  .plus,
  .minus {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px; }

  .plus:after {
    content: "\f067";
    display: block;
    font-family: "FontAwesome";
    font-size: 12px;
    position: absolute;
    right: 16px;
    top: 12px;
    color: #333;
    cursor: pointer;
    -moz-transition: all 0.1s ease 0s;
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s; }

  .minus:after {
    content: "\f068";
    display: block;
    font-family: "FontAwesome";
    font-size: 12px;
    position: absolute;
    right: 16px;
    top: 12px;
    color: #333;
    cursor: pointer;
    -moz-transition: all 0.1s ease 0s;
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s; } }
@media (min-width: 1025px) {
  .header-v1 .navbar-collapse,
  .header-v4 .navbar-collapse {
    padding-left: 0; } }

.pushmenu-push-toleft {
  -webkit-transform: translate(362px, 0);
  transform: translate(362px, 0);
  -webkit-transform: translate3d(362px, 0, 0);
  transform: translate3d(362px, 0, 0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease; 
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
}
@media (max-width: 320px) {
  .pushmenu-push-toleft {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.pushmenu-push-toleft .wrappage:after {
  background: rgba(29, 29, 31, 0.6);
  content: "";
  cursor: pointer;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 4; }

.menu-home5 {
  padding-top: 1px;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform-origin: top left;
  transform-origin: top left; }
.menu-home5.pushmenu-open {
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }
@media (max-width: 320px) {
  .menu-home5.pushmenu-open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.close-left {
  float: right;
  color: #fff;
  cursor: pointer;
  padding-right: 15px;
  padding-top: 10px; }

.menu-social {
  border-top: 1px solid #2f2f31;
  position: fixed;
  bottom: 0;
  width: 362px; }
.menu-social > li {
  float: left;
  width: 33.3333%;
  float: left;
  height: 69px;
  line-height: 69px;
  text-align: center;
  background: #1d1d1f; }
.menu-social > li a i {
  color: #a4a4a4; }
.menu-social > li a i:hover {
  color: #fff; }
.menu-social > li:hover {
  background: #101011;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }

.nav-home5 > li {
  position: relative;
  display: block; }
.nav-home5 > li > a {
  font-size: 14px;
  font-weight: 500;
  font-family: "Helvetica Neue LT Std", sans-serif;
  text-transform: uppercase;
  color: #a4a4a4;
  position: relative;
  -webkit-transition: none;
  transition: none;
  line-height: 26px;
  padding: 12px 30px;
  padding-right: 0;
  display: block;
}
.nav-home5 .menu-level1 {
  margin-top: 15px; }
.nav-home5 .menu-level1 .level2 {
  padding-left: 48px; }
.nav-home5 .menu-level1 .level2 > a {
  font: 14px/33px "Helvetica Neue LT Std", sans-serif;
  text-transform: capitalize;
  color: #a4a4a4;
  position: relative; }
.nav-home5 .menu-level1 .level2 > a:focus {
  color: #fff; }
.nav-home5 .menu-level1 .level2 > a:focus:before {
  background: #fff; }
.nav-home5 .menu-level1 .level2 > a:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  left: -18px;
  top: 10px;
  background: #a4a4a4; }
.nav-home5 .menu-level1 .level1 > .level2 > a {
  color: #fff; }
.nav-home5 .menu-level1 .level1 > .level2 > a:before {
  content: none; }
.nav-home5 .menu-level-2 {
  margin: 15px 0; }
.nav-home5 .menu-level-2 .level3 {
  padding-left: 15px; }
.nav-home5 .menu-level-2 .level3 > a {
  font: 400 14px/33px "Helvetica Neue LT Std", sans-serif;
  text-transform: capitalize;
  color: #a4a4a4;
  position: relative; }
.nav-home5 .menu-level-2 .level3 > a:focus {
  color: #fff; }
.nav-home5 .menu-level-2 .level3 > a:focus:before {
  background: #fff; }
.nav-home5 .menu-level-2 .level3 > a:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  left: -18px;
  top: 10px;
  background: #a4a4a4; }

.pushmenu.menu-home5 {
  overflow: auto; }

.header-v6 .topbar-left {
  float: left;
  text-align: left; }
.header-v6 .logo {
  display: inline-block;
  margin: 0 auto;
  text-align: center; }
.header-v6 .topbar-right {
  float: right;
  text-align: right; }
.header-v6 .topbar-search {
  border-left: 0; }
.header-v6 .topbar [class*="col-xs-"] {
  padding: 0; }

/* .menu-level1 {
display: none; }
.menu-level1.open {
display: block; } */

.navbar-nav > li {
  text-align: left; }

.navbar-nav > li.level1:last-child {
  border: 0; }
@media (min-width: 1199px) {
  .navbar-nav > li.level1 {
    border: 0;
    float: none;
    display: inline-block; } }
.navbar-nav > li > a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: #666666; }
@media(max-width:1140px){
  .navbar-nav > li > a {
    font-size: 14px;
  }
}
.navbar-nav > li > a:hover {
  color: #333; }
@media (min-width: 1199px) {
  .navbar-nav > li > a {
    line-height: 18px;
    padding: 24px 20px 24px 20px; }
  .navbar-nav > li > a:before {
    border-right: 1px solid #dadada;
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); } }
@media (max-width: 480px) {
  .navbar-nav > li > a {
    font-size: 14px; } }
/*     .navbar-nav > li > a img {
position: relative;
bottom: 6px; } */
.navbar-nav > li:first-child {
  padding-left: 0; }
.navbar-nav > li:first-child > a {
  padding-left: 0; }
.navbar-nav > li:first-child > a:before {
  border: 0; }

.menu-level-1 {
  border: 1px solid #ebebeb;
  border-radius: 6px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  z-index: 0;
  min-width: 200px;
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.08);
  margin: 0;
  padding: 20px 0 20px 5px;
  min-width: 212px; 
  -webkit-transform: translate(0, 15px);
  transform: translate(0, 15px);
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;}
@media (max-width: 1024px) {
  .menu-level-1 {
    width: 100%;
    left: 0;
    top: 54px;
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
    padding: 10px 35px; } }
.menu-level-1 > li {
  line-height: 30px;
  background: none; }
.menu-level-1 > li > a {
  font: 14px/16px "Helvetica Neue LT Std", sans-serif;
  text-transform: capitalize;
  padding: 7px 25px;
  color: #878787;
  font-weight: 400;
  position: relative;
  -webkit-transition: none;
  transition: none; }
.menu-level-1 > li > a:hover {
  color: #ff5050;
  background: none; }
.menu-level-1 > li > a:focus {
  background: none; }
@media (max-width: 480px) {
  .menu-level-1 > li > a {
    font-size: 12px; } }

@media (min-width: 1199px) {
  .level1:hover .menu-level-1 {
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0) scale(1);
    transform: translate(0, 0) rotate(0) scale(1);
    z-index: 999;} }
@media (min-width: 1199px) {
  .level1.hassub {
    position: static; }
  .level1.hassub .menu-level-1 {
    width: 749px;
    padding: 39px 14px 48px 38px; }
  .level1.hassub .menu-level-1.ver2 {
    width: 903px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 0; }
  .level1.hassub .menu-level-1.ver2 .row {
    margin-left: -30px;
    margin-right: -30px; }
  .level1.hassub .menu-level-1.ver2 [class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 45px; } }
.menu-level-1 > .level1 > .level2 > a {
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 6px;
  position: relative; }
.menu-level-1 > .level1 > .level2 > a:before {
  content: "";
  width: 37px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
  background: linear-gradient(90deg, #c467f5, #53f3ff);
  height: 1px; }
@media (max-width: 480px) {
  .menu-level-1 > .level1 > .level2 > a {
    font-size: 14px; } }
.menu-level-1 > .level1 > .level2 .menu-level-2 {
  margin-bottom: 40px; }
@media (max-width: 1199px) {
  .menu-level-1 > .level1 > .level2 .menu-level-2 {
    padding-left: 20px;
    padding-top: 15px; } }
.menu-level-1 > .level1 > .level2 .menu-level-2 > .level3 {
  line-height: 0; }
.menu-level-1 > .level1 > .level2 .menu-level-2 > .level3 > a {
  line-height: 30px;
  color: #666666;
  font-size: 14px;
  text-transform: capitalize;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  position: relative; }
.menu-level-1 > .level1 > .level2 .menu-level-2 > .level3 > a:hover {
  color: #ff5050; }
@media (max-width: 480px) {
  .menu-level-1 > .level1 > .level2 .menu-level-2 > .level3 > a {
    font-size: 12px; } }

.menu-level-1 .col-full {
  width: 100%; }
.menu-level-1 .col-2,
.menu-level-1 .levels .col-2 {
  width: 230px;
  float: left; }
.menu-level-1 .col-3 {
  width: 33.3333%;
  float: left; }
@media (max-width: 1024px) and (min-width: 481px) {
  .menu-level-1 .col-3 {
    width: 100%;
    display: block;
    overflow: hidden; } }
@media (max-width: 1024px) {
  .menu-level-1 .col-3 {
    margin-bottom: 15px; } }
@media (max-width: 480px) {
  .menu-level-1 .col-3 {
    width: 100%;
    display: block;
    overflow: hidden; } }
.menu-level-1 .col-4 {
  width: 171px;
  float: left;
  margin-right: 70px; }
.menu-level-1 .col-4:last-child {
  margin-right: 0; }
.menu-level-1 .col-5 {
  width: 580px;
  float: left; }
.menu-level-1 .col-6 {
  width: 50%;
  float: left; }
@media (max-width: 1024px) and (min-width: 481px) {
  .menu-level-1 .col-6 {
    width: 100%;
    display: block;
    overflow: hidden; } }
@media (max-width: 1024px) {
  .menu-level-1 .col-6 {
    margin-bottom: 15px; } }
@media (max-width: 480px) {
  .menu-level-1 .col-6 {
    width: 100%;
    display: block;
    overflow: hidden; } }
.menu-level-1 .col-7 {
  width: 870px;
  float: left; }
.menu-level-1 .col-8 {
  width: 980px;
  float: left; }
.menu-level-1 .col-9 {
  width: 1170px;
  float: left; }

.menu-level-2 .col-full,
.mega-product .col-full {
  width: 100%; }
.menu-level-2 .col-2,
.menu-level-2 .levels .col-2,
.mega-product .col-2,
.mega-product .levels .col-2 {
  width: 230px;
  float: left; }
.menu-level-2.col-3,
.mega-product.col-3 {
  width: 33.3333%;
  float: left; }
@media (max-width: 1024px) {
  .menu-level-2.col-3,
  .mega-product.col-3 {
    margin-bottom: 15px; } }
@media (max-width: 480px) {
  .menu-level-2.col-3,
  .mega-product.col-3 {
    width: 100%;
    display: block;
    overflow: hidden; } }
.menu-level-2 .col-4,
.mega-product .col-4 {
  width: 370px;
  float: left; }
.menu-level-2 .col-5,
.mega-product .col-5 {
  width: 580px;
  float: left; }
.menu-level-2.col-6,
.mega-product.col-6 {
  width: 50%;
  float: left; }
@media (max-width: 1024px) {
  .menu-level-2.col-6,
  .mega-product.col-6 {
    margin-bottom: 15px; } }
@media (max-width: 480px) {
  .menu-level-2.col-6,
  .mega-product.col-6 {
    width: 100%;
    display: block;
    overflow: hidden; } }
.menu-level-2 .col-7,
.mega-product .col-7 {
  width: 870px;
  float: left; }
.menu-level-2 .col-8,
.mega-product .col-8 {
  width: 980px;
  float: left; }
.menu-level-2 .col-9,
.mega-product .col-9 {
  width: 1170px;
  float: left; }

/* .cart-box-container {
padding: 50px 32px; } */
/*   @media (max-width: 767px) {
.cart-box-container {
padding: 15px 32px; } }
@media (max-width: 480px) {
.cart-box-container {
padding: 50px 10px; } } */

.cart-list .cart-title {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  position: relative; }
/*   .cart-list .cart-title:before {
content: "";
position: absolute;
width: 34px;
height: 1px;
border-bottom: 1px solid #ff0000;
bottom: -10px;
left: 0; } */
.cart-list .list {
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 118px);
  width: calc(100% + 17px);
  padding: 0 44px;
  margin-bottom: 0;
  background: #f7f7f7;
}
.cart-list .list > li {
  padding: 22px 0;
  border-bottom: 1px solid #f3f3f3; }
.cart-list .list > li > * {
  display: inline-block; }
.cart-list .list > li .cart-product-image {
  width: 88px;
  vertical-align: top;
  margin-right: 18px; }
.cart-list .list > li .text {
  width: 240px; }
@media (max-width: 480px) {
  .cart-list .list > li .text {
    width: 170px; } }
.cart-list .list > li .text .product-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px; }
.cart-list .list > li .text .product-price {
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0; }
.cart-list .list > li:last-child {
  border-bottom: 0; }
.cart-list .product-price {
  float: right; }
.cart-list .quantity {
  float: left;
  font-size: 14px;
  font-weight: 500; }
.cart-list .quantity .product_quantity_number {
  width: 29px;
  height: 29px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #ebebeb; }
.cart-list .quantity .quantity-left-minus {
  width: 29px;
  height: 29px;
  border: 1px solid #ebebeb;
  text-align: center;
  margin-right: -1px;
  border-radius: 0;
  background: #fff;
  padding: 0; }
.cart-list .quantity .quantity-left-minus:focus {
  outline: none; }
.cart-list .quantity .quantity-left-minus:active {
  -webkit-box-shadow: none;
  box-shadow: none; }
.cart-list .quantity .quantity-right-plus {
  width: 29px;
  height: 29px;
  border: 1px solid #ebebeb;
  text-align: center;
  margin-left: -1px;
  border-radius: 0;
  background: #fff;
  padding: 0; }
.cart-list .quantity .quantity-right-plus:focus {
  outline: none;
  background: none; }
.cart-list .quantity .quantity-right-plus:active {
  -webkit-box-shadow: none;
  box-shadow: none; }
.cart-list .close-left {
  cursor: pointer;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: #f4f4f4;
  border-radius: 50%;
  color: #333;
  position: absolute;
  top: 23px;
  right: 32px; }
@media (max-width: 480px) {
  .cart-list .close-left {
    right: 10px; } }

.nocart-list .empty-cart {
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 353px; }
@media (max-width: 480px) {
  .nocart-list .empty-cart {
    width: 300px; } }
.nocart-list .nocart-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 35px; }
.nocart-list .btn-shop {
  width: 187px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  border: 1px solid var(--engoc-color-main1);
    display: inline-block; }

/* .cart-bottom {
padding-top: 30px;
padding-bottom: 50px;
border-top: 1px solid var(--engoc-color-main1);
position: fixed;
bottom: 0;
width: 351px;
background: #fff; } */
/*   @media (max-width: 767px) {
.cart-bottom {
padding: 10px 0; } } */
.cart-bottom .total {
  text-align: right;
  font-size: 16px;
  color: var(--engoc-color-main1);
    font-weight: 500;
    margin-bottom: 30px; }
/*     @media (max-width: 767px) {
.cart-bottom .total {
margin-bottom: 15px; } } */
.cart-bottom .total span {
  float: left; }
.cart-bottom a {
  font-size: 14px;
  font-weight: 500; }
.cart-bottom .edit-cart, .cart-bottom .checkout:hover {
  display: inline-block;
  width: 164px;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--engoc-color-main1);
    text-align: center; }
.cart-bottom .edit-cart:hover, .cart-bottom .checkout:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  background: var(--engoc-color-main1);
    color: #fff; }
@media (max-width: 480px) {
  .cart-bottom .edit-cart, .cart-bottom .checkout:hover {
    width: 130px; } }
.cart-bottom .checkout {
  display: inline-block;
  width: 164px;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--engoc-color-main1);
    text-align: center;
    float: right; }
@media (max-width: 480px) {
  .cart-bottom .checkout {
    width: 130px; } }
.cart-bottom .text {
  color: #9f9e9e;
  font: 500 12px/18px "Helvetica Neue LT Std", sans-serif;
  text-decoration: underline;
  text-align: center;
  display: block; }
.cart-bottom .text:hover {
  color: #777; }
/*   .cart-bottom .cart-button {
margin-bottom: 45px; }
@media (max-width: 767px) {
.cart-bottom .cart-button {
margin-bottom: 15px; } }
.cart-bottom .cart-button:before:before, .cart-bottom .cart-button:before:after {
content: " ";
display: table; }
.cart-bottom .cart-button:before:after {
clear: both; }
*/
.demo-text {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-top: 20px; }

/* .icon-sub-menu {
position: absolute;
top: 0;
right: 0;
height: 49px;
width: 49px;
border-left: 1px solid rgba(92, 92, 92, 0.23);
cursor: pointer;
padding-right: 18px;
background-color: transparent; }
.icon-sub-menu.up-icon:before {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-sand-transform: rotate(-45deg); }
.icon-sub-menu.up-icon:after {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-sand-transform: rotate(45deg); }
.icon-sub-menu:before {
transform: translateX(3px) rotate(-50deg);
-webkit-transform: translateX(3px) rotate(-50deg);
-moz-transform: translateX(3px) rotate(-50deg);
-o-transform: translateX(3px) rotate(-50deg);
-ms-transform: translateX(3px) rotate(-50deg);
-sand-transform: translateX(3px) rotate(-50deg); }
.icon-sub-menu:after {
transform: translateX(-4px) rotate(50deg);
-webkit-transform: translateX(-4px) rotate(50deg);
-moz-transform: translateX(-4px) rotate(50deg);
-o-transform: translateX(-4px) rotate(50deg);
-ms-transform: translateX(-4px) rotate(50deg);
-sand-transform: translateX(-4px) rotate(50deg); }
.icon-sub-menu:before, .icon-sub-menu:after {
content: " ";
position: absolute;
right: 17px;
top: 50%;
margin-top: -1px;
width: 12px;
height: 2px;
display: inline-block;
background-color: #fff;
-webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
-webkit-transition: background-color .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
transition: background-color .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out; } */

.menu-home5 .searchform {
  position: relative;
  padding: 0 28px 30px 28px;
  border-bottom: 2px solid rgba(92, 92, 92, 0.43); }
.menu-home5 .searchform input[type=text] {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border: 1px solid rgba(208, 208, 208, 0.09);
  padding: 14px 50px 10px 18px;
  font-size: 14px;
  color: #fff;
  width: 100%; }
.menu-home5 .searchform button {
  position: absolute;
  top: 18px;
  right: 28px;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 50px;
  height: 50px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center; }

.cart {
  padding-right: 25px;
  position: relative; }
@media (min-width: 1025px) {
  .cart {
    padding-bottom: 20px;
    padding-right: 40px; } }

.widget-left {
  margin-top: -5px; }
@media (min-width: 1650px) {
  .widget-left {
    padding-left: 0; } }

.widget-verticalmenu .navbar-toggles {
  position: relative;
  height: 57px;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  background: #54f0ff;
  background-image: linear-gradient(122deg, #c26af5, #54f0ff);
  padding-right: 26px;
  text-align: left;
  padding-left: 48px;
  border-radius: 9999px;
  color: #ffffff; }
.widget-verticalmenu .navbar-toggles span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 55px;
  text-transform: capitalize; }
.widget-verticalmenu .navbar-toggles:after {
  content: "";
  position: absolute;
  top: 22px;
  left: 25px;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background: #fff; }
.widget-verticalmenu .navbar-toggles.navbar-drop:before {
  content: "\f3d0";
  font-family: "Ionicons";
  position: absolute;
  right: 26px;
  top: 16px;
  font-size: 19px; }
.widget-verticalmenu .vertical-group {
  border: 2px solid #eaeaea;
  border-radius: 10px;
  position: relative;
  background: #fff; }
.widget-verticalmenu .vertical-group .vertical-item {
  padding: 0px 24px;
  border-bottom: 1px solid #eaeaea; }
.widget-verticalmenu .vertical-group .vertical-item:last-child {
  border-bottom: 0; }
.widget-verticalmenu .vertical-group .vertical-item > a {
  color: #333333;
  display: block;
  padding: 16px 0 15px 0;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  position: relative;
  line-height: 100%; }
.widget-verticalmenu .vertical-group .vertical-item.vertical-drop > a {
  color: #666; }
.widget-verticalmenu .vertical-group .vertical-item.vertical-drop > a:before {
  content: '\f3d3';
  font-family: ionicons;
  text-align: center;
  font-size: 17px;
  top: 50%;
  position: absolute;
  right: 0px;
  line-height: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #bcbcbc; }
.widget-verticalmenu .vertical-group .vertical-item.mega-parent > a {
  color: #333333;
  font-weight: bold; }
.widget-verticalmenu .vertical-group .vertical-item:hover > a {
  color: #ff5050; }
.widget-verticalmenu .vertical-group .vertical-item:hover > a:before {
  color: #ff5050; }
.widget-verticalmenu .vertical-group .vertical-item:hover::before {
  content: '';
  width: 15px;
  height: 100%;
  right: -13px;
  top: 0;
  display: block;
  position: absolute; }

.navbar-vertical {
  margin-right: 7px; }

.vertical-wrapper {
  margin-top: 13px;
  position: absolute;
  z-index: 4;
  width: 100%;
  padding-right: 37px; }

@media (min-width: 1025px) {
  .vertical-item:not(:hover) > .menu-level-1 {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(15px);
    transform: translateX(15px); } }
.vertical-menu {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  display: unset;
  left: calc(100% + 11px);
  opacity: 0;
  position: absolute;
  text-align: left;
  top: -3px;
  visibility: hidden;
  width: 257px;
  border: 1px solid #ebebeb;
  z-index: 9;
  height: 469px;
  min-width: 257px;
  border-radius: 10px;
  color: #333;
  padding: 30px; }
.vertical-menu.v2 {
  min-width: 723px; }
.vertical-menu.pd {
  padding: 50px 50px; }
.vertical-menu.pd2 {
  padding: 36px 10px 30px 15px; }
.vertical-menu.pd3 {
  padding: 36px 10px 30px 270px; }
.vertical-menu.homebg {
  background: url("../img/megamenu/home-bg.jpg") no-repeat center; }
.vertical-menu.style1.menu-level-1 > .level1 > .level2 > a {
  margin-bottom: 16px;
  padding-bottom: 9px; }
.vertical-menu.style1.menu-level-1 > .level1 > .level2 .menu-level-2 > .level3 > a {
  line-height: 24px; }
.vertical-menu.tvbg {
  background: url("../img/megamenu/tv-bg.jpg") no-repeat center; }
.vertical-menu.phonebg {
  background: url("../img/megamenu/phone-bg.jpg") no-repeat center; }
.vertical-menu.headphonebg {
  background: url("../img/megamenu/headphone-bg.jpg") no-repeat center; }
.vertical-menu h3 {
  font-size: 16px;
  margin-top: 10px; }
.vertical-menu .vertical-menu1 li > a {
  color: #666;
  line-height: 35px; }
.vertical-menu .vertical-menu1 li > a:hover {
  color: #ff5050; }
.vertical-menu .cate-item {
  margin-bottom: 40px; }

.e-border {
  border: 1px solid #ededed;
  border-radius: 9999px;
  height: 78px;
  padding-left: 98px;
  padding-right: 44px;
  position: relative;
  margin-left: -84px; }



.header-v4 .header-bottom {
  padding: 7px 0; }

@media (min-width: 1025px) {
  .header-v4 .navbar-nav {
    position: relative; } }
.header-v5 .header-center {
  border: 0; }
@media (min-width: 1025px) {
  .header-v5 .header-center {
    padding-bottom: 42px; } }

@media (min-width: 1025px) {
  .header-v5 .header-bottom .main-menu {
    margin-left: -8px; }
  .header-v5 .header-bottom .main-menu .icon-mobile {
    margin-right: 7px; } }

@media (min-width: 1025px) {
  .header-v3 .header-center {
    padding-bottom: 36px; }
  .header-v3 .header-bottom .main-menu {
    margin-left: -10px; }
  .header-v3 .header-bottom .main-menu .icon-mobile {
    margin-right: 0; }
  .header-v3 .widget-verticalmenu .vertical-group .vertical-item > a {
    padding: 15px 0; } }

@media (min-width: 1025px) {
  .header-v1 .header-center {
    padding-bottom: 42px; }
  .header-v1 .header-bottom .main-menu {
    margin-left: -10px; } }

.header-bottom {
  padding-top: 14px; }

.header-v5 .header-bottom {
  padding: 0; }

.header-v5 .widget-left {
  margin-top: -12px; }

.header-v5 .widget-verticalmenu {
  position: relative;
  z-index: 3; }

.header-v5 .vertical-wrapper {
  display: none; }

.header-cate ul {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center; }
.header-cate ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-preferred-size: calc(50% - 20px);
  flex-basis: calc(50% - 20px);
  padding: 29px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3); }
.header-cate ul li:last-child {
  border-right: 0; }
.header-cate ul li a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
  font-weight: 500;
  color: #fff;
  @incluce transiton2; }
.header-cate ul li a:hover {
  @incluce transiton2;
  color: #333333; }
.header-cate ul li a img {
  width: auto;
  height: auto;
  margin: 0 auto;
  padding-bottom: 10px; }

.btn-csoon {
  width: 132px;
  height: 42px;
  line-height: 42px;
  border-radius: 999px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  opacity: 0; }

.dropdown-menu .cate-item .demo-img {
  position: relative; }
.dropdown-menu .cate-item:hover .overlay-img {
  opacity: 1; }
.dropdown-menu .cate-item:hover .btn-csoon {
  opacity: 1; }

.header-v3.bg-w {
  background: #fff; }

@media (min-width: 1025px) {
  .header-v2 .navbar-nav > li > a {
    padding: 22px 10px 23px 10px; }
  .header-v2 .header-center {
    padding-top: 36px;
    padding-bottom: 40px;
    border-bottom: 0; } }
.header-v2 .header-bottom {
  padding-top: 0;
  position: relative; }
.header-v2 .header-bottom:before {
  content: '';
  border-bottom: 1px solid #f0f0f0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1; }
@media (min-width: 1681px) {
  .header-v2 .navbar-nav > li > a {
    padding: 22px 20px 23px 20px; } }

.box-header-nav {
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid #f0f0f0; }
@media (min-width: 1681px) {
  .box-header-nav {
    padding-left: 240px;
    width: 63.3%; } }
.box-header-nav .navbar-nav > li > a:before {
  height: 100%;
  border-right: 1px solid #e9e9e9; }
.box-header-nav .navbar-nav > li:first-child > a:before {
  border: 0; }

.box-header-menu {
  padding-right: 30px;
  padding-left: 75px;
  background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
  background: linear-gradient(90deg, #c467f5, #53f3ff);
  position: relative; }
@media (min-width: 1681px) {
  .box-header-menu {
    width: 36.7%;
    background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
    background: linear-gradient(90deg, #c467f5, #53f3ff); } }
.box-header-menu:before {
  content: '';
  border-width: 0 0 63px 75px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  position: absolute;
  bottom: 0;
  left: 0; }
.box-header-menu .navbar-nav > li > a {
  color: #fff; }
.box-header-menu .navbar-nav > li > a:hover {
  color: #333333; }
.box-header-menu .navbar-nav > li > a:before {
  opacity: 0.3; }

/*

6.2. Footer
6.2.1 Footer version 1
*/
.footer-about ul li {
  line-height: 30px;}
.footer-about ul .address {
  background: url("icon-map.png") no-repeat left top;
  background-position: left 14px;
  max-width: 340px; }
.footer-about ul .phone {
  background: url("f-phone.png") no-repeat left top;
  background-position: left 14px; }
.footer-about ul .email {
  background: url("f-mail.png") no-repeat left top;
  background-position: left 14px; }
.footer-about ul .time {
  background: url("f-time.png") no-repeat left top;
  background-position: left 14px; }

.footer-social {
  margin-top: 32px; }

.social a {
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  text-align: center;
  color: #fff;
  margin-right: 15px;
  font-size: 16px; }
.social a:last-child {
  margin-right: 0; }
.social a:hover {
  background:#bdefd7 !important;
  color:#333!important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; 
}

.footer-block-title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 25px; }
@media (min-width: 1025px) {
  .footer-block-title {
    line-height: 40px; } }

.footer-block-content li a {
  line-height: 30px;
  color: #666666; }
@media (min-width: 480px) {
  .footer-block-content li a {
    line-height: 35px; } }
.footer-block-content li a:hover {
  color: #ff5050; }

.footer-block-phone {
  margin-bottom: 15px; }
@media (min-width: 1025px) {
  .footer-block-phone {
    margin-bottom: 28px; } }
.footer-block-phone .phone-desc {
  color: #666;
  margin-bottom: 10px; }
@media (min-width: 1025px) {
  .footer-block-phone .phone-desc {
    margin-bottom: 25px; } }
.footer-block-phone .phone-light {
  font-size: 20px;
  font-weight: 300; }
@media (min-width: 480px) {
  .footer-block-phone .phone-light {
    font-size: 24px; } }

.footer-block-newsletter p {
  color: #666;
  margin-bottom: 30px;
  max-width: 280px; }
.footer-block-newsletter .footer-block-title {
  margin-bottom: 4px; }

.footer-block-newsletter .form_newsletter {
  position: relative; }
@media (min-width: 1024px) {
  .footer-block-newsletter .form_newsletter {
    width: 402px; } }
.footer-block-newsletter .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #f0f0f0;
  font-size: 12px;
  background: #fff;
  padding-left: 26px; }
.footer-block-newsletter .form-control::-webkit-input-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.footer-block-newsletter .form-control:-moz-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.footer-block-newsletter .form-control::-moz-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.footer-block-newsletter .form-control:-ms-input-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.footer-block-newsletter .button_mini {
  position: absolute;
  top: 0;
  margin-top: 0;
  right: 0; }
.footer-block-newsletter .button_mini.btn {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  height: 50px;
  border-radius: 0 5px 5px 0;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  width: 124px;
  line-height: 40px; }

footer .f-top {
  background: url("../img/f-bg.jpg") no-repeat center;
  background-size: cover;
  padding: 50px 0; }
footer .f-top.v2 {
  opacity: 0.9;
  background: #fff; }
@media (min-width: 1025px) {
  footer .f-top {
    padding: 74px 0; } }
footer .f-top [class*="col-xs-"] {
  margin-bottom: 30px; }

@media (min-width: 1025px) {
  footer .f-top .row {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  footer .f-top [class*="col-sm-"]:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  footer .f-top [class*="col-sm-"]:last-child {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  footer .f-top [class*="col-sm-"]:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  footer .f-top [class*="col-sm-"]:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; } }
@media (min-width: 1681px) {
  footer .f-top [class*="col-lg-"]:last-child {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end; } }
@media (min-width: 1681px) and (max-width: 1921px) {
  footer .f-top [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; }
  footer .f-top [class*="col-lg-"]:nth-child(2) {
    padding-left: 100px; }
  footer .f-top .row {
    margin-left: -20px;
    margin-right: -20px; } }

.f-logo {
  margin-bottom: 30px; }

.f-payment {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end; }

.f-bottom {
  padding: 16px 0;
  background: #272727; }
@media (min-width: 1025px) {
  .f-bottom {
    padding: 28px 0; } }

@media (max-width: 767px) {
  .f-copyright {
    text-align: center; } }
.f-copyright span {
  color: #6d6d6d;
  font-size: 12px; }

.f-payment img {
  width: 46px;
  height: 46px; }
.f-payment a {
  margin-left: 10px; }
@media (min-width: 1025px) {
  .f-payment a {
    margin-left: 24px; } }

@media (max-width: 767px) {
  .f-bottom [class*="col-xs-"] {
    width: 100%; } }

/*
6.3. Homepages
6.3.1. Home 1
6.3.2. Home 2
6.3.3. Home 3
6.3.4. Home 4
6.3.5. Home 5

*/
@media (min-width: 1025px) {
  .more-product .slick-dots {
    margin-top: -10px; } }

@media (min-width: 1025px) {
  .product-tab {
    padding-bottom: 47px; } }
@media (min-width: 1025px) {
  .product-tab.spc3 {
    padding-bottom: 0; } }
@media (max-width: 480px) {
  .product-tab .e-heading {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
@media (max-width: 1024px) {
  .product-tab.v2 .e-heading {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
@media (min-width: 1681px) {
  .product-tab.v2 .row {
    margin: 0 -20px; }
  .product-tab.v2 [class*="col-"] {
    padding: 0 20px; } }

@media (min-width: 1025px) {
  .product-tab-pd .slick-dots {
    margin-top: 10px; } }

.recent {
  padding-bottom: 50px; }
@media (min-width: 1025px) {
  .recent {
    padding-bottom: 81px; } }
@media (min-width: 1025px) {
  .recent .multiple-row {
    margin-top: 140px; } }
@media (max-width: 1024px) {
  .recent .title-icon {
    margin-bottom: 30px; } }
@media (min-width: 1025px) {
  .recent.spc5 {
    padding-bottom: 217px; } }

.ads-group .slick-dots {
  background: #fff;
  border: 1px solid #eaeaea;
  margin: 0 auto;
  border-radius: 999px;
  padding: 6px 18px;
  display: table !important; }
.ads-group .slick-dots li {
  margin: 0; }
.ads-group .slick-dots li button:before {
  font-size: 12px; }
.ads-group.v2 .slick-dots {
  background: transparent;
  border: 0; }
.ads-group.v2.bd-slick .slick-dots {
  background: #fff;
  border: 1px solid #eaeaea; }
.ads-group.v3 .slick-dots {
  background: transparent;
  border: 0; }
.ads-group.v3 .slick-dots li button:before {
  color: #fff; }
.ads-group.v3 .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff; }

.more-product .slick-arrow,
.product-tab-pd .slick-arrow,
.recent .slick-arrow,
.releases.v2 .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid;
  text-align: center;
  line-height: 38px; }
.more-product .slick-arrow i,
.product-tab-pd .slick-arrow i,
.recent .slick-arrow i,
.releases.v2 .slick-arrow i {
  font-size: 17px; }
.more-product .prev,
.product-tab-pd .prev,
.recent .prev,
.releases.v2 .prev {
  display: block;
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
.more-product .next,
.product-tab-pd .next,
.recent .next,
.releases.v2 .next {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000; }
@media (min-width: 1025px) {
  .more-product .slick-dotted.slick-slider,
  .product-tab-pd .slick-dotted.slick-slider,
  .recent .slick-dotted.slick-slider,
  .releases.v2 .slick-dotted.slick-slider {
    margin-bottom: 42px; } }
@media (min-width: 480px) {
  .more-product .slick-list,
  .product-tab-pd .slick-list,
  .recent .slick-list,
  .releases.v2 .slick-list {
    margin: 0 -15px; } }
@media (min-width: 1681px) {
  .more-product .slick-list,
  .product-tab-pd .slick-list,
  .recent .slick-list,
  .releases.v2 .slick-list {
    margin: 0 -20px; } }
@media (min-width: 480px) {
  .more-product .slick-slide .product-item,
  .product-tab-pd .slick-slide .product-item,
  .recent .slick-slide .product-item,
  .releases.v2 .slick-slide .product-item {
    padding: 0 15px; } }
@media (min-width: 1681px) {
  .more-product .slick-slide .product-item,
  .product-tab-pd .slick-slide .product-item,
  .recent .slick-slide .product-item,
  .releases.v2 .slick-slide .product-item {
    padding: 0 20px; } }
.more-product .slick-dots,
.product-tab-pd .slick-dots,
.recent .slick-dots,
.releases.v2 .slick-dots {
  position: static;
  border: 1px solid #eaeaea;
  margin: 0 auto;
  display: table !important;
  padding: 6px 18px;
  border-radius: 999px; }
.more-product .slick-dots li,
.product-tab-pd .slick-dots li,
.recent .slick-dots li,
.releases.v2 .slick-dots li {
  margin: 0; }
.more-product .slick-dots li button:before,
.product-tab-pd .slick-dots li button:before,
.recent .slick-dots li button:before,
.releases.v2 .slick-dots li button:before {
  font-size: 12px; }
@media (min-width: 1025px) {
  .more-product .h-heading,
  .product-tab-pd .h-heading,
  .recent .h-heading,
  .releases.v2 .h-heading {
    margin-bottom: 82px; } }
@media (max-width: 480px) {
  .more-product .product-item .pd-bd,
  .product-tab-pd .product-item .pd-bd,
  .recent .product-item .pd-bd,
  .releases.v2 .product-item .pd-bd {
    -webkit-box-shadow: none;
    box-shadow: none; } }

.btn-morepd {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #666666;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.btn-morepd span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  background: #242424;
  margin-right: 17px; }
.btn-morepd i {
  color: #fff;
  font-size: 18px; }
.btn-morepd:hover span {
  -webkit-box-shadow: 0px 2px 20px 2px rgba(194, 106, 245, 0.68);
  box-shadow: 0px 2px 20px 2px rgba(194, 106, 245, 0.68); }

.releases {
  padding-top: 50px; }
@media (min-width: 1025px) {
  .releases {
    padding-top: 85px; } }
.releases.spc1 {
  padding-bottom: 20px; }
@media (min-width: 1025px) {
  .releases.spc1 {
    padding-bottom: 87px; } }
.releases.v2 {
  padding-top: 70px; }
@media (max-width: 480px) {
  .releases.v2 {
    padding-top: 0; } }
@media (min-width: 480px) {
  .releases.v2 .product-tab-sw2 {
    margin-bottom: 60px; } }
.releases .product-tab-sw2 {
  margin-bottom: 50px; }
@media (min-width: 1025px) {
  .releases .product-tab-sw2 {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin-bottom: 82px; }
  .releases .product-tab-sw2 li {
    margin: unset; } }

.releases .owl-nav > div.owl-prev, .bestseller .owl-nav > div.owl-prev, .category-list .owl-nav > div.owl-prev, .section-cate .owl-nav > div.owl-prev, .onsale .owl-nav > div.owl-prev {
  right: auto;
  left: 0; }
.releases .owl-nav > div.owl-next, .bestseller .owl-nav > div.owl-next, .category-list .owl-nav > div.owl-next, .section-cate .owl-nav > div.owl-next, .onsale .owl-nav > div.owl-next {
  right: 0;
  left: auto; }
.releases .owl-theme .owl-nav [class*=owl-], .bestseller .owl-theme .owl-nav [class*=owl-], .category-list .owl-theme .owl-nav [class*=owl-], .section-cate .owl-theme .owl-nav [class*=owl-], .onsale .owl-theme .owl-nav [class*=owl-] {
  font-size: 17px;
  background: #fff;
  color: var(--engoc-color-main1);
    border-radius: 2px;
    margin: 0;
    padding: 0; }
.releases .owl-nav > div, .bestseller .owl-nav > div, .category-list .owl-nav > div, .section-cate .owl-nav > div, .onsale .owl-nav > div {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--engoc-color-main1);
    left: 0;
    position: absolute;
    top: 35%;
    border: 1px solid;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }

.flash-deals {
  padding-top: 50px;
  padding-bottom: 86px; }
@media (min-width: 1025px) {
  .flash-deals {
    padding-top: 68px; } }
.flash-deals .owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto; }
.flash-deals .title-icon {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .flash-deals .title-icon {
    margin-bottom: 60px; } }

.product-countd.pd-bd {
  border: 2px solid #eaeaea;
  padding: 15px; }
@media (min-width: 1025px) {
  .product-countd.pd-bd {
    padding: 0 25px 25px;
    margin-top: 140px; } }
@media (min-width: 1681px) {
  .product-countd.pd-bd {
    padding: 0 32px 43px 38px; } }
.product-countd.pd-bd.spc2 {
  margin-top: 0;
  border: 0;
  height: 100%;
  padding-bottom: 70px; }
@media (min-width: 1025px) {
  .product-countd.pd-bd.spc2 {
    padding: 25px 25px 25px; } }
@media (min-width: 1681px) {
  .product-countd.pd-bd.spc2 {
    padding: 65px 37px 130px 37px; } }
.product-countd.pd-bd.spc2.bg {
  background: #fafafa; }

.product-item-countd .product-head {
  max-width: 100%;
  vertical-align: middle;
  text-align: center; }
@media (min-width: 1025px) {
  .product-item-countd .product-head {
    margin-top: -140px;
    position: relative; } }
.product-item-countd .product-info .product-cate {
  margin-bottom: 20px; }
.product-item-countd .deal-progress {
  padding-top: 40px;
  padding-bottom: 20px; }
.product-item-countd .progress {
  background-color: #eee;
  height: 9px;
  border-radius: 9px;
  -webkit-box-shadow: none;
  box-shadow: none; }
.product-item-countd .progress .progress-bar {
  border-radius: 9px;
  background: #54f0ff;
  background-image: linear-gradient(122deg, #c26af5, #54f0ff); }

.deal-stock {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding-bottom: 13px; }
.deal-stock span {
  color: #999999; }
.deal-stock span.stock-available strong {
  font-weight: normal;
  color: #333333; }

.time-cound p {
  color: #666666;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 33px; }

.countdown-time {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center; }
.countdown-time.v2 {
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start; }
.countdown-time.v3 {
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start; }
.countdown-time.v3 span {
  color: #999999; }
.countdown-time.v3 li p {
  color: #999999; }
.countdown-time b {
  font-weight: 300; }
.countdown-time li {
  display: inline-block;
  margin-right: 10px;
  text-align: center; }
@media (min-width: 1681px) {
  .countdown-time li {
    margin-right: 27px; } }
.countdown-time li:last-child {
  margin-right: 0; }
.countdown-time li p {
  font-weight: lighter;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border: 2px solid #dddddd;
  border-radius: 50%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px; }
@media (min-width: 1025px) {
  .countdown-time li p {
    font-size: 28px;
    width: 70px;
    height: 70px; } }
.countdown-time li span {
  font-weight: 500;
  text-transform: capitalize; }

.bestseller2 {
  padding-top: 50px;
  padding-bottom: 30px; }
@media (min-width: 1025px) {
  .bestseller2 {
    padding-top: 90px;
    padding-bottom: 65px; }
  .bestseller2 .row {
    margin-left: -4px;
    margin-right: -4px; }
  .bestseller2 [class*="col-"] {
    padding-left: 4px;
    padding-right: 4px; } }
@media (min-width: 1025px) {
  .bestseller2.spc5 {
    padding-bottom: 120px; } }
@media (min-width: 1025px) {
  .bestseller2 .product-item {
    margin-bottom: 8px; } }
.bestseller2 .product-item .product-img {
  text-align: center; }
.bestseller2 .pd-bd {
  border: 2px solid #f0f0f0; }
.bestseller2 .col-sm-6:nth-child(2n+1) {
  clear: none; }
@media (max-width: 1024px) {
  .bestseller2 .h-heading {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; }
  .bestseller2 .h-heading .title-icon.t-inline {
    margin-bottom: 15px; }
  .bestseller2 .h-heading .title-icon {
    margin-bottom: 15px; } }

.h-heading {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .h-heading {
    margin-bottom: 72px; } }
@media (max-width: 480px) {
  .h-heading {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }

.line-title {
  position: relative;
  z-index: 1; }
@media (min-width: 1025px) {
  .line-title {
    width: 85.666666%; } }
@media (max-width: 480px) {
  .line-title {
    margin-bottom: 15px; } }
@media (min-width: 1025px) {
  .line-title.v2 {
    width: 34.2%; } }
@media (min-width: 1681px) {
  .line-title.v2 {
    width: 53.5%; } }
.line-title:before {
  border-top: 1px solid #ededed;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1; }

.title-icon {
  position: relative; }
.title-icon h3 {
  font-size: 20px;
  font-weight: bold; }
.title-icon.t-inline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
@media (max-width: 480px) {
  .title-icon.t-inline {
    margin-bottom: 15px; } }
.title-icon.t-inline h3 {
  background: #fff;
  padding-left: 20px; }
.title-icon.e-gradient, .blog-post-social a.title-icon:hover, .blog-comment-item .cmt-content .title-icon.btn-author:hover, .social a.title-icon:hover {
  font-size: 16px;
  width: 250px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 500;
  border-radius: 999px; }
@media (min-width: 1025px) {
  .title-icon.e-gradient, .blog-post-social a.title-icon:hover, .blog-comment-item .cmt-content .title-icon.btn-author:hover, .social a.title-icon:hover {
    font-size: 18px;
    width: 319px;
    height: 63px;
    line-height: 63px; } }
@media (min-width: 480px) {
  .title-icon.e-gradient, .blog-post-social a.title-icon:hover, .blog-comment-item .cmt-content .title-icon.btn-author:hover, .social a.title-icon:hover {
    padding-left: 39px; } }
@media (max-width: 480px) {
  .title-icon.e-gradient, .blog-post-social a.title-icon:hover, .blog-comment-item .cmt-content .title-icon.btn-author:hover, .social a.title-icon:hover {
    text-align: center;
    margin-bottom: 20px; } }
.title-icon.e-gradient.v2, .blog-post-social a.title-icon.v2:hover, .blog-comment-item .cmt-content .title-icon.v2.btn-author:hover, .social a.title-icon.v2:hover {
  padding-left: 0; }
@media (max-width: 1024px) {
  .title-icon.e-gradient.v2, .blog-post-social a.title-icon.v2:hover, .blog-comment-item .cmt-content .title-icon.v2.btn-author:hover, .social a.title-icon.v2:hover {
    text-align: center; } }
@media (max-width: 768px) {
  .title-icon.e-gradient.v2, .blog-post-social a.title-icon.v2:hover, .blog-comment-item .cmt-content .title-icon.v2.btn-author:hover, .social a.title-icon.v2:hover {
    margin-bottom: 15px; } }
@media (max-widht: 480px) {
  .title-icon.e-gradient.v2, .blog-post-social a.title-icon.v2:hover, .blog-comment-item .cmt-content .title-icon.v2.btn-author:hover, .social a.title-icon.v2:hover {
    margin-bottom: 0; } }
@media (min-width: 1025px) {
  .title-icon.e-gradient.v2, .blog-post-social a.title-icon.v2:hover, .blog-comment-item .cmt-content .title-icon.v2.btn-author:hover, .social a.title-icon.v2:hover {
    padding-left: 39px; } }
.title-icon.t-column {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1; }
.title-icon.t-column:before {
  content: "";
  display: block;
  border-top: solid 1px #eee;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 23%;
  z-index: -1; }
.title-icon.t-column .t-inside {
  background: #fff;
  display: block;
  text-align: center; }
.title-icon.t-column h3 {
  margin-top: 20px; }
.title-icon.t-column img {
  padding: 0 33px; }
.title-icon.t-column.mg-50 {
  margin-bottom: 46px; }

.feature {
  background: #dcb47e;
  padding: 30px 0; }
.feature.v2 {
  background: transparent;
  padding-top: 20px; }
@media (min-width: 1025px) {
  .feature.v2 {
    padding-bottom: 115px; } }
@media (max-width: 480px) {
  .feature.v2 {
    padding-top: 0; } }
@media (min-width: 1025px) {
  .feature {
    padding: 78px 0; } }

.feature-inside {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (max-width: 480px) {
  .feature-inside {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
.feature-inside .feature-block {
  width: 100%;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.3); }
.feature-inside .feature-block.v2 {
  border-right: 0;
  position: relative; }
.feature-inside .feature-block.v2:before {
  border-right: 1px solid #ebebeb;
  content: "";
  height: 99px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
@media (max-width: 480px) {
  .feature-inside .feature-block.v2:before {
    border-right: 0; } }
.feature-inside .feature-block.v2:first-child:before {
  border-right: 0; }
@media (max-width: 1024px) {
  .feature-inside .feature-block.v2:nth-child(3):before {
    border-right: 0; } }
@media (min-width: 1024px) {
  .feature-inside .feature-block {
    width: 25%; } }
@media (max-width: 1024px) {
  .feature-inside .feature-block {
    width: 50%;
    margin-bottom: 30px; }
  .feature-inside .feature-block:nth-child(2) {
    border-right: 0; } }
@media (max-width: 480px) {
  .feature-inside .feature-block {
    width: 100%;
    border-right: 0; } }
.feature-inside .feature-block:last-child {
  border-right: 0;
  margin-bottom: 0; }
.feature-inside .feature-block .feature-info {
  color: #fff; }
.feature-inside .feature-block .feature-info h3 {
  font-size: 18px;
  margin-bottom: 10px; }
.feature-inside .feature-block .feature-info p {
  line-height: 22px; }
.feature-inside .feature-block .feature-info.v2 {
  color: #333333; }
.feature-inside .feature-block .feature-info.v2 p {
  color: #666666; }
.feature-inside .feature-block .feature-block-img {
  margin-bottom: 12px; }

.e-feature {
  padding-bottom: 40px; }
@media (min-width: 1025px) {
  .e-feature {
    padding-bottom: 93px; } }
@media (min-width: 1681px) {
  .e-feature .row {
    margin: 0 -20px; }
  .e-feature [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }
.e-feature .feature-block-img {
  margin-bottom: 10px; }
.e-feature .feature-block-img img {
  opacity: 0.2; }
@media (max-width: 767px) {
  .e-feature .feature-item {
    margin-bottom: 30px;
    text-align: center; } }

.feature-info.v2 h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px; }
.feature-info.v2 p {
  color: #666666;
  line-height: 22px; }
@media (min-width: 767px) {
  .feature.v2 .feature-info.v2 p {
    max-width: 320px;
    margin: 0 auto; } }

.category-item .bd-7 {
  border: 1px solid #f0f0f0;
  border-bottom: 0;
  border-radius: 10px 10px 0 0; }
.category-item .pd30 {
  padding: 30px 27px 30px 30px; }
.category-item .cate-img {
  overflow: hidden; }
.category-item .cate-img a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }
.category-item .cate-img a img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
.category-item:hover img {
  -webkit-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg); }

.cate-bg {
  background: #f8f8f8;
  border-radius: 0 0 10px 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }

.cate-content {
  position: relative; }
.cate-content h3 {
  font-size: 16px;
  font-weight: 500; }
.cate-content .abs {
  position: absolute;
  right: 0;
  top: 28px; }

.btn-shopcate {
  font-size: 13px;
  width: 122px;
  height: 38px;
  line-height: 37px;
  border-radius: 999px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center; }
.btn-shopcate i {
  margin-left: 8px; }

.cate-list li {
  line-height: 32px;
  position: relative;
  display: block;
  margin-left: 13px; }
.cate-list li a {
  color: #666;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
.cate-list li a:hover {
  color: #ff5050;
  background-color: transparent; }
.cate-list li:before {
  content: "\f363";
  font-family: "ionicons";
  position: absolute;
  top: 0;
  left: -13px;
  color: #bfbfbf; }
.cate-list li:hover::before {
  color: #ff5050; }

.top-product-tab {
  padding-bottom: 33px; }
@media (max-width: 480px) {
  .top-product-tab {
    padding-bottom: 0; } }
@media (min-width: 1681px) {
  .top-product-tab .row {
    margin: 0 -20px; }
  .top-product-tab [class*="col-"] {
    padding: 0 20px; } }
@media (min-width: 1025px) {
  .top-product-tab .product-tab {
    margin-bottom: -10px; } }
@media (min-width: 1025px) {
  .top-product-tab .filter-product.e-category {
    padding-bottom: 0; } }
@media (min-width: 1025px) {
  .top-product-tab .filter {
    margin-bottom: 0; } }
@media (min-width: 1025px) {
  .top-product-tab .e-category {
    padding-bottom: 0; } }
.top-product-tab .product-tab-sw {
  margin-bottom: 26px; }
@media (min-width: 1024px) {
  .top-product-tab .product-tab-sw {
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start; } }
@media (max-width: 1024px) {
  .top-product-tab .product-tab-sw {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px; }
  .top-product-tab .product-tab-sw li {
    margin-bottom: 15px; } }
@media (min-width: 1025px) {
  .top-product-tab .product-tab .owl-carousel {
    width: 100.2%; } }
.top-product-tab .product-tab .owl-nav > div.owl-prev {
  right: auto;
  left: 0; }
@media (min-width: 1025px) {
  .top-product-tab .product-tab .owl-nav > div.owl-prev {
    left: -20px; } }
.top-product-tab .product-tab .owl-nav > div.owl-next {
  right: 0;
  left: auto; }
@media (min-width: 1025px) {
  .top-product-tab .product-tab .owl-nav > div.owl-next {
    right: -20px; } }
.top-product-tab .product-tab .owl-theme .owl-nav [class*=owl-] {
  font-size: 17px;
  background: #fff;
  color: #bcbcbc;
  border-radius: 2px;
  margin: 0;
  padding: 0; }
.top-product-tab .product-tab .owl-theme .owl-nav [class*=owl-].active {
  color: var(--engoc-color-main1); }
.top-product-tab .product-tab .owl-nav > div {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--engoc-color-main1);
    left: 0;
    position: absolute;
    top: 35%;
    border: 1px solid #ededed;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }
@media (min-width: 1025px) {
  .top-product-tab .product-tab .owl-nav > div {
    top: 45%; } }
.top-product-tab .product-tab .owl-nav > div:hover {
  opacity: 1; }
.top-product-tab .product-tab .owl-nav > div.active {
  color: var(--engoc-color-main1);
    border: 1px solid var(--engoc-color-main1); }

@media (min-width: 1681px) {
  .super-deal [class*="col-"] {
    padding: 0 20px; }
  .super-deal .row {
    margin: 0 -20px; } }
@media (max-width: 767px) {
  .super-deal [class*="col-"] {
    margin-bottom: 30px; } }
.super-deal .owl-cate.owl-theme .owl-nav.disabled + .owl-dots {
  z-index: 100;
  position: relative; }
@media (min-width: 1025px) {
  .super-deal .owl-cate.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: -84px;
    margin-left: 75px; }
  .super-deal .filter-product.e-category {
    padding-bottom: 50px; } }
.super-deal.v2 {
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .super-deal.v2 {
    margin-bottom: 98px; } }
@media (min-width: 1025px) {
  .super-deal.v2 > [class*="col-"] {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .super-deal.v2 .row {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */ } }
.super-deal.v2 .owl-cate.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  margin-left: 0; }
@media (max-width: 1024px) {
  .super-deal.v2 .owl-cate.owl-theme .owl-nav.disabled + .owl-dots {
    margin: 0 auto; } }
.super-deal.v2 .owl-cate .owl-dots {
  border: 0; }
@media (min-width: 1025px) {
  .super-deal.v2 .owl-dots {
    bottom: 74px;
    left: 140px; } }
@media (min-width: 1681px) {
  .super-deal.v2 .owl-dots {
    margin: 0;
    bottom: 74px;
    left: 169px; } }

.sp-item {
  background: -webkit-gradient(linear, left top, right top, from(#c26af5), to(#54f0ff));
  background: linear-gradient(to right, #c26af5, #54f0ff);
  border-radius: 7px;
  padding: 4px; }
@media (min-width: 1025px) {
  .sp-item {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width: 100%;
    table-layout: fixed; }
  .sp-item .text-box {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 50%;
    padding-right: 15px; }
  .sp-item .product-wrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 50%; } }
.sp-item .text-box {
  background: #fff;
  padding-left: 75px;
  padding-top: 70px;
  padding-bottom: 115px;
  border-radius: 0 0 7px 7px; }
@media (min-width: 1025px) {
  .sp-item .text-box {
    border-radius: 7px 0 0 7px; } }
@media (max-width: 1024px) {
  .sp-item .text-box {
    padding: 24px 24px 50px 24px; } }
@media (max-width: 480px) {
  .sp-item .text-box {
    padding-bottom: 50px; } }
.sp-item .product-wrapper {
  background: #fff;
  padding-right: 24px;
  padding-top: 73px;
  border-radius: 7px 7px 0 0; }
@media (min-width: 1025px) {
  .sp-item .product-wrapper {
    border-radius: 0 7px 7px 0; } }
@media (max-width: 1024px) {
  .sp-item .product-wrapper {
    padding: 24px; } }
@media (min-width: 1025px) {
  .sp-item .product-info-top {
    max-width: 280px; }
  .sp-item .product-info-top .deal-progress {
    max-width: 269px; } }
.sp-item .product-item-countd .deal-progress {
  padding-top: 27px;
  padding-bottom: 8px; }
.sp-item .time-cound p {
  margin-bottom: 20px; }

.deal-title {
  color: #c6c6c6;
  font-size: 24px;
  margin-bottom: 10px; }
@media (min-width: 1025px) {
  .deal-title {
    font-size: 30px;
    margin-bottom: 20px; } }

.category-list.spc5 {
  padding-top: 30px; }
@media (min-width: 1025px) {
  .category-list.spc5 {
    padding-top: 63px; } }
@media (min-width: 1025px) {
  .category-list .owl-cate.v3.owl-theme .owl-controls .owl-dots {
    margin-top: 50px; } }

.bg-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6f6f6));
  background: linear-gradient(#fff, #f6f6f6); }
.bg-gradient.bg-insinde .product-inner {
  background: #fff; }
.bg-gradient.bg-insinde .slick-dots {
  background: #fff; }
.bg-gradient.bg-insinde .owl-dots {
  background: #fff; }
@media (min-width: 1025px) {
  .bg-gradient.bg-insinde .product-button-group {
    border-left: 0;
    border-right: 0; } }

.custom-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0); }
@media (min-width: 480px) {
  .custom-dots {
    bottom: 50px; } }
.custom-dots .owl-dot {
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.custom-dots .owl-dot.active span, .custom-dots .owl-dot:hover span {
  background: #333333;
  opacity: 1; }
.custom-dots .owl-dot span {
  width: 11px;
  height: 11px;
  background: #333333;
  opacity: 0.21;
  margin: 5px 7px;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  border-radius: 50%; }

.tab-link {
  position: relative; }
@media (max-width: 767px) {
  .tab-link {
    margin-bottom: 30px; } }
.tab-link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #eaeaea;
  border-radius: 10px;
  pointer-events: none; }
.tab-link li {
  z-index: 1;
  position: relative;
  border-bottom: 1px solid #eaeaea; }
.tab-link li a {
  display: table;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  padding: 25px 20px 25px 20px; }
@media (min-width: 1681px) {
  .tab-link li a {
    padding: 34px 20px 35px 20px; } }
.tab-link li .tab-link-info img {
  width: 81px;
  height: 81px;
  margin-right: 20px; }
.tab-link li .tab-link-info span {
  font-size: 16px;
  color: #666666; }
.tab-link li.active {
  background: -webkit-gradient(linear, left top, right top, from(#c467f5), to(#53f3ff));
  background: linear-gradient(90deg, #c467f5, #53f3ff); }
@media (min-width: 767px) {
  .tab-link li.active:before {
    content: '';
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #53f3ff;
    position: absolute;
    right: -16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); } }
.tab-link li.active .tab-link-info span {
  color: #fff; }
.tab-link li:first-child {
  border-radius: 10px 10px 0 0; }
.tab-link li:last-child {
  border-radius: 0 0 10px 10px; }

@media (min-width: 1681px) {
  .feature-product [class*="col-"] {
    padding: 0 20px; }
  .feature-product .row {
    margin: 0 -20px; } }
@media (minw-width: 480px) {
  .feature-product.spc2 {
    margin-bottom: 20px; } }
.feature-product.spc3 {
  margin-bottom: 50px; }
@media (minw-width: 480px) {
  .feature-product.spc3 {
    margin-bottom: 105px; } }

.our-blog {
  padding-top: 40px;
  padding-bottom: 20px;
  margin-bottom: 30px; }
@media (min-width: 1025px) {
  .our-blog {
    padding-top: 83px;
    padding-bottom: 61px;
    margin-bottom: 84px; } }
.our-blog.bg {
  background: #f7f7f7; }
.our-blog .owl-dots {
  margin-top: -10px; }
.our-blog .owl-nav > div.owl-prev {
  right: auto;
  left: 0; }
@media (min-width: 1025px) {
  .our-blog .owl-nav > div.owl-prev {
    left: -20px; } }
.our-blog .owl-nav > div.owl-next {
  right: 0;
  left: auto; }
@media (min-width: 1025px) {
  .our-blog .owl-nav > div.owl-next {
    right: -20px; } }
.our-blog .owl-theme .owl-nav [class*=owl-] {
  font-size: 17px;
  background: #fff;
  color: #bcbcbc;
  border-radius: 2px;
  margin: 0;
  padding: 0; }
.our-blog .owl-theme .owl-nav [class*=owl-].active {
  color: var(--engoc-color-main1); }
.our-blog .owl-nav > div {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--engoc-color-main1);
    left: 0;
    position: absolute;
    top: 35%;
    border: 1px solid #ededed;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s; }
@media (min-width: 1025px) {
  .our-blog .owl-nav > div {
    top: 30%; } }
.our-blog .owl-nav > div:hover {
  opacity: 1; }
.our-blog .owl-nav > div.active {
  color: var(--engoc-color-main1);
    border: 1px solid var(--engoc-color-main1); }

/*
6.4. Other Page
6.4.1 My account


*/
.page-title {
  font-size: 18px;
  font-weight: 500;
  border-radius: 999px;
  border: 2px solid #333333;
  background: #fff;
  display: inline-block;
  line-height: 50px; }
.page-title.v1 {
  width: 182px; }
.page-title.v2 {
  width: 116px; }
.page-title.v3 {
  width: 155px; }
.page-title.v4 {
  width: 134px; }
.page-title.v5 {
  width: 210px; }
.page-title.v6 {
  width: 229px; }

@media (max-width: 767px) {
  .page-title.v2 {
    display: none;
  }
}
.myaccount .row.pd {

  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 50px; }
/* @media (min-width: 1681px) {
.myaccount .row.pd {
padding-left: 80px;
padding-right: 80px; } } */
@media (min-width: 1025px) {
  .myaccount .row.pd {
    margin: 0;
    padding-top: 70px;
    padding-bottom: 136px;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row; } }
@media (max-width: 1024px) {
  .myaccount .row.pd {
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }
.myaccount .account-element {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 560px;
  width: 560px;
  padding: 10px 40px;
}
@media (max-width: 480px) {
  .myaccount .account-element {
    max-width: 360px;
    width: 360px; } }
@media (max-width: 320px) {
  .myaccount .account-element {
    max-width: 320px;
    width: 320px; } }
@media (min-width: 1025px) {
  .myaccount .account-element.e-left {
    margin-left: auto; } }
@media (max-width: 1024px) {
  .myaccount .account-element.e-left {
    margin-top: 90px; } }
.myaccount .account-element form {
  width: 100%;
}
.myaccount .form-group {
  margin-bottom: 42px; }
.myaccount .form-group label {
  color: #666666;
  margin-bottom: 17px; }
.myaccount .form-group input {
  width: 100%;
  height: 54px;
  border-radius: 999px;
  border: 1px solid #eaeaea;
  padding-left: 33px;
  margin-bottom: 30px; }
.myaccount .form-group input::-webkit-input-placeholder {
  color: #999999;
  font-size: 14px; }
.myaccount .form-group input:-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.myaccount .form-group input::-moz-placeholder {
  color: #999999;
  font-size: 14px; }
.myaccount .form-group input:-ms-input-placeholder {
  color: #999999;
  font-size: 14px; }
.myaccount .btn-submit {
  font-size: 16px;
  width: 159px;
  height: 54px;
  line-height: 54px;
  border-radius: 999px;
  padding: 0;
  border: 0; }
.myaccount .checkbox label {
  color: #666666; }
.myaccount .checkbox label:before {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 3px;
  margin-left: -23px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
.myaccount .checkbox label:after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -24px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555; }
.myaccount .checkbox.checkbox-default input[type="checkbox"],
.myaccount .checkbox.checkbox-default input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer; }
.myaccount .checkbox.checkbox-default input[type="checkbox"]:checked + label:after,
.myaccount .checkbox.checkbox-default input[type="radio"]:checked + label:after {
  font-family: 'FontAwesome';
  content: "\f00c"; }

.page-content {
  padding-bottom: 52px;
  width: 100%;
}
@media (max-width: 767px) {
  .page-content {
    padding: 10px 20px;
  }
}
.page-content p {
  color: #999999;
  text-align: center;
  margin-bottom: 38px; }

.btn-lostpwd {
  color: #999999;
  display: block;
  text-align: center;
  margin: 0 auto;
  position: relative;
  text-decoration: underline; }
.btn-lostpwd.spc {
  padding-top: 60px; }

.myaccount.trackorder .row.pd {
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center; }
@media (min-width: 1025px) {
  .myaccount.trackorder .row.pd {
    padding-bottom: 131px; } }
@media (min-width: 480px) {
  .myaccount.trackorder .page-content p {
    max-width: 460px;
    padding-top: 5px;
    line-height: 26px;
    margin-bottom: 40px; } }
@media (max-width: 480px) {
  .myaccount.trackorder .page-content p {
    width: 320px; } }
@media (max-width: 320px) {
  .myaccount.trackorder .page-content p {
    width: 280px; } }

/*
6.5. Commingsoon
6.5.1 Commingsoon Page

*/
@media (max-width: 768px) {
  .commingsoon .flex {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; } }
.commingsoon .c-width {
  width: 100%; }
@media (min-width: 1024px) {
  .commingsoon .c-width {
    width: 50%; } }
.commingsoon .c-width.c-left {
  background: #1d1d1d;
  padding: 30px 30px 30px 30px; }
@media (min-width: 1025px) {
  .commingsoon .c-width.c-left {
    padding: 100px 0 0 120px; } }
@media (min-width: 1681px) {
  .commingsoon .c-width.c-left {
    padding: 290px 0 0 120px; } }
.commingsoon .form_newsletter {
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px; }
@media (min-width: 1024px) {
  .commingsoon .form_newsletter {
    width: 402px; } }
@media (min-width: 480px) {
  .commingsoon .form_newsletter {
    margin-top: 40px;
    margin-bottom: 77px; } }
.commingsoon .form-control {
  height: 50px;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
  font-size: 12px;
  background: #fff;
  padding-left: 26px; }
.commingsoon .form-control::-webkit-input-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.commingsoon .form-control:-moz-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.commingsoon .form-control::-moz-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.commingsoon .form-control:-ms-input-placeholder {
  color: 12px;
  font-size: #aeaeae; }
.commingsoon .button_mini {
  position: absolute;
  top: 0;
  margin-top: 0;
  right: 0; }
.commingsoon .button_mini.btn {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  height: 50px;
  border-radius: 0 4px 4px 0;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  width: 124px;
  line-height: 40px; }
.commingsoon p {
  color: #666666; }
@media (min-width: 480px) {
  .commingsoon p {
    max-width: 480px;
    font-size: 18px;
    line-height: 26px; } }
.commingsoon .c-logo {
  margin-bottom: 20px; }
@media (min-width: 480px) {
  .commingsoon .c-logo {
    margin-bottom: 60px; } }
.commingsoon .time-cound {
  margin-bottom: 20px; }
@media (min-width: 480px) {
  .commingsoon .time-cound {
    margin-bottom: 52px; } }

.c-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: lighter;
  color: #fff; }
@media (min-width: 480px) {
  .c-title {
    margin-bottom: 45px;
    font-size: 40px; } }

.c-social a {
  color: #fff;
  font-size: 25px;
  margin-right: 20px; }
@media (min-width: 480px) {
  .c-social a {
    margin-right: 50px; } }
.c-social a:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s; }
@media (min-width: 480px) {
  .c-social {
    margin-bottom: 55px; } }

/** 7. Templates Layout **/
/*
7.Responsive
7.1. FullHD
7.1.1 FullHD
7.1.2 Min Fullhd
7.2. Desktop
7.2. Max Desktop
7.3. Table
7.3.1. tablet
7.3.2. Max tablet
7.4. Mobile
7.4.1. mobile
7.4.2. Max mobile
*/
@media (min-width: 1200px) {
  /*
  7.2. Desktop
  7.2. Max Desktop
  */
  .product-item {
    margin-bottom: 40px; }

  .product-flat .product-item {
    margin: 0; }

  .product-custom-bg .product-item {
    margin: 0; }

  .quickview-wrapper {
    overflow-y: scroll; }
  .quickview-wrapper .quick-modal {
    margin-top: 20px; }

  .product-standard .product-item {
    margin-bottom: 45px; } }
@media (min-width: 1500px) {
  /*

  7.1. FullHD
  7.1.1 FullHD

  */
  .product-item {
    margin-bottom: 48px; }

  .product-flat .product-item {
    margin: 0; }
  .product-flat .product-img img {
    width: 100%; }

  .product-custom-bg .product-item {
    margin: 0; }
  .product-custom-bg .product-img img {
    width: 100%; }

  .banner-img > a > img {
    width: 100%; }

  .hover-images {
    width: 100%; }

  .slider-img > img {
    width: 100%; }

  .slide-home-simple [class*="col-lg-10"] {
    width: 100%; }
  .slide-home-simple .col-lg-offset-1 {
    margin-left: 0; }

  .product-homecate-cat .container {
    width: 100%;
    padding: 0 190px; }

  .padding-hlook {
    padding-left: 149px;
    padding-right: 362px; }

  .padding-hlook-164 {
    padding-left: 164px;
    padding-right: 164px; }

  .padding-hlook-2 {
    padding-left: 190px;
    padding-right: 190px; }

  .content-info {
    margin-left: -45px; }

  .content-ver2 .content-info:first-child {
    max-width: 573px;
    float: right; }

  .content-ver2 .content-info:nth-child(2) {
    max-width: 580px;
    margin-left: 63px; }

  .content-ver2 [class*="col-sm-"] {
    padding: 0; }

  .product-filter {
    padding-right: 40px;
    padding-left: 40px; }

  .product-filter-button {
    padding-right: 40px;
    padding-left: 40px; }

  .shop-sidebar > .row {
    margin-left: -23px;
    margin-right: -23px; }

  .shop-sidebar > .row > [class*="col-"] {
    padding-left: 23px;
    padding-right: 23px; }

  .modern-grid .row {
    margin-left: -20px;
    margin-right: -20px; }

  .modern-grid .row > [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; } }
@media (max-width: 1199px) {
  /*
  7.2. Desktop
  7.2. Max Desktop
  */
  .product-item {
    margin-bottom: 40px; }

  .product-flat .product-item {
    margin: 0; }

  .product-custom-bg .product-item {
    margin: 0; }

  .quickview-wrapper {
    overflow-y: scroll; }
  .quickview-wrapper .quick-modal {
    margin-top: 20px; }

  .product-standard .product-item {
    margin-bottom: 45px; } }
@media (max-width: 1025px) {
  /*
  7.2. Desktop
  7.2. Max Desktop


  */
  .product-homecate .product-title {
    font-size: 40px; } }
@media (max-width: 1024px) {
  /*
  7.3. Table
  7.3.1. tablet


  */
  .slider-homesimple .slick-prev:before,
  .slider-homesimple .slick-next:before {
    display: none; }

  .blog-home .blog-post-item {
    margin-bottom: 30px; }

  .wrap-filter-box.wrap-filter-number {
    display: none; }

  .wrap-filter-box.filter-half.wrap-filter-number.right {
    display: table-cell; } }
@media (max-width: 768px) {
  /*
  7.4. Mobile
  7.3.2. Max tablet

  */
  .cosre-title {
    font-size: 30px; }

  .title-ver1 {
    font-size: 30px; }

  .hero-section .page-title {
    font-size: 30px; } }
@media (max-width: 767px) {
  /*
  7.4. Mobile
  7.4.1. mobile


  */


  .product-flat .product-item {
    margin-bottom: 30px; }

  .slider-homesimple .slider-content {
    border-bottom: 35px solid #ffffff;
    border-top: 35px solid #ffffff;
    min-width: 320px; }

  .wrapper-product-list .product-info-ver2 {
    margin-bottom: 30px; }

  .content-img {
    margin-bottom: 30px; }

  .cart-box-container-ver2 [class*="col-xs-"] {
    margin-bottom: 30px; }

  [class*="parallax_"] .cosre-title-wrap {
    text-align: center; }
  [class*="parallax_"] .cosre-title-wrap .title-block {
    font-size: 40px; }

  .single-product-info {
    margin-top: 30px; }

  .wrapper-product .product-tab.ver2 li {
    margin-top: 15px;
    margin-bottom: 15px; }

  .wrapper-product.product-homecate-bg {
    text-align: center; }

  .product-homecate .product-title:before {
    left: 0;
    right: 0;
    margin: 0 auto; }

  .product-homecate .product-info-ver2.left {
    text-align: center; }

  .product-homecate .product-info-ver2.right {
    text-align: center; }

  .banner-content .banner-title {
    font-size: 20px; }

  .banner-content p {
    font-size: 12px; }

  .product-item:hover .btn-quickview {
    opacity: 0; }

  .content-info {
    text-align: center; }

  .content-info h3:before {
    left: 0;
    right: 0;
    margin: 0 auto; }

  .lookbook-title {
    text-align: center;
    display: block;
    border: 0; }

  .blog-post-container .blog-post-single .blog-post-info {
    margin-top: 30px; }

  .product-flat .product-item {
    margin-bottom: 30px; }

  .product-custom-bg .product-item {
    margin-bottom: 30px; }

  .banner-img img {
    width: 100%; } }
@media (max-width: 480px) {
  /*
  7.4. Mobile

  7.4.2. Max mobile
  */
  .pushmenu-push-toright-cart {
    right: 300px; }

  .pushmenu.pushmenu-left {
    width: 300px; }

  .menu-social {
    width: 270px; }

  .cart-bottom {
    width: 300px; }

  footer [class*="col-xs-"] {
    width: 100%; }

  .blog-grid [class*="col-xs-"] {
    width: 100%; }

  .wrap-gallery-grid [class*="col-xs-"] {
    width: 100%; }

  .btn-shoplook {
    font-size: 10px; }

  .product-grid [class*="col-xs-"], .product-tab [class*="col-xs-"], .homepage-banner [class*="col-xs-"] {
    width: 100%; }

  .wrapper-product [class*="col-xs-"] {
    width: 100%; }

  .wrapper-category [class*="col-xs-"], .feature-product [class*="col-xs-"] {
    width: 100%; }

  .slider-homesimple .slider-content {
    min-width: 280px; }

  .banner-img img {
    width: 100%; } }

/*# sourceMappingURL=style.css.map */
.cart-list-heading {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 1px solid #ecebeb; }
.cart-inside {
  background:#fff;
  position: relative;
  height: calc(100% - 46px);
  overflow: hidden; }

.cart-list {
  position: relative;
  height: 100%; }
.cart-list .cart-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 0;
  font-weight: 500;
  display: inline-block;
  position: relative;
  text-transform: uppercase; }
.cart-list .close-menu-mobile {
  cursor: pointer;
  width: 45px;
  height: 45px;
  color: var(--engoc-color-main1);
    border-right: 1px solid #ecebeb;
    transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s; }
.cart-list .close-menu-mobile:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.cart-list .close-menu-mobile:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }
.cart-list .close-menu-mobile:before, .cart-list .close-menu-mobile:after {
  border-bottom: 2px solid;
  content: "";
  left: 12px;
  position: absolute;
  top: 21px;
  width: 17px; }
.cart-list .close-menu-mobile:hover {
  color: var(--engoc-primary-color); }
.cart-list .minicart-number-items {
  width: 45px;
  height: 45px;
  line-height: 46px;
  text-align: center;
  border-left: 1px solid #ecebeb;
  font-weight: 500; }
.cart-list .list {
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 118px);
  width: calc(100% + 17px);
  padding: 0 44px;
  margin-bottom: 0;
  background: #f7f7f7; }
.cart-list .list .item-cart {
  flex: 1 1 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #ecebeb; }
.cart-list .list .item-cart:last-child {
  border-bottom: 0; }
.cart-list .list .item-cart .product-img-wrap {
  width: 87px;
  flex: 0 0 87px;
  margin-right: 20px; }
.cart-list .list .item-cart .product-details .inner-left {
  max-width: 200px; }
.cart-list .list .item-cart .product-details .inner-left .product-name {
  font-size: 16px;
  color: var(--engoc-color-main1);
    font-weight: 400;
    margin-bottom: 5px; }
.cart-list .list .item-cart .product-details .inner-left .product-price {
  font-size: 16px;
  color: #919191;
  margin-bottom: 10px; }
.cart-list .list .item-cart .product-details .inner-left .product-qtt {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em; }
.cart-list .cart-qtt {
  font-size: 15px;
  font-weight: 600;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
.cart-list .cart-qtt .product_quantity_number {
  width: 52px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #f8f5f5; }
.cart-list .cart-qtt .quantity-left-minus {
  width: 40px;
  height: 35px;
  text-align: center;
  margin-right: -1px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 0;
  background: #f8f5f5;
  padding: 0; }
.cart-list .cart-qtt .quantity-left-minus:focus {
  outline: none; }
.cart-list .cart-qtt .quantity-left-minus:active {
  box-shadow: none; }
.cart-list .cart-qtt .quantity-right-plus {
  width: 40px;
  height: 35px;
  text-align: center;
  margin-left: -1px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 0;
  background: #f8f5f5;
  padding: 0; }
.cart-list .cart-qtt .quantity-right-plus:focus {
  outline: none; }
.cart-list .cart-qtt .quantity-right-plus:active {
  box-shadow: none; }

.nocart-list .empty-cart {
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 353px; }
@media (max-width: 480px) {
  .nocart-list .empty-cart {
    width: 300px; } }
.nocart-list .nocart-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 35px; }
.nocart-list .btn-shop {
  width: 187px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  border: 1px solid var(--engoc-color-main1);
    display: inline-block; }

.cart-bottom {
  background: #fff;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000; }
.cart-bottom label {
  font-weight: 400; }
.cart-bottom .cart-note-form textarea {
  background-color: #f7f7f7;
  border: 0;
  resize: none; }
.cart-bottom .total {
  text-align: right;
  font-size: 16px;
  color: var(--engoc-color-main1);
    font-weight: 500;
    margin-bottom: 30px; }
@media (max-width: 767px) {
  .cart-bottom .total {
    margin-bottom: 15px; } }
.cart-bottom .total span {
  float: left; }
.cart-bottom a {
  font-size: 14px;
  font-weight: 500; }
.cart-bottom .checkout {
  display: block;
  text-align: center;
  padding: 0; }
.cart-bottom .text {
  color: #9f9e9e;
  text-decoration: underline;
  text-align: center;
  display: block; }
.cart-bottom .text:hover {
  color: var(--engoc-primary-color); }
.cart-bottom .cart-button {
  margin-top: 16px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }
.cart-bottom .cart-button:before:before, .cart-bottom .cart-button:before:after {
  content: " ";
  display: table; }
.cart-bottom .cart-button:before:after {
  clear: both; }
.cart-bottom .cart-button .ciloe-btn {
  width: 50%;
  flex: 0 0 50%;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFF;
  background: var(--engoc-color-main1);
    }
.cart-bottom .cart-button .ciloe-btn:hover{
  background: var(--engoc-primary-color);
    border: 1px solid var(--engoc-primary-color);
      }
.cart-bottom .cart-button .ciloe-btn:first-child {
  border-right: 1px solid #2b2b2b; }
.cart-bottom .cart-price {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 0 40px; }
.cart-bottom .cart-price span {
  font-size: 16px; }
.blog-widget-banner.blog-widget a{
  padding: 5px 20px;
  border: 1px solid var(--engoc-color-main1);
    border-radius: 40px;
    margin:0 10px 10px 0;
    display:inline-block;
    }
.blog-widget.blog-widget-search{
  border-bottom:0;
  padding-bottom:0;
}
.blog-widget.blog-widget-search form{
  position:relative;
}
.blog-widget.blog-widget-search form input{
  line-height: 40px;
  padding-left: 20px;
  height: 40px;
  border: none;
  background: #f3f3f3;
  border-radius: 40px!important;
  font-size:12px;
}
.blog-widget.blog-widget-search form button{
  position: absolute;
  top: 0;
  right: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #a2a2a2;
  text-align: center;
  font-size: 14px;
  transition: all .3s ease;
}

/* — fix_style.css — */
/* ── Lota Grotesque – CSS variables & usage ──────────────────────────────── */
:root {
  --font-primary:          'Lota Grotesque', Arial, Helvetica, sans-serif;
  --font-weight-body:      400;
  --font-weight-ui:        600;
  --font-weight-heading:   700;
  --font-weight-display:   900;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-heading);
}

h1 { font-weight: var(--font-weight-display); }
h4 { font-weight: var(--font-weight-ui); }

.btn,
button,
[type="button"],
[type="submit"] {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-ui);
  letter-spacing: 0.03em;
}

.display,
.hero__title {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-display);
}

.nav,
.header__nav {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-ui);
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* font size */
.f-25{
  font-size:25px;
}
.f-22{
  font-size:22px;
}
.mb-50{
margin-bottom:80px;}
.commentlist{
  padding:0;
}
.no-border {
    border: 0;
    box-shadow: none; /* You may want to include this as bootstrap applies these styles too */
    background:transparent;
    padding:0;
}
.link-button{
  background:transparent;
}
.link-button-v2{
  background:var(--engoc-color-main1);
}

.text-price ul li:last-child{
  border-top:0;
}

.selector-wrapper{
  position: relative;
    margin-bottom: 15px;
}
.selector-wrapper:after{
  content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--engoc-color-main1);
    position: absolute;
    right: 20px;
    bottom: 23px;
    pointer-events: none;
}
.selector-wrapper label{
  font-size: 18px;
    font-weight: 500;
    color: var(--engoc-color-main1);
}
.single-option-selector{
  font-size: 14px;
    color: #a4a4a4;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 1px solid #f1f1f1;
    box-shadow: none;
    background-color: #f8f8f8;
    height: 54px;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    padding: 6px 12px;
}
.wrap-filter-box .pagination{
display:none;
}
.filter-content li input{
  display:none;
}
.form-addtocart{
  float:left;
    margin-right:5px;
    
}
/* .sidebar .widget{
  padding:0;
} */

.cart-list .list > li > *{
  vertical-align:top;
}
.cart-bottom .checkout{
  background:transparent;
}
.total span.money{
  float:right;
}
.form-check .btn{
  border-radius:0;
}
.contact-form label{
  font-weight:500;
}
.cosre-myaccount__header{
  max-width:560px;
    margin:0 auto 50px auto;
}


.spr-badge-caption{
  color: #999;
    font-size: 12px;
    margin-left: 10px;
}
.spr-badge .spr-badge-starrating .spr-icon {
    font-size: 80%;
    margin: 0 2px;
}

.single-product-detail.product-bundle .action{
  display:inline-block;
  float:left;
}
.button-ver2{
      display: inline-block;
    float: left;
}
@media (max-width: 480px) {
.button-ver2{
     
    float: none;
  margin-top: 30px;
} 
  .single-product-detail.product-bundle .action{
    margin-top:0;
    margin-bottom:30px;
  }
}
/* quickview */
.product-grid.product-list .product-item .product-info-ver2 .button-group .button.add-view{
/*  display:none; */
}
/* wishlist page  */
.cosre-page-title__info{
  font-size:48px;
}
.wishlist-table td{
  font-weight:500;
}

.product-stock-status{
  text-align:center;
  
}
table.table.cart-table.wishlist-table td:nth-child(3) p{
  margin-top:0;
}
.product-add-to-cart .btn{
  border-radius:0;
  
}
.btn-cosre{
  background:#fff;
  border-radius:0;
  border:1px solid var(--engoc-color-main1);
  
}
/* wishlist collection */
form#contact_form{
  display:inline-block;
    vertical-align: top;
}
.spr-button{
  background:#fff;
  border-radius:0;
  border:1px solid var(--engoc-color-main1);
  color:var(--engoc-color-main1);
  
}
.spr-button:hover{
  background:var(--engoc-color-main1);
    color:#fff;
}
.spr-form-label{
  font-weight:500;
}
@media(max-width:767px){
  .nav-filter.white{
    background:#000
  }
}

.spr-form-input-text, .spr-form-input-email, .spr-form-input-textarea{
  background: #f8f8f8;
    border: 1px solid #f1f1f1;
    height: 54px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
      padding: 6px 12px;
}
@media(min-width:1025px){
  .ribbon-price-h.ver2{
      width:210px;
  }
}
.ribbon-price-h .old{
  margin-right:5px;
}
.ribbon-price-h .old span{
  color: #a4a4a4;
    text-decoration: line-through;
    
}
@media(max-width:1024px){
.ribbon-mobile{
  top: 10px;
    width: 110px;
}
}
del{
  margin-right:5px;
}
.cosre-myaccount__header{
  font-weight:500;
}
.cosre-myaccount__header a{
  color:#eb5050;
}
@media(max-width:480px){
  .product-homebs .product-desc{
        padding-bottom: 20px;
      margin-bottom:20px;
  }
  
}
@media(max-width:767px){
  .wrapper-product-list{
      padding-top: 30px;
      padding-bottom: 30px;
    }
}
.content-img.text-right {
    float: right;
}
/* Empty cart  */
.empty-cart-title{
  font-size:16px;
    padding-top:25px;
}

/* REalise  */
.releases .product-tab-sw2{
  background: transparent;
}
/* Fix about brand */
@media(min-width:1025px){
  .about-brand .product-inner.v2:after {
      z-index:1;
  }
  .feature-product .product-inner:after {
      z-index:1;
  }
  .product-tab.v2 .product-inner:after{
    z-index:1;
  }
  .bestseller2 .product-inner:after{
    z-index:1;
  }
  .bestseller2.bg-gradient.bg-insinde .product-button-group{
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
  }
  
  .our-blog .owl-nav > div {
      top: 27%;
  }
  .bestseller2.bg-gradient .product-item:hover .pd-bd:after{
    z-index: 1;
  }
  .bestseller2 .product-item:hover .pd-bd:after{
    z-index: -1;
  }
  .about-brand .product-item:hover .pd-bd:after{
    z-index: -1;
  }
  .feature-product .product-item:hover .pd-bd:after{
    z-index: -1;
  }
  .product-tab.v2 .product-item:hover .pd-bd:after{
    z-index: -1;
  }
}
.mgr-5{
  margin-right:5px;
}
/* Button quantity  */
.e-quantity button{
  position: absolute;
    color: var(--engoc-color-main1);
    padding: 0;
    display: flex;
    border:0;
}
.e-quantity .btn:active{
  border:none;
    box-shadow:none;
}
.e-quantity .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus{
  outline:none;
    outline-offset: unset;
}
.e-quantity .btn:hover, .btn:focus, .btn.focus{
  color: #bfbfbf;
}
.e-quantity .quantity-right-plus{
  top: 13px;
    right: 10px;
}
.e-quantity .quantity-left-minus{
  top: 13px;
    left: 10px;
}
/* Cart note */
/* .cart-note__input{
  width:320px;
} */
/* product detail page price  */
.single-product-detail .single-product-info .product-price > span.f-24{font-size:24px}
  .single-product-detail .single-product-info .single-product-button-group .e-btn.btn-icon{margin-right:0;}
.single-product-tab .tab-pane:not(:first-child){
  position:relative;
}
.single-product-tab .tab-content > .tab-pane{
  display: none;
}
.single-product-tab  .tab-content > .tab-pane.active{
  display: block;
}
/* .single-product-tab  .tab-content > #desc.tab-pane.active{
      display: flex!important;
    justify-content: center;
  flex-wrap: wrap;
} */
#review #shopify-product-reviews{
     margin: 1em 0 5em 0;
}
/*Product collection   */
 .filter-brand li a.active:before{
  background-color: var(--engoc-color-main1); 
    border: none;
}
.filter-brand li a.active:after{
  background: unset; 
    opacity:1;
}
.e-checkout{
  line-height:54px;
}
.fr{
  float:right;
}
/* super deal dots */
.super-deal .owl-controls{
      position: relative;
      z-index: 100;
}
.super-deal .owl-theme .owl-nav{
  margin:0;
}
@media(min-width:1681px){
  .super-deal.v2 .owl-controls{
    bottom: 74px;
    left: 169px;
  }
}
@media (min-width: 1025px){
  .super-deal.v2 .owl-dots {
      bottom: 74px;
      left: 140px;
  }
}
.feature-inside .feature-block .feature-info h3{
  
    color:#fff;
  
}
.feature.v2 .feature-inside .feature-block .feature-info h3{
  color:var(--engoc-color-main1);
}
@media (max-width:1024px){
  .owl-cate .owl-dots{
    margin-top:15px;
  }
}
@media (max-width: 767px){
  .homepage-banner [class*="col-"]  {
      margin-bottom: 30px;
  }
}
.shop_table th, .shop_table td{
  border:0;
}
input.btn-addcart{
  padding:0;
}
.single-product-tab .tab-content ul, .single-product-tab .tab-content li ,.blog-post-desc li {
      list-style: unset;
}
.single-product-tab .tab-content ul, .single-product-tab .tab-content ol, .blog-post-desc ul ,.blog-post-desc ol { 
    display: block;
    list-style: disc outside none;
    margin: 1em 0;
    padding: 0 0 0 40px;
}
.single-product-tab .tab-content ol, .blog-post-desc ol { 
    list-style-type: decimal;
}
.tab-content #desc{
  margin:0 15px;
}
.tab-content #desc p{
  text-align:center !important;
}
@media(max-width:1024px){
  #review .entry-inside{
      padding:0 30px;
  }
}
.flash-deals .owl-theme .owl-nav.disabled+.owl-dots ,.section-cate .owl-theme .owl-nav.disabled+.owl-dots{
  margin-top:44px;
}
@media(max-width:767px){
  .ads{
    margin-bottom:30px;
  }
}
.pushmenu.menu-home5{
  
    -webkit-overflow-scrolling: touch;
}
@media(min-width:767px){
.pd-middle .pagination{
  flex: 1 1 40%;
  }

}

/* Header fixed */
.header-ontop{
  background: #fafafa none repeat scroll 0 0;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    visibility: hidden;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.header-ontop.fixed-ontop{
  transform: translateY(0);
    -webkit-transform: translateY(0);
    visibility: visible;
}
.header-ontop .cart{
  padding-bottom:0;
}
@media(max-width:480px){
  .header-ontop-mobile{
            
  }
  .header-ontop-mobile.fixed-ontop{
      transform: translateY(0);
      -webkit-transform: translateY(0);
      visibility: visible;
    
    background: #fafafa none repeat scroll 0 0;
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
        position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  z-index: 999;
        transition: all 0.5s ease-out 0s;
        -webkit-transition: all 0.5s ease-out 0s;
  }
}
@media(max-width:1024px){
  .sm-mg-top-30{
      margin-top:30px;
  }
}
/* Disable pin on mobile */
@media (max-width: 767px){
  .lookbitem_price2 ,.lookbitem_price , .lookbitem_btn{
    display:none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SWAPOT BUTTON SYSTEM
   ─────────────────────────────────────────────────────────────────────────
   Three tiers — all share 8px radius, Lota Grotesque, 13px/700/0.06em:
     Primary   → #3a9d57 fill  · #E8F7ED text  · hover #2d7a43
     Secondary → transparent   · #3a9d57 border + text · hover fills green
     Neutral   → hidden or gray (destructive / non-conversion actions)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   SWAPOT BUTTON SYSTEM
   Spec: 50px · 0 32px · 13px / 700 / 0.06em · uppercase · 8px radius
   All !important — beats engo-customize.scss.liquid which loads after this file
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Shared dimensions ───────────────────────────────────────────────────── */
.ciloe-btn,
.btn-ciloe,
.btn-ciloe-2,
.btn-section,
.shop-button-collection,
.shs-btn,
.shs-btn--primary,
.shs-btn--secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 50px !important;
  padding: 0 32px !important;
  font-family: var(--font-primary, 'Lota Grotesque', Arial, sans-serif) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 8px !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Standalone link buttons shrink to content — don't stretch full row */
.ciloe-btn,
.btn-ciloe {
  width: auto !important;
}

/* ── Primary: solid green fill ───────────────────────────────────────────── */
.ciloe-btn,
.btn-ciloe,
.btn-section,
.shop-button-collection,
.shs-btn--primary,
.shopping-cart .table-cart-bottom .btn-update {
  background: #3a9d57 !important;
  color: #E8F7ED !important;
}

.ciloe-btn:hover,
.btn-ciloe:hover,
.btn-section:hover,
.shop-button-collection:hover,
.shs-btn--primary:hover,
.shopping-cart .table-cart-bottom .btn-update:hover {
  background: #2d7a43 !important;
  color: #E8F7ED !important;
}

/* ── Secondary: dark fill, hover turns green ─────────────────────────────── */
.btn-ciloe-2,
.shs-btn--secondary {
  background: #1A1A1A !important;
  color: #E8F7ED !important;
}

.btn-ciloe-2:hover,
.shs-btn--secondary:hover {
  background: #3a9d57 !important;
  color: #E8F7ED !important;
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* Cart drawer button styles live in snippets/ciloe-push-cart.liquid
   (inline <style>) so they are immune to external stylesheet load order. */

/* ── Cart page "Proceed to Checkout" ─────────────────────────────────────── */
.btn-back.btn-checkout {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #3a9d57 !important;
  color: #E8F7ED !important;
  border: none !important;
  border-radius: 8px !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 50px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-back.btn-checkout:hover {
  background: #2d7a43 !important;
  color: #E8F7ED !important;
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* ── PK Cart Add-on Lines (nested child item style) ─────────────────────── */

/* Let add-on lines wrap below the product flex row in the cart drawer */
.cart-list .list .item-cart {
  flex-wrap: wrap;
}

/* Full-width second row inside the flex <li> — starts flush with image edge */
.pk-addon-lines {
  flex: 0 0 100%;
  margin-top: 8px;
  padding-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Cart-page variant lives in its own full-width <tr> below the product row */
.pk-addon-row {
  border-top: none !important;
}
.pk-addon-cell {
  padding: 0 0 14px 44px !important;
  border-top: none !important;
}
.pk-addon-lines--page {
  padding-left: 0;
  margin-top: 0;
  max-width: 560px;
}

.pk-addon-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 10px 7px 9px;
  border-left: 2.5px solid #3a9d57;
  background: rgba(0, 0, 0, 0.028);
  border-radius: 0 5px 5px 0;
  font-family: inherit;
}

.pk-addon-line__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #3a9d57;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pk-addon-line__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.pk-addon-line__icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pk-addon-line__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pk-addon-line__name {
  font-size: 12px;
  font-weight: 600;
  color: #2a2a2a;
}

.pk-addon-line__desc {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  line-height: 1.35;
}

.pk-addon-line__tag {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #aaa;
}

/* ── PDP Action Row (Add to Cart + Buy it now) ──────────────────────────── */
.pk-action-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
}

.pk-action-row > .e-btn.cart-qtt {
  flex: 1 1 50%;
  min-width: 0;
  margin: 0;
}

/* PDP Add To Cart — green fill, 8px radius, overrides style.css.liquid */
.single-product-detail .btn-add-cart,
.cart-qtt .btn-add-cart,
.btn-add-cart {
  background: #3a9d57 !important;
  border-color: #3a9d57 !important;
  color: #E8F7ED !important;
  border-radius: 8px !important;
}
.single-product-detail .btn-add-cart:hover,
.cart-qtt .btn-add-cart:hover,
.btn-add-cart:hover {
  background: #2d7a43 !important;
  border-color: #2d7a43 !important;
  color: #E8F7ED !important;
}

/* Product card Add To Cart buttons — 8px radius */
.button.add-to-cart,
.enj-add-to-cart-btn {
  border-radius: 8px !important;
}
.button.add-to-cart:hover,
.enj-add-to-cart-btn:hover {
  border-radius: 8px !important;
}

/* Make the Add to Cart button fill its flex cell */
.pk-action-row .btn-add-cart {
  width: 100%;
  height: 100%;
  min-height: 44px;
  background: #1A1A1A !important;
  color: #E8F7ED !important;
  border-radius: 8px !important;
}

.pk-action-row .btn-add-cart:hover {
  background: #3a9d57 !important;
  border-color: #3a9d57 !important;
  color: #E8F7ED !important;
}

.pk-action-row > .pk-bin-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 1 50%;
  min-width: 0;
}

/* Agree-terms label inside the BIN wrap */
.pk-bin-wrap .product-cart__condition {
  font-size: 11px;
  margin: 0 0 5px;
  line-height: 1.4;
}

/* Stretch the Shopify payment button container to fill the wrap height */
.pk-bin-wrap .shopify-payment-button {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* ── Swapot brand colours on the Buy it now button ───────────────────────
   Targets both the plain "Buy it now" (--unbranded) and any other
   dynamic payment button Shopify may render in this slot.
   --payment-button-border-radius overrides Shopify's own CSS variable.  */
.pk-bin-wrap .shopify-payment-button__button,
.shopify-payment-button__button {
  --payment-button-border-radius: 8px;
  background: #3a9d57 !important;
  background-image: none !important;
  color: #E8F7ED !important;
  border-radius: 8px !important;
  flex: 1 1 auto;
  width: 100% !important;
  font-family: var(--font-primary) !important;
  font-weight: var(--font-weight-ui) !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s ease !important;
}

.pk-bin-wrap .shopify-payment-button__button:hover,
.pk-bin-wrap .shopify-payment-button__button:focus,
.shopify-payment-button__button:hover,
.shopify-payment-button__button:focus {
  background: #2d7a43 !important;
  background-image: none !important;
  opacity: 1 !important;
}

@media (max-width: 600px) {
  .pk-action-row {
    flex-direction: column;
    gap: 6px;
  }

  .pk-action-row > .pk-bin-wrap {
    width: 100%;
  }
}

/* ── PK Add-on Services ─────────────────────────────────────────────────── */
.pk-addons {
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
  padding-top: 16px;
  border-top: 1px solid #ebebeb;
  width: 100%;
  margin-top: 16px;
}

/* Header row: brand + optional badge */
.pk-addons__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 5px;
}

.pk-addons__brand {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.pk-addons__brand-logo {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Default K mark shown when no logo image is uploaded */
.pk-addons__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pk-brand-color, #e84393);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.pk-addons__section-title {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 1px;
}

.pk-addons__badge {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  color: #777;
  background: #f2f2f2;
  border: 1px solid #e5e5e5;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Subtitle below header — separator line underneath */
.pk-addons__subtitle {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: var(--font-weight-body);
  color: #999;
  margin: 0;
  line-height: 1.4;
}

/* Add-on row card */
.pk-addons__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 12px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  -webkit-user-select: none;
  user-select: none;
}

.pk-addons__row:hover {
  background: #fafafa;
  border-color: #d0d0d0;
}

.pk-addons__row:has(.pk-addons__input:checked) {
  border-color: var(--pk-accent, var(--engoc-primary-color, #3a9d57));
  background: #fff;
}

/* Selected: icon bubble turns theme green */
.pk-addons__row:has(.pk-addons__input:checked) .pk-addons__icon {
  background: var(--pk-accent, var(--engoc-primary-color, #3a9d57));
}

/* Icon bubble — one shared background for every service (arbitrary count,
   not just two fixed slots), overridden to the accent green on selection
   by the :has() rule above. */
.pk-addons__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  background: #1a1a1a;
  transition: background 0.2s ease;
}

.pk-addons__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pk-addons__icon svg {
  width: 26px;
  height: 26px;
}

/* Text block */
.pk-addons__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.pk-addons__name {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.pk-addons__desc {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: var(--font-weight-body);
  color: #999;
  line-height: 1.4;
}

/* Hidden native checkbox */
.pk-addons__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkbox */
.pk-addons__control {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pk-addons__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid #d0d0d0;
  border-radius: 5px;
  background: #fff;
  transition: background 0.15s ease, border-color 0.15s ease, border-radius 0.15s ease;
  flex-shrink: 0;
}

/* Checked: filled circle */
.pk-addons__input:checked + .pk-addons__box {
  background: var(--pk-accent, var(--engoc-color-main1, #00b894));
  border-color: var(--pk-accent, var(--engoc-color-main1, #00b894));
  border-radius: 50%;
}

/* Checkmark via CSS */
.pk-addons__input:checked + .pk-addons__box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

@media (max-width: 767px) {
  .pk-addons__row {
    padding: 12px 14px;
    gap: 10px;
  }

  .pk-addons__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .pk-addons__name {
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL BORDER-RADIUS CLEANUP — 8px across all CTA/action buttons
   Overrides leftover 25px–999px values in style.css.liquid, style-main.css,
   engo-customize.scss.liquid, and section inline styles.
   ─────────────────────────────────────────────────────────────────────────── */

/* About / banner hero buttons */
.aboutus .text_banner .button-about,
.text_banner .button-about {
  border-radius: 8px !important;
}

/* Instagram section follow button */
.button-ins a {
  border-radius: 8px !important;
}

/* PDP promo add-to-cart */
.promo_info_single_product form button.btn-default {
  border-radius: 8px !important;
}

/* Collection / brand "Show more" buttons */
.e-heading .btn-show,
.ecome-heading .btn-show,
.about-brand-info .btn-brand {
  border-radius: 8px !important;
}

/* Filter panel buttons */
.filter-inside button {
  border-radius: 8px !important;
}

/* Cart mini/drawer button */
.cart-btn {
  border-radius: 8px !important;
}

/* Q&A button */
.btn-qa {
  border-radius: 8px !important;
}

/* Blog sidebar related-posts button */
.blog-widget.blog-widget-related button {
  border-radius: 8px !important;
}

/* Product video / 360° view buttons */
.btn-video a,
.btn-360 a {
  border-radius: 8px !important;
}

/* Generic .btn-back (e.g. breadcrumb back links styled as buttons) */
.btn-back:not(.btn-checkout) {
  border-radius: 8px !important;
}

/* — style-main.css — */
/*------------------------------------------------------------------

[Table of contents]

1. Body
2. Header / #header
3. Navigation / #navbar
4. Content / #content
5. Left column / #leftcolumn
6. Right column / #rightcolumn
7. Sidebar / #sidebar
8. RSS / #rss
9. Search / #search
10. Boxes / .box
11. Sideblog / #sideblog
12. Advertisements / .ads
13. Footer / #footer

-------------------------------------------------------------------*/
* {
  outline: 0 !important;
  box-sizing: border-box; }

.nav > li > a:focus {
  background: transparent; }

a:hover {
  text-decoration: none !important; }

@media all and (min-width: 320px) {
  .col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
  .col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
  .col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
    clear: none; }

  .col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
    clear: left; } }
@media all and (min-width: 768px) {
  .col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
  .col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
  .col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
    clear: none; }

  .col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1) {
    clear: left; } }
@media all and (min-width: 992px) {
  .col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
  .col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1),
  .col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
    clear: none; }

  .col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1) {
    clear: left; } }
@media (min-width: 1200px) {
  .col-md-1:nth-child(12n+1), .col-md-2:nth-child(6n+1), .col-md-3:nth-child(4n+1), .col-md-4:nth-child(3n+1), .col-md-6:nth-child(2n+1),
  .col-sm-1:nth-child(12n+1), .col-sm-2:nth-child(6n+1), .col-sm-3:nth-child(4n+1), .col-sm-4:nth-child(3n+1), .col-sm-6:nth-child(2n+1),
  .col-xs-1:nth-child(12n+1), .col-xs-2:nth-child(6n+1), .col-xs-3:nth-child(4n+1), .col-xs-4:nth-child(3n+1), .col-xs-6:nth-child(2n+1) {
    clear: none; }

  .col-lg-1:nth-child(12n+1), .col-lg-2:nth-child(6n+1), .col-lg-3:nth-child(4n+1), .col-lg-4:nth-child(3n+1), .col-lg-6:nth-child(2n+1) {
    clear: left; } }
.margin_auto{
  margin:auto;
}
.margin_10 {
  margin: 10px; }

.margin_20 {
  margin: 20px; }

.margin_30 {
  margin: 30px; }

.margin_40 {
  margin: 40px; }

.margin_50 {
  margin: 50px; }

.margin_60 {
  margin: 60px; }

.margin_70 {
  margin: 70px; }

.margin_80 {
  margin: 80px; }

.margin_90 {
  margin: 90px; }

.margin_100 {
  margin: 100px; }

.margin_top_10 {
  margin-top: 10px; }

.margin_top_20 {
  margin-top: 20px; }

.margin_top_30 {
  margin-top: 30px; }

.margin_top_40 {
  margin-top: 40px; }

.margin_top_50 {
  margin-top: 50px; }

.margin_top_60 {
  margin-top: 60px; }

.margin_top_70 {
  margin-top: 70px; }

.margin_top_80 {
  margin-top: 80px; }

.margin_top_90 {
  margin-top: 90px; }

.margin_top_100 {
  margin-top: 100px; }

.margin_top_120 {
  margin-top: 120px; }

.margin_top_150 {
  margin-top: 150px; }

.margin_bottom_10 {
  margin-bottom: 10px; }

.margin_bottom_20 {
  margin-bottom: 20px; }

.margin_bottom_30 {
  margin-bottom: 30px; }

.margin_bottom_40 {
  margin-bottom: 40px; }

.margin_bottom_50 {
  margin-bottom: 50px; }

.margin_bottom_60 {
  margin-bottom: 60px; }

.margin_bottom_70 {
  margin-bottom: 70px; }

.margin_bottom_80 {
  margin-bottom: 80px; }

.margin_bottom_90 {
  margin-bottom: 90px; }

.margin_bottom_100 {
  margin-bottom: 100px; }

.margin_bottom_110 {
  margin-bottom: 110px; }

.margin_bottom_120 {
  margin-bottom: 120px; }

.margin_bottom_130 {
  margin-bottom: 130px; }

.margin_bottom_140 {
  margin-bottom: 140px; }

.margin_bottom_150 {
  margin-bottom: 150px; }

.margin_bottom_200 {
  margin-bottom: 200px; }

.margin_right_10 {
  margin-right: 10px; }

.margin_right_15 {
  margin-right: 15px; }

.margin_right_20 {
  margin-right: 20px; }

.margin_right_30 {
  margin-right: 30px; }

.margin_right_40 {
  margin-right: 40px; }

.margin_right_50 {
  margin-right: 50px; }

.space_10 {
  padding: 10px; }

.space_20 {
  padding: 20px; }

.space_30 {
  padding: 30px; }

.space_40 {
  padding: 40px; }

.space_50 {
  padding: 50px; }

.space_60 {
  padding: 60px; }

.space_70 {
  padding: 70px; }

.space_80 {
  padding: 80px; }

.space_90 {
  padding: 90px; }

.space_100 {
  padding: 100px; }

.space_left_10 {
  padding-left: 10px; }

.space_left_20 {
  padding-left: 20px; }

.space_left_30 {
  padding-left: 30px; }

.space_left_40 {
  padding-left: 40px; }

.space_left_50 {
  padding-left: 50px; }

.space_right_10 {
  padding-right: 10px; }

.space_right_20 {
  padding-right: 20px; }

.space_right_30 {
  padding-right: 30px; }

.space_right_40 {
  padding-right: 40px; }

.space_right_50 {
  padding-right: 50px; }

.space_bot_10 {
  padding-bottom: 10px; }

.space_bot_15 {
  padding-bottom: 15px; }

.space_bot_20 {
  padding-bottom: 20px; }

.space_bot_30 {
  padding-bottom: 30px; }

.space_bot_40 {
  padding-bottom: 40px; }

.space_bot_50 {
  padding-bottom: 50px; }

.space_bot_60 {
  padding-bottom: 60px; }

.space_bot_70 {
  padding-bottom: 70px; }

.space_bot_80 {
  padding-bottom: 80px; }

.space_bot_90 {
  padding-bottom: 90px; }

.space_bot_100 {
  padding-bottom: 100px; }

.space_bot_120 {
  padding-bottom: 120px; }

.space_bot_150 {
  padding-bottom: 150px; }

.space_top_10 {
  padding-top: 10px; }

.space_top_15 {
  padding-top: 15px; }

.space_top_20 {
  padding-top: 20px; }

.space_top_30 {
  padding-top: 30px; }

.space_top_40 {
  padding-top: 40px; }

.space_top_50 {
  padding-top: 50px; }

.space_top_60 {
  padding-top: 60px; }

.space_top_70 {
  padding-top: 70px; }

.space_top_80 {
  padding-top: 80px; }

.space_top_90 {
  padding-top: 90px; }

.space_top_100 {
  padding-top: 100px; }

.space_top_120 {
  padding-top: 120px; }

.space_top_130 {
  padding-top: 130px; }

.space_top_140 {
  padding-top: 140px; }


.container_10 {
  padding: 0 10px; }

.container_15 {
  padding: 0 15px; }

.container_20 {
  padding: 0 20px; }

.container_30 {
  padding: 0 30px; }
.container_35 {
  padding: 0 35px; }



.container_40 {
  padding: 0 40px; }

.container_50 {
  padding: 0 50px; }

.container_60 {
  padding: 0 60px; }

.container_70 {
  padding: 0 70px; }

.container_80 {
  padding: 0 80px; }

.container_90 {
  padding: 0 90px; }

.container_100 {
  padding: 0 100px; }

.container_150 {
  padding: 0 150px; }

.container_180 {
  padding: 0 180px; }

.container_250 {
  padding: 0 250px; }

.space_top_bot_10 {
  padding-top: 10px;
  padding-bottom: 10px; }

.space_top_bot_20 {
  padding-top: 20px;
  padding-bottom: 20px; }

.space_top_bot_30 {
  padding-top: 30px;
  padding-bottom: 30px; }

.space_top_bot_40 {
  padding-top: 40px;
  padding-bottom: 40px; }

.space_top_bot_50 {
  padding-top: 50px;
  padding-bottom: 50px; }

.space_top_bot_55 {
  padding-top: 55px;
  padding-bottom: 55px; }

.space_top_bot_60 {
  padding-top: 60px;
  padding-bottom: 60px; }

.space_top_bot_70 {
  padding-top: 70px;
  padding-bottom: 70px; }

.space_top_bot_80 {
  padding-top: 80px;
  padding-bottom: 80px; }

.space_top_bot_90 {
  padding-top: 90px;
  padding-bottom: 90px; }

.space_top_bot_100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.space_top_bot_140 {
  padding-top: 140px;
  padding-bottom: 140px; }

.space_top_bot_150 {
  padding-top: 150px;
  padding-bottom: 150px; }

.space_top_bot_180 {
  padding-top: 180px;
  padding-bottom: 180px; }
@media (max-width:767px){
  .container_35 {
    padding: 0 15px; 
  }
  .container_35.trending_classic {
    padding: 0 25px; 
  }
  .container_40 {
    padding: 0 10px; }
  .container_80 {
    padding: 0 20px; }
}
.clear-none {
  clear: none !important; }

.clear-space {
  padding: 0 !important; }

.clear-space-left {
  padding-left: 0; }

.clear-space-right {
  padding-right: 0; }

.red {
  color: red; }

.left {
  float: left; }

.right {
  float: right; }

.flex {
  display: flex; }

.flex-center {
  display: flex;
  justify-content: center;
}

.inline-block {
  display: inline-block; }

.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.row.flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.fixed {
  position: fixed; }

.delay02 {
  transition: all .2s ease; }

.delay03 {
  transition: all .3s ease; }

.delay04 {
  transition: all .4s ease; }

.delay05 {
  transition: all .5s ease; }

.delay1 {
  transition: all 1s ease; }

.delay1_5 {
  transition: all 1.5s ease; }

.delay2 {
  transition: all 2s ease; }

.uppercase {
  text-transform: uppercase; }

.capital {
  text-transform: capitalize; }

.full-width {
  width: 100%; }

.column-10 {
  width: 10%; }

.column-3 {
  width: 33.33333%; }

.column-4 {
  width: 25%; }

.column-6 {
  width: 16.66667%; }

.column-20 {
  width: 20%; }

.column-30 {
  width: 30%; }

.column-40 {
  width: 40%; }

.column-50 {
  width: 50%; }

.column-60 {
  width: 60%; }

.column-65 {
  width: 65%; }

.column-70 {
  width: 70%; }

.column-80 {
  width: 80%; }

.column-90 {
  width: 90%; }

.navbar-nav .dropdown-menu {
  min-width:200px;
}
.topbar-right .element .dropdown-menu{
  min-width:170px;
}
.topbar-right .element.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.topbar-right .element .dropdown-menu > li > a {
  font-size:14px;
}
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  transform: translateY(15px);
  transition: all .3s ease; 
  border: 0;
  border-radius:0;
  min-width: 285px;
  padding-top: 15px;
  padding-bottom: 25px;
}
.nav .dropdown-menu li a{
  font-size: 14px !important;
  line-height: 38px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(3px); }

.mega-menu-main {
  padding-bottom: 50px;
  min-width: 550px;
  box-shadow: 0px 5px 11.88px 0.12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 11.88px 0.12px rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 0; }

.menu-main li {
  list-style-type: none; }

.menu-main .lv1 li a {
  font-size: 16px; }

.btn-default {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: unset;
  background: #fff; }

.btn-default:hover {
  background: #fff; }

.btn-default:focus {
  background: #fff; }

.btn-default:focus:active {
  background: #fff; }

.btn-default:active {
  background: #fff;
  box-shadow: unset; }

.btn-default.active {
  background: #fff;
  border-color: #fff;
  box-shadow: unset; }

.btn-default.active:hover {
  background: #fff; }

.btn-default.active:focus {
  background: #fff !important; }

a:focus {
  text-decoration: none; }

.form-control:focus {
  border-color: #ddd;
  box-shadow: unset; }

.link-default {
  color: black;
  transition: all .3s ease; }
.link-default:hover {
  color: #ee9051; }

.border-bot {
  border-bottom: 1px solid #f3f3f3; }

.border-top {
  border-top: 1px solid #f3f3f3; }

.border-left {
  border-left: 1px solid #f3f3f3; }

.border-right {
  border-right: 1px solid #f3f3f3; }

.table > tbody > tr > td {
  vertical-align: middle; }

.btn-nixx {
  padding: 18px 88px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: black;
  transition: all .3s ease;
  border: 0;
  border-radius: 0; }
.btn-nixx:hover {
  background: #ee9051; }

.pushmenu.menu-home5 {
  width: 362px;
  height: 100%;
  top: 0;
  z-index: 1000;
  position: fixed;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.pushmenu li {
  list-style-type: none; }

@media (max-width: 361px) {
  .pushmenu.menu-home5 {
    width: 300px; } }
.nav-home5 > li {
  position: relative;
  display: block; }

.nav-home5 > li > a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #a4a4a4;
  position: relative;
  -webkit-transition: none;
  transition: none;
  line-height: 26px;
  padding: 12px 30px;
  padding-right: 0;
  display: block;
}

.nav-home5 .menu-level1 {
  margin-top: 0; }

.nav-home5 .menu-level1 .level2 {
  padding-left: 5px;
  padding-bottom: 0px;
  list-style-type: none; }

.nav-home5 .menu-level1 .level2 > a {
  text-transform: capitalize;
  color: #a4a4a4;
  position: relative; }

.nav-home5 .menu-level1 .level2 > a:focus {
  color: #fff; }

.nav-home5 .menu-level1 .level2 > a:focus:before {
  background: #fff; }

.nav-home5 .menu-level1 .level2 > a span.line {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  left: -18px;
  top: 25px;
  background: #a4a4a4; }

.nav-home5 .menu-level1 .level1 > .level2 > a {
  color: #fff; }

.nav-home5 .menu-level1 .level1 > .level2 > a:before {
  content: none; }

.nav-home5 .menu-level-2 {
  margin: 15px 0; }

.nav-home5 .menu-level-2 .level3 {
  padding-left: 15px; }

.nav-home5 .menu-level-2 .level3 > a {
  line-height: 2;
  text-transform: capitalize;
  color: #a4a4a4;
  position: relative; }

.nav-home5 .menu-level-2 .level3 > a:focus {
  color: #fff; }

.nav-home5 .menu-level-2 .level3 > a:focus:before {
  background: #fff; }

.nav-home5 .menu-level-2 .level3 > a:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  left: -18px;
  top: 20px;
  background: #a4a4a4; }

.pushmenu.menu-home5 {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.menu-home5 .searchform {
  position: relative;
  padding: 0 28px 30px 28px;
  border-bottom: 2px solid rgba(92, 92, 92, 0.43); }

.menu-home5 .searchform input[type=text] {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border: 1px solid rgba(208, 208, 208, 0.09);
  padding: 14px 50px 10px 18px;
  font-size: 14px;
  color: #fff;
  width: 100%; }

.menu-home5 .searchform button {
  position: absolute;
  top: 18px;
  right: 28px;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 50px;
  height: 50px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center; }

.close-left {
  float: right;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 10px; }

.menu-home5 {
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform-origin: top left;
  transform-origin: top left; }

.menu-home5.pushmenu-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

@media (max-width: 320px) {
  .menu-home5.pushmenu-open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
/* .icon-sub-menu {
position: absolute;
top: 0;
right: 0;
height: 49px;
width: 49px;
border-left: 1px solid rgba(92, 92, 92, 0.23);
cursor: pointer;
padding-right: 18px;
background-color: transparent; }

.icon-sub-menu.up-icon:before {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-sand-transform: rotate(-45deg); }

.icon-sub-menu.up-icon:after {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-sand-transform: rotate(45deg); }

.icon-sub-menu:before {
transform: translateX(3px) rotate(-50deg);
-webkit-transform: translateX(3px) rotate(-50deg);
-moz-transform: translateX(3px) rotate(-50deg);
-o-transform: translateX(3px) rotate(-50deg);
-ms-transform: translateX(3px) rotate(-50deg);
-sand-transform: translateX(3px) rotate(-50deg); }

.icon-sub-menu:after {
transform: translateX(-4px) rotate(50deg);
-webkit-transform: translateX(-4px) rotate(50deg);
-moz-transform: translateX(-4px) rotate(50deg);
-o-transform: translateX(-4px) rotate(50deg);
-ms-transform: translateX(-4px) rotate(50deg);
-sand-transform: translateX(-4px) rotate(50deg); }

.icon-sub-menu:before, .icon-sub-menu:after {
content: " ";
position: absolute;
right: 17px;
top: 50%;
margin-top: -1px;
width: 12px;
height: 2px;
display: inline-block;
background-color: #fff;
-webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
-webkit-transition: background-color .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
transition: background-color .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out; }
*/
/* .menu-level1 {
display: none; }

.menu-level1.open {
display: block; } */

.input-number-group {
  display: flex; }
.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
  appearance: none; }
.input-number-group .input-group-button {
  line-height: calc(80px/2-10px); }
.input-number-group .input-number {
  width: 40px;
  text-align: center;
  outline: none;
  display: block;
  margin: 0; }
.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
  user-select: none; }
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
  display: inline-block;
  width: 30px;
  background: #fff;
  color: #909090;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  font-weight: 400; }
.input-number-group .input-number-decrement {
  margin-right: 0.3rem; }
.input-number-group .input-number-increment {
  margin-left: 0.3rem; }

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none; }

.right-to-left {
  position: fixed;
  left: 25px;
  top: 25%;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  overflow: hidden; }
.right-to-left i {
  font-size: 26px;
  margin-right: 15px;
  transition: all .3s ease; }
.right-to-left .text {
  transition: width .3s ease;
  display: inline-block;
  width: 0;
  overflow: hidden; }
.right-to-left .text span {
  position: relative;
  top: 2px;
  font-size: 16px;
  white-space: nowrap;
  transition: width .3s ease; }
.right-to-left .text span.disable-active {
  display: none; }
.right-to-left .text:hover span {
  color: #ee9051; }
.right-to-left:hover {
  overflow: unset; }
.right-to-left:hover i {
  color: #ee9051; }
.right-to-left:hover .text {
  width: 140px; }

/* @media (max-width: 567px) {
.col-xs-6 {
width: 100%; } } */
li .link-menu {
  color: #323232; }
li .link-menu.white {
  color: #fff; }
li:hover .link-menu {
  color: #ee9051; }

.link-menu {
  color: #323232; }
.link-menu.white {
  color: #fff; }
.link-menu.white .st0 {
  stroke: #fff; }
.link-menu:hover i {
  color: #ee9051; }

.line {
  content: "";
  width: 50px;
  border-bottom: 1px solid var(--engoc-primary-color);
    bottom: 0;
    left: 0; }

.active .line {
  right: 0;
  left: 0; }

.title-hover:hover {
  color: #ee9051 !important; }

.hover-zoom-out {
  overflow: hidden;
  transition: all .5s ease; }
.hover-zoom-out:hover {
  transform: scale(1.05); }

.over-hidden {
  overflow: hidden; }

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index:30;
  background: rgba(29, 29, 31, 0.6);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease; }
.overlay.active {
  opacity: 1;
  visibility: visible; }

.overlay-mini {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all .3s ease;
  transform: scale(0);
  top: 0; }

.gotop {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 100px;
  z-index: 20; }

.menu-fixed {
  position: fixed;
  top: 0;
  width: 100% !important;
  box-shadow: 0px 5px 11.88px 0.12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 11.88px 0.12px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  z-index: 100; }
.menu-fixed.BG-black {
  background: rgba(0, 0, 0, 0.7); }

.form-search {
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: #fff;
  padding: 10% 0 0 0; }
.form-search h3 {
  font-size: 50px;
  padding-bottom: 55px;
  text-transform: capitalize;
  line-height: 60px; }
.form-search i {
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 50px;
  color: #333;
  transition: all .3s ease; }
.form-search i:hover {
  transform: rotate(90deg); }
.form-search form {
  justify-content: center;
  display: flex; }
.form-search form input {
  font-weight: 300;
  font-size: 40px;
  color:var(--engoc-color-main1);
    height: 90px;
    width: 60%;
    border-radius: 0;
    border: 0;
    outline: 0;
    box-shadow: unset; }
.form-search form input::-webkit-input-placeholder{
  color:var(--engoc-color-main1);
    }
.form-search form input::-moz-placeholder{
  color:var(--engoc-color-main1);
    }
.form-search form button {
  margin-left: 15px;
  border-radius: 0;
  border: 0;
  font-size: 18px;
  background: var(--engoc-color-main1);
    color: #fff;
    padding: 5px 50px;
    text-transform: uppercase;
    transition: all .3s ease; }
.form-search form button:hover {
  background: var(--engoc-primary-color); }

.form-cart {
  position: fixed;
  overflow: hidden;
  right: -470px;
  height: 100%;
  width: 470px;
  top: 0;
  z-index: 100;
  background: #fff; }
.form-cart i {
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #333;
  transition: all .3s ease; }
.form-cart i:hover {
  transform: rotate(90deg); }
.form-cart h3 {
  font-size: 36px;
  text-align: left;
  padding-left: 30px;
  padding-top: 26px; }
.form-cart .empty-cart {
  padding-top: 50%; }
.form-cart .empty-cart p {
  font-size: 22px;
  text-align: center;
  padding-bottom: 20px; }
.form-cart .empty-cart a {
  width: 187px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  background: #ee9051;
  color: #fff;
  font-size: 18px;
  margin-left: 30%; }
.form-cart .empty-cart a:hover {
  background: #f47d2e; }

@media (max-width: 480px) {
  .form-cart {
    width: 300px; }
  .form-cart .empty-cart a {
    margin-left: 20%; } }
.st0 {
  fill: none;
  stroke: var(--engoc-color-main1);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-miterlimit: 10; }

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.breadcrumb {
  background: #fff; }

.breadcrumb > li + li:before {
  color: #999999;
  padding: 0 15px; }

@media (max-width: 567px) {
  .breadcrumb > li + li:before {
    padding: 0 5px; } }
/*-----accordion----*/
.accordion {
  color: black;
  cursor: pointer;
  padding: 0 0 15px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  background: #fff; }
.accordion.active:after {
  content: "\2212"; }

.accordion:after {
  content: '\002B';
  color: black;
  font-weight: bold;
  float: right;
}

.panel {
  margin: 0;
  padding: 0 40px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  box-shadow: unset; }

/*----end-----*/
.open-sidebar {
  display: none;
  top: 50%;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  transition: all .3s ease; }
.open-sidebar i {
  transition: all .3s ease;
  color: #ee9051;
  display: inline-block;
  line-height: 40px; }

.open-sidebar-left {
  display: none;
  top: 50%;
  left: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  transition: all .3s ease; }
.open-sidebar-left i {
  transition: all .3s ease;
  color: #ee9051;
  display: inline-block;
  line-height: 40px; }

@media (max-width: 1024px) {
  .open-sidebar {
    display: inline-block;
    z-index: 2; }

  .open-sidebar-left {
    display: inline-block;
    z-index: 2; }

  .sidebar {
    opacity: 0;
    transition: all .3s ease;
    width: 300px;
    position: fixed;
    overflow: auto;
    top: 0;
    right: -300px;
    background: #fff;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    height: 100% !important;
    z-index: 2; }
  .sidebar ul {
    padding-left: 0; }

  .sidebar-left {
    opacity: 0;
    transition: all .3s ease;
    width: 300px;
    position: fixed;
    overflow: auto;
    top: 0;
    left: -300px;
    background: #fff;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    height: 100% !important;
    z-index: 2; }
  .sidebar-left ul {
    padding-left: 0; } }
/*--------------------------------ui----------------------------*/
.ui-slider .ui-slider-handle {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: none;
  background-color: #ee9051;
  border: none;
  outline: none;
  top: -7px; }

.ui-slider-range {
  background: none;
  background-color: #ee9051;
  border: none; }

#slider-3 {
  border: none;
  height: 6px;
  border-radius: 0;
  background: #e1e1e1; }

.range-p input {
  border: 0;
  outline: 0;
  color: #333; }

/*end*/
/*------product grid--------*/
.product .btn-product-list {
  display: none; }
.product .info-product .des-product {
  display: none; }

.product-list {
  transition: all .35s ease;
  width: 100% !important; }
.product-list .btn-product-list {
  display: inline-flex; }
.product-list .btn-product-list form button {
  color: #fff;
  background: black;
  font-size: 16px;
  line-height: 50px;
  padding: 0 30px;
  transition: all .3s ease; }
.product-list .btn-product-list form button:hover {
  background: #ee9051; }
.product-list .btn-product-list a {
  display: inline-block;
  line-height: 46px;
  width: 55px;
  color: black;
  background: #fff;
  margin-left: 15px;
  text-align: center;
  border: 1px solid #ddd;
  padding-top: 3px; }
.product-list .btn-product-list a i {
  font-size: 18px;
  transition: all .3s ease; }
.product-list .btn-product-list a:hover i {
  color: #ee9051; }
.product-list .img-product {
  float: left;
  width: 30%; }
.product-list .img-product .product-icon {
  display: none !important; }
.product-list .product-info {
  float: left;
  width: 70%;
  padding-left: 30px; }
.product-list .product-info .info-product {
  text-align: left; }
.product-list .product-info .info-product .title-product {
  margin-top: 0;
  padding-top: 0;
  font-size: 30px; }
.product-list .product-info .info-product .des-product {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 50px;
  width: 80%;
  font-size: 18px; }

@media (max-width: 567px) {
  .product-list .img-product {
    float: left;
    width: 100%; }
  .product-list .product-info {
    width: 100%;
    padding-left: 15px; } }
/*end*/
/*select custom*/
/*custom select*/
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px; }

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 150px;
  height: 36px;
  margin-left: 10px; }

.select:nth-child(2) {
  width: 150px;
  height: 36px;
  margin-left: 0; }

.select-styled {
  position: absolute;
  top: 15px;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  text-align: left;
  transition: all 0.2s ease-in;
  font-family: "FuturaPT Book";
  font-size: 18px; }
.select-styled:after {
  content: "\e64b";
  position: absolute;
  top: 4px;
  right: 2px;
  font-size: 14px;
  font-family: 'themify'; }
.select-styled:active:after, .select-styled.active:after {
  transform: rotate(180deg); }

.select-options {
  font-family: "FuturaPT Book";
  font-size: 18px;
  display: none;
  position: absolute;
  top: 130%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: 0; }
.select-options li {
  text-align: left;
  margin: 0;
  padding: 12px 6px;
  border-top: 1px solid #e6e6e6;
  transition: all 0.15s ease-in; }
.select-options li:hover {
  color: #ee9051;
  background: #fff; }
.select-options li[rel="hide"] {
  display: none; }

/*----end----*/
/*end*/
.slick-nav-product-detail.slick-initialized .slick-slide {
  margin: 0 5px; }

@media (min-width: 320px) {
  .menu-fixed {
    padding: 30px 15px; } }
@media (min-width: 1200px) {
  .menu-fixed {
    padding: 55px 100px; } }
.navbar-nav.menu-main {
  padding-left: 0; }
.header-v1 .navbar-nav.menu-main>li>a{
  padding: 10px 45px 2px 0px;
}
.navbar-nav.menu-main li .mega-menu-main a {
  padding: 1px 1px 1px;
}
.navbar-nav.menu-main>li>a {
  padding: 6px 45px 2px 0px;
  font-weight: 600;
}

.header-v2 .navbar-nav.menu-main>li>a {
  padding: 16px 22px 2px 20px;
  font-weight: 500;
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .header-v2 .navbar-nav.menu-main>li>a {
    padding: 16px 10px 2px 20px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .header-v2 .navbar-nav.menu-main>li>a {
    padding: 16px 15px 2px 20px;
  }
}
.header-v5 .navbar-nav.menu-main li a{
  font-weight: 500;
}

.navbar-nav.menu-main li:hover a {
  background: transparent; }

.icon-main i {
  font-size: 18px; }
.icon-main a{
  padding-left:15px;
}
@media (min-width: 768px){
  .icon-main>a{
    position: relative;
    top: 7px;
  }
}
.label-cart {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -8px;
  right: -10px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.label-new {
  display: block;
  min-width: 35px;
  height: 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 11px;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  top: 10px;
  left: 10px;
  padding-top: 3px;
}

.label-sale {
  display: block;
  min-width: 35px;
  height: 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  top: 10px;
  right: 10px;
  left: auto;
  padding-top: 3px;
}
.mega-menu-main .title-menu{
  font-size:12px;
  font-weight:600;
}
.mega-menu-main.mega-menu-shop {
  width: 900px;
  left: -156px; }
.mega-menu-main.mega-menu-shop.bg-mega-menu2{
  padding-bottom:40px;
  width:890px;
}
.mega-menu-main.mega-menu-shop.bg-mega-menu4{
  padding-bottom:40px;
  width:800px;
}
.mega-menu-main.mega-menu-shop-2column {
  padding-bottom:200px;
  width: 560px;
  left: -170px; }
.mega-menu-main.mega-menu-shop .banner-menu .product .icon-heart {
  padding: 0;
  padding-top: 14px; }
.mega-menu-main.mega-menu-shop .banner-menu .product .icon-quickview {
  padding: 0;
  padding-top: 14px; }
.header-v4 .mega-menu-main.mega-menu-shop{
  left: 0;
}

.info-slider-home1 {
  padding: 11% 15px 9% 8%; }
.info-slider-home1 .slider-nav {
  opacity: 0; }
.info-slider-home1 .slider-nav .number-slider {
  opacity: 0; }
.info-slider-home1 .slider-nav .title-slider {
  transform: translateX(1000px); }
.info-slider-home1 .slider-nav .des-slider {
  transform: translateX(-1000px); }
.info-slider-home1 .slick-current.slick-active.slider-nav {
  opacity: 1; }
.info-slider-home1 .slick-current.slick-active.slider-nav .number-slider {
  opacity: 1; }
.info-slider-home1 .slick-current.slick-active.slider-nav .title-slider {
  transform: unset; }
.info-slider-home1 .slick-current.slick-active.slider-nav .des-slider {
  transform: unset; }
.info-slider-home1 button.slick-prev {
  display: none !important; }
.info-slider-home1 button.slick-next {
  display: none !important; }
.info-slider-home1 .number-slider {
  width: 100px;
  height: 100px;
  background-image: linear-gradient(45deg, #ef924c, #fabb02);
  font-size: 30px;
  color: #fff;
  padding: 50px 18px; }
.info-slider-home1 .number-slider .line {
  background: #ee9051;
  bottom: -5px;
  left: 0;
  width: 100px; }
.info-slider-home1 .title-slider {
  font-size: 90px;
  letter-spacing: -3px;
  padding-top: 45px; }
.info-slider-home1 .des-slider {
  font-size: 20px; }
.info-slider-home1.active {
  opacity: 1; }
.info-slider-home1 .slick-dots {
  transform: rotate(90deg);
  left: -48%;
  top: 50%;
  bottom: unset; }
.info-slider-home1 .slick-dots li {
  font-family: "FuturaPT Heavy";
  transform: rotate(-90deg); }
.info-slider-home1 .slick-dots li.slick-active {
  transform: scale(1.5) rotate(-90deg); }
.info-slider-home1 .slick-dots li a {
  color: #333; }

.slider-home1 {
  top: 0;
  right: 0; }
.slider-home1 button.slick-prev {
  display: none !important; }
.slider-home1 button.slick-next {
  display: none !important; }
.slider-home1 .slick-list {
  padding-top: 100px !important;
  padding-bottom: 100px !important; }
.slider-home1 .slick-slide {
  transition: all .3s ease; }
.slider-home1 .slick-slide.slick-active {
  opacity: 0; }
.slider-home1 .slick-center.slick-active {
  transform: scale(1.3);
  opacity: 1; }
.slider-home1 .slick-center.slick-active img {
  margin-left: -75px;
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.13); }

.section2-home1 {
  background-image: url("../img/bg-section2-home1.jpg");
  background-position: 0 0;
  height: auto;
  background-repeat: no-repeat; }
.section2-home1 .img-section img {
  margin-right: 100px; }
.section2-home1 .img-section:hover img {
  transform: scale(1.2); }
.section2-home1 .content-section h1 {
  font-size: 48px;
  width: 70%; }
.section2-home1 .content-section h1 a {
  color: #222; }
.section2-home1 .content-section p {
  font-size: 20px;
  width: 76%;
  line-height: 30px; }
.section2-home1 .content-section a.learn_more {
  color: #222;
  text-decoration: underline; }

.product .img-product .product-icon {
  width: 100%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  bottom: 0; }
.product .img-product .product-icon .icon-addcart {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius:50%;
  opacity: 0;
  padding-top: 12px;
  transition: all .5s ease; }
.product .img-product .product-icon .icon-addcart button {
  transition: all .5s ease; }
.product .img-product .product-icon .icon-heart {
  width: 50px;
  height: 50px;
  border-radius:50%;
  background: #fff;
  color: #333;
  opacity: 0;
  margin: 0 10px;
  transition: all .5s ease;
  padding-top: 14px; }
.product .img-product .product-icon .icon-heart:hover {
  color: #ee9051; }
.product .img-product .product-icon .icon-quickview {
  width: 50px;
  height: 50px;
  border-radius:50%;
  background: #fff;
  color: #333;
  opacity: 0;
  transition: all .3s ease;
  padding-top: 14px; }

.product .img-product:hover .product-icon .icon-addcart {
  opacity: 1;
  transform: translateY(-10px); }
.product .img-product:hover .product-icon .icon-heart {
  opacity: 1;
  transform: translateY(-10px); }
.product .img-product:hover .product-icon .icon-quickview {
  opacity: 1;
  transform: translateY(-10px); }
.product .info-product h4 a {
  font-size: 12px;
  text-transform: uppercase;
  transition: all .3s ease; }
.product .info-product .price-product{
  font-weight:500;
  font-size:16px;
}
#btn-selection button {
  color: #909090; }
#btn-selection button.active {
  color: #333; }
#btn-selection button:first-child {
  margin-left: 8px; }

.column {
  display: none !important; }

.show {
  display: inline-block !important; }

.slick-prev {
  top: 40%;
  right: 60px;
  width: 40px;
  height: 40px;
  background: transparent;

  border-radius: 0; }
.slick-prev:before {
  font-family: 'FontAwesome';
  content: "\f104";
  font-size: 30px;
  color: #222; }

.slick-next {
  top: 40%; 
  right: 8px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 0; }
.slick-next:before {
  font-family: 'FontAwesome';
  content: "\f105";
  font-size: 30px;
  color: #222; }
@media (max-width:567px) {
  .slick-next {
    right: -25px;
  }
}
.section-bestseller-home1 .title-bestseller {
  font-size: 55px; }
.section-bestseller-home1 .des-bestseller {
  font-size: 18px;
  width: 40%; }
.section-bestseller-home1 .discover-link a {
  color: #333;
  font-size: 16px;
  transition: all .3s ease; }
.section-bestseller-home1 .discover-link a:hover {
  color: #ee9051; }
.section-bestseller-home1 .discover-link .line {
  width: 120px;
  background: #999999;
  left: 0;
  bottom: -3px; }

.border-right {
  border-right: 1px solid #ddd; }

.section-topseller-home1 .title-topseller {
  font-size: 55px; }
.section-topseller-home1 .des-topseller {
  font-size: 18px; }
.section-topseller-home1 .product-topseller-1 .info-product {
  bottom: -30%;
  left: 6%; }
.section-topseller-home1 .product-topseller-1 .info-product .title-product {
  font-size: 36px; }
.section-topseller-home1 .product-topseller-1 .info-product .title-product a {
  color: #333; }
.section-topseller-home1 .product-topseller-1 .info-product .title-product a:hover {
  color: #ee9051; }
.section-topseller-home1 .product-topseller-1 .info-product .price-product {
  font-size: 18px; }
.section-topseller-home1 .product-topseller-1.ver2 .info-product {
  left: 34%; }
.section-topseller-home1 .product-topseller-2 .info-product {
  top: 25%;
  left: 5%; }
.section-topseller-home1 .product-topseller-2 .info-product .title-product {
  font-size: 72px; }
.section-topseller-home1 .product-topseller-2 .info-product .title-product a {
  color: #333; }
.section-topseller-home1 .product-topseller-2 .info-product .title-product a:hover {
  color: #ee9051; }
.section-topseller-home1 .product-topseller-2 .info-product .price-product {
  font-size: 18px; }
.section-topseller-home1 .btn-shopnow a {
  color: #333; }
.section-topseller-home1 .btn-shopnow a:hover {
  color: #ee9051; }
.section-topseller-home1 .btn-shopnow a .line {
  bottom: -2px;
  background: #999999;
  width: 75px;
  left: 0; }

.testimonial {
  background: #f2f2f2;
  padding-top: 130px;
  padding-bottom: 250px; }
.testimonial button.slick-prev {
  display: none !important; }
.testimonial button.slick-next {
  display: none !important; }
.testimonial .title-testi {
  font-size: 55px; }
.testimonial .des-testi {
  font-size: 18px; }
.testimonial .content-comment .stt-comment {
  font-size: 80px;
  color: #dfdfdf;
  top: 0;
  left: 0;
  z-index: -1; }
.testimonial .content-comment .des-comment {
  font-size: 18px;
  width: 70%;
  padding-top: 58px; }
.testimonial .content-comment .model {
  color: #979797; }
.testimonial .slick-dots {
  bottom: -130px; }
.testimonial .slick-dots li {
  width: 10px;
  margin: 0px 8px; }
.testimonial .slick-dots li button {
  width: 16px;
  height: 15px;
  padding: 0px; }
.testimonial .slick-dots li button:before {
  font-size: 9px;
  line-height: 15px;
  width: 15px;
  height: 15px;
  top: 1px;
  left: 1px; }
.testimonial .slick-dots li.slick-active button {
  border: 2px solid #333;
  border-radius: 68%; }

.contact-home1 {
  background: #333333; }
.contact-home1 .col-about-home1 .title-about-home1 {
  font-size: 24px;
  color: #fff; }
.contact-home1 .col-about-home1 .des-about-home1 {
  font-size: 16px;
  color: #909090; }
.contact-home1 .col-about-home1 .location {
  font-size: 16px;
  color: #909090; }
.contact-home1 .col-about-home1 .location .ti-location-pin {
  font-size: 18px; }
.contact-home1 .col-about-home1 form input {
  background: #333333;
  height: 50px;
  width: 300px;
  border: 1px solid #909090;
  border-radius: 0;
  box-shadow: unset; }
.contact-home1 .col-about-home1 form input::-webkit-input-placeholder {
  color: #909090;
  font-size: 16px; }
.contact-home1 .col-about-home1 form button {
  width: 50px;
  margin-left: 5px;
  border: 0;
  border-radius: 0;
  background: #ee9051;
  display: grid; }
.contact-home1 .col-about-home1 form button i {
  color: #fff;
  font-size: 18px;
  transition: all .2s ease;
  transform: rotate(90deg); }
.contact-home1 .col-about-home1 form button:hover i {
  transform: rotate(90deg) scale(1.1); }
.contact-home1 .lastest-post {
  padding-left: 6%; }
.contact-home1 .lastest-post h4 {
  font-size: 24px;
  color: #fff; }
.contact-home1 .lastest-post h5 a {
  font-size: 16px;
  color: #fff;
  transition: all .3s ease; }
.contact-home1 .lastest-post h5 a:hover {
  color: #ee9051; }
.contact-home1 .lastest-post p {
  color: #909090; }
.contact-home1 .recent-tag h4 {
  font-size: 24px;
  color: #fff; }
.contact-home1 .recent-tag a {
  padding: 6px 22px;
  font-size: 12px;
  color: #909090;
  border: 1px solid #909090;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all .2s ease; }
.contact-home1 .recent-tag a:hover {
  background: #fff;
  color: #ee9051; }
.contact-home1 .instagram h4 {
  font-size: 24px;
  color: #fff; }
.contact-home1 .instagram a {
  overflow: hidden;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 5px; }
.contact-home1 .instagram a img {
  transition: all .3s ease; }
.contact-home1 .instagram a:hover img {
  transform: scale(1.2); }

.copyright {
  font-size: 18px; }
.scroll-top{
  bottom:100px;
  right:30px;
  transform:scale(0);
  opacity:0;
  z-index: 10;
  transition:all .3s ease;
}
.scroll-top a{
  display:inline-block;
  cursor: pointer;
  width:40px;
  height:40px;
  border-radius: 50%; 
  transition:all .3s ease;
  text-align: center;
  padding-top: 2px;
  font-size: 20px;

}
.scroll-top a i.fa-angle-up{
  font-size:20px;
}
.scroll-top.active{
  transform:scale(1);
  opacity:1;
}


.form-search {
  right: -100vw;
  left: unset;
  overflow: hidden; }

/* end style homepage 1*/
/*style homepage 2*/
header {
  z-index: 20; }
.header-v1{
  padding: 45px 0;
}
.slider-home2 {
  background-image: url("../img/bg-slider-home2.jpg");
  background-position: 0 0;
  height: auto;
  background-repeat: no-repeat; }
.slider-home2 .img-slider-main {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  right: -30px;
  z-index: -1;
  opacity: 0;
  transition: all 1s cubic-bezier(0.74, 0.65, 0, 1.58); }
.slider-home2 .number-year {
  opacity: 0;
  transform: translateX(1000px);
  font-size: 48px;
  letter-spacing: -3px; }
.slider-home2 .text-new {
  margin: -80px 0; }
.slider-home2 .text-new span {
  font-size: 200px;
  opacity: 0;
  transform: translateX(2000px);
  display: inline-block;
  letter-spacing: -11px; }
.slider-home2 .text-collection {
  font-size: 100px;
  opacity: 0;
  transform: translateX(-2000px);
  letter-spacing: -4px;
  padding-left: 60px; }
.slider-home2 .info-slider-home2 {
  top: 30%;
  left: 5%; }
.slider-home2 .info-slider-home2 .title-slider-home2 {
  font-size: 60px;
  letter-spacing: -2px; }
.slider-home2 .info-slider-home2 .number-dot {
  font-size: 100px;
  opacity: 0; }
.slider-home2 .info-slider-home2 .number-dot img {
  display: inline-flex;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(200px); }
.slider-home2 button.slick-prev {
  display: none !important; }
.slider-home2 button.slick-next {
  display: none !important; }
.slider-home2 .slick-list {
  padding-top: 140px;
  padding-bottom: 140px; }
.slider-home2 .text-slider-home2 {
  transform: rotate(-90deg);
  position: relative;
  top: 325px;
  left: 60px; }
.slider-home2 .text-slider-home2 img {
  transform: translateX(-2000px) rotate(90deg);
  left: 42px;
  bottom: 30px; }
.slider-home2 .slick-current.slick-active .text-slider-home2 img {
  transform: translateX(0) rotate(90deg); }
.slider-home2 .slick-current.slick-active .number-dot {
  opacity: 1; }
.slider-home2 .slick-current.slick-active .number-dot img {
  opacity: 1;
  transform: translateX(0); }
.slider-home2 .slick-current.slick-active .number-year {
  opacity: 1;
  transform: translateX(0); }
.slider-home2 .slick-current.slick-active .text-new span {
  opacity: 1;
  transform: translateX(0); }
.slider-home2 .slick-current.slick-active .text-collection {
  opacity: 1;
  transform: translateX(0); }
.slider-home2 .slick-current.slick-active .img-slider-main {
  opacity: 1;
  transition: all 1.5s cubic-bezier(0.74, 0.65, 0, 1.58); }

/*------------*/
.social-fixed {
  line-height: 50px;
  justify-content: center;
  bottom: 15px;
  flex-direction: column;
  right: 100px;
  z-index: 30; }
.social-fixed a {
  display: inline-block;
  padding: 0 20px;
  color: #333; }
.social-fixed a:hover {
  color: #ee9051; }
.social-fixed a i {
  font-size: 18px; }

/*------------------*/
.show-banner-home2 {
  padding: 355px 150px 130px 150px; }
.show-banner-home2 .show-banner-1-home2 {
  padding-left: 30px;
  padding-right: 30px; }
.show-banner-home2 .show-banner-1-home2 .banner-col-2 .text-pr .content-pr {
  top: 20%;
  color: #fff; }
.show-banner-home2 .show-banner-1-home2 .banner-col-2 .text-pr .content-pr .title-pr {
  font-size: 48px; }
.show-banner-home2 .show-banner-1-home2 .banner-col-2 .text-pr .content-pr .des-pr {
  font-size: 20px;
  padding-left: 6%;
  padding-right: 6%; }
.show-banner-home2 .show-banner-1-home2 .banner-col-2 .text-pr .content-pr .link-shop {
  font-size: 16px; }
.show-banner-home2 .show-banner-1-home2 .banner-col-2 .text-pr .content-pr .link-shop a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff; }
.show-banner-home2 .show-banner-2-home2 {
  padding-right: 30px;
  padding-left: 30px; }
.show-banner-home2 .show-banner-2-home2 .banner-col-1 .text-comment .content-comment {
  top: 30%;
  color: #333; }
.show-banner-home2 .show-banner-2-home2 .banner-col-1 .text-comment .content-comment .des-font {
  letter-spacing: 3px;
  font-size: 24px; }
.show-banner-home2 .show-banner-2-home2 .banner-col-1 .text-comment .content-comment .author-comment {
  font-size: 24px; }
.show-banner-home2 .img-relative-1 {
  top: -90px; }
.show-banner-home2 a {
  display: inherit; }

/*------------*/
.similar-home2 {
  padding-bottom: 200px; }
.similar-home2 .title-similar {
  font-size: 55px; }
.similar-home2 .des-similar {
  font-size: 18px; }
.similar-home2 .slick-similar .slick-dots {
  bottom: -100px; }
.similar-home2 .slick-similar .slick-dots li {
  width: 10px; }
.similar-home2 .slick-similar .slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0px; }
.similar-home2 .slick-similar .slick-dots li button:before {
  font-size: 9px;
  line-height: 15px;
  width: 15px;
  height: 15px; }
.similar-home2 .slick-similar .slick-dots li.slick-active button {
  border: 1px solid #333;
  border-radius: 63%; }
.similar-home2 .slick-similar button.slick-prev {
  display: none !important; }
.similar-home2 .slick-similar button.slick-next {
  display: none !important; }
.similar-home2 .slick-similar .designer .button-animate {
  transform: scale(0);
  opacity: 0;
  top: 30px;
  right: 30px; }
.similar-home2 .slick-similar .designer .button-animate button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #ee9051; }
.similar-home2 .slick-similar .designer .button-animate button i {
  font-size: 18px;
  color: #fff;
  padding-top: 4px;
  display: inline-block; }
.similar-home2 .slick-similar .designer .button-animate button:hover i {
  transform: translateX(2px) translateY(-2px); }
.similar-home2 .slick-similar .designer .info-similar {
  transform: scale(0);
  opacity: 0;
  width: 100%;
  bottom: 45px; }
.similar-home2 .slick-similar .designer .info-similar .name {
  color: #fff; }
.similar-home2 .slick-similar .designer .info-similar p {
  color: #909090; }
.similar-home2 .slick-similar .designer:hover .overlay-mini {
  transform: scale(1);
  opacity: 1; }
.similar-home2 .slick-similar .designer:hover .button-animate {
  opacity: 1;
  transform: scale(1); }
.similar-home2 .slick-similar .designer:hover .info-similar {
  opacity: 1;
  transform: scale(1); }

.logo-footer-home2 .newsletter a {
  font-size: 18px;
  color: #333; }
.logo-footer-home2 .newsletter a span {
  display: inline-block;
  position: relative;
  top: -3px; }
.logo-footer-home2 .newsletter a i {
  font-size: 18px;
  display: inline-block;
  padding-left: 15px; }
.logo-footer-home2 .newsletter a:hover {
  color: #ee9051; }
.logo-footer-home2 .newsletter a:hover i {
  color: #ee9051; }

.copy-footer-home2 .copy {
  padding-left: 0; }
.copy-footer-home2 .copy .copy-text {
  font-size: 18px;
  border-top: 2px solid #333; }
.copy-footer-home2 .social-footer {
  padding-right: 0; }
.copy-footer-home2 .social-footer .social-home2 {
  border-top: 2px solid #333; }
.copy-footer-home2 .social-footer .social-home2 a {
  color: #333; }
.copy-footer-home2 .social-footer .social-home2 a i {
  font-size: 18px; }
.copy-footer-home2 .social-footer .social-home2 a:hover i {
  color: #ee9051; }

.header-home2 .menu-home2 {
  transform: rotate(-90deg);
  position: fixed;
  top: 57%;
  left: -135px; }
.header-home2 .menu-home2 .dropdown:hover {
  transform: unset; }
.header-home2 .menu-home2 .dropdown-menu {
  transform: rotate(90deg);
  left: -170px;
  top: 210px; }
.header-home2 .menu-home2 .dropdown-menu.mega-menu-shop {
  left: -315px;
  top: 360px; }

/*end style homepage 2*/
/* home page 3*/
.slider-home3 button.slick-prev {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 0;
  border: 0;
  top: 130px;
  z-index: 30;
  right: 48.4%; }
.slider-home3 button.slick-prev:before {
  content: "\e64b";
  color: #fff; }
.slider-home3 button.slick-next {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 0;
  border: 0;
  top: 60px;
  z-index: 30;
  right: 48.4%; }
.slider-home3 button.slick-next:before {
  content: "\e648";
  color: #fff; }
.slider-home3 .text-slider-home3 {
  padding-top: 40%;
  line-height: 1;
  justify-content: center; }
.slider-home3 .text-slider-home3 .title-slider {
  transform: translateX(-2000px);
  font-size: 160px;
  letter-spacing: -4px; }
.slider-home3 .text-slider-home3 .title-slider .dot-red {
  font-size: 180px;
  color: #df0726;
  left: -30px; }
.slider-home3 .text-slider-home3 .title-slider .year {
  font-size: 30px;
  top: -70px;
  left: -38px;
  transform: translateX(2000px); }
.slider-home3 .text-slider-home3 .des-slider {
  font-size: 20px;
  padding: 0 15%;
  transform: translateX(2000px); }
.slider-home3 .text-slider-home3 .btn-slider {
  transition: all 1.5s cubic-bezier(0.02, 2.32, 0.78, 0.17);
  opacity: 0;
  transform: scale(0);
  text-align: center; }
.slider-home3 .text-slider-home3 .btn-slider a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  padding: 35px 85px;
  background: black; }
.slider-home3 .text-slider-home3 .btn-slider a:hover {
  background: #ee9051; }
.slider-home3 .text-slider-home3 .social-home3 {
  justify-content: center; }
.slider-home3 .text-slider-home3 .social-home3 a {
  color: black;
  font-size: 18px; }
.slider-home3 .text-slider-home3 .social-home3 a:hover {
  color: #ee9051; }
.slider-home3 .slick-current.slick-active .title-slider {
  transform: translateX(0); }
.slider-home3 .slick-current.slick-active .title-slider .year {
  transform: translateX(0); }
.slider-home3 .slick-current.slick-active .des-slider {
  transform: translateX(0); }
.slider-home3 .slick-current.slick-active .btn-slider {
  opacity: 1;
  transform: scale(1); }

.collection-home3 .title-collection {
  bottom: 30%; }
.collection-home3 .title-collection h2 {
  font-size: 50px; }
.collection-home3 .title-collection p {
  font-size: 18px;
  width: 90%; }
.collection-home3 .title-collection p a {
  color: black;
  text-decoration: underline;
  transition: all .3s ease; }
.collection-home3 .title-collection p a:hover {
  color: #ee9051; }
.collection-home3 .title-collection.title-1 {
  bottom: 50%;
  right: 5%;
  top: 10%; }
.collection-home3 .title-collection.title-2 {
  bottom: 50%;
  left: 10%;
  top: 10%; }
.collection-home3 .title-collection.title-3 {
  right: 0;
  padding-left: 50%; }
.collection-home3 .title-collection.title-3 p {
  width: 98%; }

.brand .brand-slider button.slick-prev {
  opacity: 0; }
.brand .brand-slider button.slick-next {
  opacity: 0; }
.brand .brand-slider:hover button.slick-prev {
  opacity: 1; }
.brand .brand-slider:hover button.slick-next {
  opacity: 1; }

.newsletter-home3 {
  border-top: 1px solid #ddd; }
.newsletter-home3.no-border {
  border-top: 0; }
.newsletter-home3.BG {
  border-top: 0;
  background: #f2f2f2; }
.newsletter-home3.BG form input {
  background: #f2f2f2; }
.newsletter-home3 h1 {
  font-size: 55px; }
.newsletter-home3 p {
  font-size: 18px; }
.newsletter-home3 form {
  width: 55%;
  margin: 0 auto; }
.newsletter-home3 form input {
  padding-left: 30px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 18px;
  box-shadow: unset; }
.newsletter-home3 form button {
  background: black;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  color: #fff;
  width: 340px;
  transition: all .3s ease; }
.newsletter-home3 form button:hover {
  background: #ee9051; }

.insta_home3 .column-20 {
  width: 20%;
  float: left; }
.insta_home3 .column-20 .icon-insta {
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: scale(0);
  transition: all .3s ease; }
.insta_home3 .column-20 .icon-insta i {
  color: #fff;
  font-size: 36px;
  display: inline-block;
  padding-top: 44%; }
.insta_home3 .column-20:hover .icon-insta {
  transform: scale(1); }

/*end style homepage 3*/
/*style homepage 4*/
.img-zoom-lens {
  position: absolute;
  /*set the size of the lens:*/
  width: 40px;
  height: 40px; }

.img-zoom-result {
  /*set the size of the result div:*/
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 170px;
  height: 225px; }

.slider-home4 .text-slider {
  top: 30%;
  left: 5%; }
.slider-home4 .text-slider h1 {
  font-size: 90px;
  line-height: .9;
  transform: translateX(-2000px);
  opacity: 0; }
.slider-home4 .text-slider .des-slider {
  font-size: 20px;
  padding-bottom: 190px;
  transform: translateX(2000px);
  opacity: 0; }
.slider-home4 .text-slider .social-home3 {
  justify-content: left;
  opacity: 0; }
.slider-home4 .text-slider .social-home3 a {
  color: black;
  font-size: 18px; }
.slider-home4 .text-slider .social-home3 a:hover {
  color: #ee9051; }
.slider-home4 .seasion {
  top: 25%;
  right: 2%; }
.slider-home4 .seasion p {
  font-size: 24px;
  transform: rotate(90deg) translateX(-2000px); }
.slider-home4 .slick-dots {
  transform: rotate(90deg);
  right: 5%;
  bottom: 30%;
  width: unset; }
.slider-home4 .slick-dots li {
  display: none; }
.slider-home4 .slick-dots li a {
  font-family: "FuturaPT Heavy";
  color: black; }
.slider-home4 .slick-dots li a span {
  position: relative;
  top: -6px;
  padding: 0 10px; }
.slider-home4 .slick-dots li.slick-active {
  display: inline-block; }
.slider-home4 .slick-current.slick-active .text-slider h1 {
  transform: translateX(0);
  opacity: 1; }
.slider-home4 .slick-current.slick-active .text-slider .des-slider {
  transform: translateX(0);
  opacity: 1; }
.slider-home4 .slick-current.slick-active .text-slider .social-home3 {
  opacity: 1; }
.slider-home4 .slick-current.slick-active .seasion p {
  transform: rotate(90deg) translateX(0); }
.slider-home4 button.slick-prev {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 0;
  border: 0;
  top: 36%;
  right: 12.5%; }
.slider-home4 button.slick-prev:before {
  content: "\e64b";
  color: #fff; }
.slider-home4 button.slick-next {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 0;
  border: 0;
  top: 30%;
  right: 12.5%; }
.slider-home4 button.slick-next:before {
  content: "\e648";
  color: #fff; }

.collection-home4 .product {
  padding-right: 5px; }
.collection-home4 .product .info-product {
  opacity: 0;
  visibility: hidden;
  background: #fff;
  z-index: 10; }
.collection-home4 .product:hover .info-product {
  opacity: 1;
  visibility: visible; }
.collection-home4 .banner_collection .name_collection {
  text-align: center;
  font-size: 50px;
  color: black;
  line-height: 150px;
  width: 600px;
  background: rgba(255, 255, 255, 0.9);
  top: 40%;
  left: 14%; }

.shipping-home4 .content {
  padding-left: 7%; }
.shipping-home4 .content .title-ship {
  font-size: 28px;
  padding-top: 15px; }
.shipping-home4 .content .des-ship {
  padding-top: 30px;
  font-size: 18px;
  line-height: 1.7; }

.brand-home4 {
  padding: 0 285px; }
.brand-home4 button.slick-prev {
  display: none !important; }
.brand-home4 button.slick-next {
  display: none !important; }

.blog-home4 .title-blog {
  font-size: 55px; }
.blog-home4 .des-blog {
  font-size: 18px;
  line-height: 1.7; }
.blog-home4 .content-blog .title-post {
  font-size: 28px; }
.blog-home4 .content-blog .title-post a {
  color: black;
  transition: all .3s ease; }
.blog-home4 .content-blog .title-post a:hover {
  color: #ee9051; }
.blog-home4 .content-blog .day-post {
  font-size: 18px; }
.blog-home4 .content-blog .des-post {
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 65px;
  padding-top: 10px;
  width: 98%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }
.blog-home4 .content-blog .link-more {
  font-size: 16px;
  text-decoration: underline;
  color: black;
  transition: all .3s ease; }
.blog-home4 .content-blog .link-more:hover {
  color: #ee9051; }

/*end style homepage 4*/
/*style homepage 5*/
.slider-home5 .text-slider {
  top: 30%;
  right: 10%; }
.slider-home5 .text-slider h1 {
  font-size: 90px;
  line-height: .9;
  transform: translateX(-2000px);
  opacity: 0; }
.slider-home5 .text-slider .des-slider {
  font-size: 20px;
  padding-bottom: 90px;
  transform: translateX(2000px);
  opacity: 0; }
.slider-home5 .text-slider .social-home3 {
  justify-content: left;
  opacity: 0; }
.slider-home5 .text-slider .social-home3 a {
  color: black;
  font-size: 18px; }
.slider-home5 .text-slider .social-home3 a:hover {
  color: #ee9051; }
.slider-home5 .seasion {
  display: flex;
  top: 42%;
  right: -309px; }
.slider-home5 .seasion p {
  font-size: 18px;
  color: #fff;
  letter-spacing: 10px;
  transform: rotate(90deg) translateX(-2000px); }
.slider-home5 .seasion button {
  transform: rotate(-90deg);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #55120f;
  margin-right: 58px;
  position: relative;
  top: 10px; }
.slider-home5 .seasion button svg {
  width: 36px;
  height: 36px; }
.slider-home5 .seasion button i {
  color: #fff;
  position: relative;
  top: -36px; }
.slider-home5 .slick-current.slick-active .text-slider h1 {
  transform: translateX(0);
  opacity: 1; }
.slider-home5 .slick-current.slick-active .text-slider .des-slider {
  transform: translateX(0);
  opacity: 1; }
.slider-home5 .slick-current.slick-active .text-slider .social-home3 {
  opacity: 1; }
.slider-home5 .slick-current.slick-active .seasion p {
  transform: rotate(90deg) translateX(0); }
.slider-home5 button.slick-prev {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 0;
  border: 0;
  top: unset;
  right: unset;
  bottom: 5%;
  left: 5%; }
.slider-home5 button.slick-prev:before {
  content: "\e64a";
  color: #fff; }
.slider-home5 button.slick-next {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 0;
  border: 0;
  top: unset;
  right: unset;
  bottom: 5%;
  left: 9%; }
.slider-home5 button.slick-next:before {
  content: "\e649";
  color: #fff; }

.slider-nav-home5 {
  width: 740px;
  bottom: 20%;
  left: -150px; }
.slider-nav-home5 .slick-slide {
  margin: 0 25px; }
.slider-nav-home5 button {
  display: none !important; }

.newsletter-home5 {
  background-image: url("../img/newletter_home5.jpg");
  background-position: 0 0;
  height: auto;
  background-repeat: no-repeat; }
.newsletter-home5 .form-home5 {
  width: 55%;
  padding: 168px 0 188px 50px; }
.newsletter-home5 .form-home5 .title-news {
  font-size: 55px; }
.newsletter-home5 .form-home5 .des-news {
  font-size: 18px;
  margin-bottom: 70px; }
.newsletter-home5 .form-home5 form input {
  height: 70px;
  border-radius: 0;
  border: 0;
  margin-bottom: 30px;
  font-size: 18px;
  padding-left: 30px; }
.newsletter-home5 .form-home5 form button {
  border: 0;
  border-radius: 0;
  line-height: 70px;
  width: 250px;
  background: black;
  color: #fff;
  font-size: 16px; }
.newsletter-home5 .form-home5 form button:hover {
  background: #ee9051; }

.collection_home5 .flex {
  justify-content: center; }
.collection_home5 .flex .midle {
  position: relative;
  top: 80px; }
.collection_home5 .info-collection {
  bottom: 10%;
  left: 20%; }
.collection_home5 .info-collection .title-collection {
  font-size: 50px; }
.collection_home5 .info-collection .des-collection {
  font-size: 18px;
  width: 90%; }
.collection_home5 .info-collection .link-collection {
  font-size: 16px;
  text-decoration: underline; }
.collection_home5 .info-collection.ver2 {
  top: 20%;
  bottom: unset; }
.collection_home5 .info-collection.ver3 {
  left: 50%;
  right: 0; }

/*end style homepage 5*/
/*style homepage 6*/
.slider-home6 button.slick-prev {
  display: none !important; }
.slider-home6 button.slick-next {
  display: none !important; }
.slider-home6 .img_slider_1 img {
  opacity: 0;
  transform: translateX(-2000px); }
.slider-home6 .img_slider_2 img {
  opacity: 0;
  transform: translateX(2000px); }
.slider-home6 .text-slider-home6 {
  transition: all 1.5s cubic-bezier(0.26, 2.24, 0.93, 0.43);
  transform: scale(0);
  opacity: 0;
  top: 50%;
  left: 39%; }
.slider-home6 .text-slider-home6 .btn-slider a {
  color: #fff;
  font-size: 60px;
  padding: 2px 50px 9px;
  background: black;
  transition: all .3s ease; }
.slider-home6 .text-slider-home6 .btn-slider a:hover {
  background: #ee9051; }
.slider-home6 .text-slider-home6 .des-slider {
  font-size: 18px;
  letter-spacing: 7px;
  text-align: center; }
.slider-home6 .slick-current.slick-active .text-slider-home6 {
  opacity: 1;
  transform: scale(1); }
.slider-home6 .slick-current.slick-active .img_slider_1 img {
  opacity: 1;
  transform: translateX(0); }
.slider-home6 .slick-current.slick-active .img_slider_2 img {
  opacity: 1;
  transform: translateX(0); }

.section-bestseller-home1.home6 .des-bestseller.text-center {
  margin: 0 auto 50px; }
.section-bestseller-home1.home6 #btn-selection {
  margin: 0 150px 50px; }
.section-bestseller-home1.home6 .slick-bestseller-home6 {
  margin: 0 150px; }

.banner_home6 .text-banner {
  top: 18%;
  left: 14%; }
.banner_home6 .text-banner .des-banner {
  font-size: 24px;
  padding: 10px 38px;
  background: #fff;
  letter-spacing: 8px;
  margin-left: 50px; }
.banner_home6 .text-banner .title-banner {
  font-size: 120px;
  color: #5588ef;
  text-align: center;
  margin-bottom: 110px; }
.banner_home6 .text-banner .link-shop {
  font-size: 16px;
  display: block;
  text-align: center; }
.banner_home6 .text-banner .link-shop .line {
  width: 85px;
  background: #928c76;
  left: 38%; }

.collection-home6 .flex {
  justify-content: center; }
.collection-home6 .link-collection {
  font-size: 24px;
  padding: 8px 50px;
  background: #fff;
  bottom: 50px; }

.section-bestseller-home1 .slick-newarrival {
  margin: 0 150px; }
.section-bestseller-home1 .slick-newarrival button.slick-prev {
  opacity: 0; }
.section-bestseller-home1 .slick-newarrival button.slick-next {
  opacity: 0; }
.section-bestseller-home1:hover .slick-newarrival button.slick-prev {
  opacity: 1; }
.section-bestseller-home1:hover .slick-newarrival button.slick-next {
  opacity: 1; }

.blog-home4.BG {
  background: #f2f2f2;
  padding-right: 165px;
  padding-left: 165px; }

/*end style homepage 6*/
/* style homepage 7*/
.slider-home7 button.slick-prev {
  display: none !important; }
.slider-home7 button.slick-next {
  display: none !important; }
.slider-home7 .text-slider {
  bottom: 5%;
  left: 5%; }
.slider-home7 .text-slider .title-slider {
  transform: translateX(-2000px);
  color: #fff;
  font-size: 90px;
  margin-bottom: 60px;
  opacity: 0; }
.slider-home7 .text-slider .des-slider {
  transform: translateX(2000px);
  color: #fff;
  font-size: 20px;
  opacity: 0; }
.slider-home7 .text-slider .social-home3 {
  right: 15%;
  bottom: 5%;
  transform: scale(0); }
.slider-home7 .text-slider .social-home3 a {
  color: #fff; }
.slider-home7 .text-slider .social-home3 a i {
  font-size: 18px; }
.slider-home7 .text-slider .social-home3 a:hover {
  color: #ee9051; }
.slider-home7 .slick-current.slick-active .text-slider .title-slider {
  transform: translateX(0);
  opacity: 1; }
.slider-home7 .slick-current.slick-active .text-slider .des-slider {
  transform: translateX(0);
  opacity: 1; }
.slider-home7 .slick-current.slick-active .text-slider .social-home3 {
  transform: scale(1); }
.slider-home7 .slick-dots {
  transform: rotate(90deg);
  right: -43%;
  top: 62%;
  bottom: unset; }
.slider-home7 .slick-dots li {
  font-family: "FuturaPT Heavy";
  transform: rotate(-90deg); }
.slider-home7 .slick-dots li.slick-active {
  transform: scale(1.5) rotate(-90deg); }
.slider-home7 .slick-dots li a {
  color: #fff; }

.video-home7 .title-video {
  top: 25%;
  width: 100%;
  color: #fff;
  font-size: 80px; }
.video-home7 .btn-video-home7 {
  bottom: 30%;
  left: 47%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 8px solid #935c39;
  background: #ee9051;
  transition: all .3s ease; }
.video-home7 .btn-video-home7 svg {
  height: 0px;
  width: 0; }
.video-home7 .btn-video-home7 i {
  color: #fff;
  font-size: 20px;
  position: relative;
  top: 2px; }
.video-home7 .btn-video-home7:hover {
  background: #935c39; }

.testimonial.ver7 {
  background: #1e1e1e; }
.testimonial.ver7 .title-testi {
  color: #fff; }
.testimonial.ver7 .des-testi {
  color: #fff; }
.testimonial.ver7 .content-comment .stt-comment {
  color: #292929; }
.testimonial.ver7 .content-comment .des-comment {
  color: #fff; }
.testimonial.ver7 .content-comment .model {
  color: #979797; }
.testimonial.ver7 .content-comment .author-comment {
  color: #fff; }
.testimonial.ver7 .slick-dots {
  bottom: -130px; }
.testimonial.ver7 .slick-dots li {
  width: 10px; }
.testimonial.ver7 .slick-dots li button:before {
  color: #fff; }
.testimonial.ver7 .slick-dots li.slick-active button {
  border: 1px solid #fff;
  color: #fff; }

.contact-home1.ver7 {
  background: #fff; }
.contact-home1.ver7 .col-about-home1 .title-about-home1 {
  color: black; }
.contact-home1.ver7 .col-about-home1 .des-about-home1 {
  color: black; }
.contact-home1.ver7 .col-about-home1 .location {
  color: black; }
.contact-home1.ver7 .lastest-post {
  padding-left: 6%; }
.contact-home1.ver7 .lastest-post h4 {
  color: black; }
.contact-home1.ver7 .lastest-post h5 a {
  color: black; }
.contact-home1.ver7 .lastest-post h5 a:hover {
  color: #ee9051; }
.contact-home1.ver7 .lastest-post p {
  color: black; }
.contact-home1.ver7 .recent-tag h4 {
  color: black; }
.contact-home1.ver7 .recent-tag a {
  color: black;
  border: 1px solid black; }
.contact-home1.ver7 .recent-tag a:hover {
  background: black;
  color: #ee9051; }
.contact-home1.ver7 .instagram {
  padding-left: 15px; }
.contact-home1.ver7 .instagram .title-about-home1 {
  font-size: 24px;
  color: black; }
.contact-home1.ver7 .instagram .des-about {
  color: #909090;
  font-size: 18px; }
.contact-home1.ver7 .instagram form input {
  font-size: 18px;
  padding-left: 30px;
  height: 70px;
  width: 98%;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  box-shadow: unset; }
.contact-home1.ver7 .instagram form input::-webkit-input-placeholder {
  color: #909090; }
.contact-home1.ver7 .instagram form button {
  margin-top: 10px;
  line-height: 70px;
  border: 0;
  border-radius: 0;
  background: black;
  color: #fff;
  font-size: 16px;
  transition: all .3s ease;
  width: 60%;
  text-align: center; }
.contact-home1.ver7 .instagram form button:hover {
  background: #ee9051; }

.copyright span {
  display: block;
  border-top: 1px solid #e1e1e1; }

/*end style homepage 7*/
/* style contact page*/


.content-contact .local .title-local {
  font-size: 55px; }
.content-contact .local i {
  font-size: 30px;
  position: relative;
  top: 6px;
  padding-right: 30px; }
.content-contact .local span.bold {
  font-size: 22px; }
.content-contact .local .text {
  font-size: 18px;
  padding-left: 60px; }
.content-contact .local .des-local {
  font-size: 18px;
  width: 90%;
  line-height: 1.5; }
.content-contact .subscribe .title-sub {
  font-size: 55px; }
.content-contact .subscribe input {
  height: 60px;
  border-radius: 0;
  border: 1px solid #e1e1e1;
  font-size: 18px;
  padding-left: 30px; }
.content-contact .subscribe button {
  text-align: center;
  line-height: 60px;
  border: 0;
  border-radius: 0;
  background: black;
  color: #fff;
  transition: all .3s ease;
  letter-spacing: 1px; }
.content-contact .subscribe button:hover {
  background: #ee9051; }

.map-contact #map {
  height: 800px; }
.map-contact img {
  top: 18%;
  right: 10%;
  z-index: 1; }

/*end style contact page*/
/*style 404 page*/
.page404 {
  padding: 150px 0;
  border-top: 1px solid #ddd; }
.page404 .title-404 {
  font-size: 350px; }
.page404 .text-error {
  font-size: 36px; }
.page404 .des-404 {
  font-size: 18px; }
.page404 .link-to-home {
  font-size: 16px;
  color: #fff;
  line-height: 60px;
  width: 300px;
  background: black;
  display: inline-block;
  transition: all .3s ease; }
.page404 .link-to-home:hover {
  background: #ee9051; }
.page404 input {
  height: 60px;
  border-radius: 0;
  padding-left: 30px;
  width: 60%;
  margin: 0 auto;
  font-size: 18px; }

/*end style 404 page*/
/*style faq page*/
.content-faq {
  padding: 0 165px; }
.content-faq .title-faq {
  font-size: 55px; }
.content-faq .des-faq {
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  margin-bottom: 10px; }
.content-faq .accordion {
  font-size: 24px; }
.content-faq .panel p {
  font-size: 18px; }
.content-faq .row-2 {
  margin: 0; }
.content-faq .content-main-faq {
  border-top: 1px solid #ddd; }

/*end style faq page*/
/*style about 1 page*/
.content-about-page .text-about {
  padding-top: 6%; }
.content-about-page .text-about.ver1 {
  padding-left: 10%; }
.content-about-page .text-about .title-about {
  font-size: 55px; }
.content-about-page .text-about .des-about {
  font-size: 20px;
  width: 90%; }

/*end style about 1 page*/
/*style about 2 page*/
.collection-about-page .img-middle {
  padding-top: 9%; }
.collection-about-page .text-collection {
  padding-top: 10%; }
.collection-about-page .text-collection .title-about {
  font-size: 55px; }
.collection-about-page .text-collection .des-about {
  font-size: 18px; }
.collection-about-page .text-collection .link-collection {
  font-size: 16px;
  text-decoration: underline; }

.content-about-page-2 {
  border-bottom: 1px solid #ddd;
  padding-top: 150px;
  padding-bottom: 150px; }
.content-about-page-2 .title-content {
  font-size: 55px;
  margin-top: 0; }
.content-about-page-2 .des-content {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px; }
.content-about-page-2 .content {
  font-size: 18px;
  line-height: 1.5; }
.aboutus .banner_page.v2 .text_banner{
  top:32%;    
}
.aboutus .cuter .counter {
  padding: 10px 0; }
.aboutus .cuter .counter .counter1 {
  margin-left: 0;
  margin-right: 0; }
.aboutus .cuter .counter .counter1 .col-md-3 p {
  font-size: 14px;
  color: #cbcbcb;
  letter-spacing: 1px; }
.aboutus .cuter .counter .counter1 .col-md-3 .counte {
  font-weight: 300;
  color:var(--engoc-primary-color);
    font-size: 48px; }
.aboutus .title-testi{
  line-height:27px;
  color:var(--engoc-primary-color);
    font-weight: 300;
    }
.aboutus .slick-testimonial .slick-dots {
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
}
.aboutus .slick-testimonial .slick-dots li {
  width: 10px;
  height: 10px;
}
.aboutus .slick-testimonial .slick-dots li button{
  width: 10px;
  height: 10px;
  padding: 0;
}
.aboutus .slick-testimonial .slick-dots li button:before{
  line-height:10px;
  font-size:7px;
  width: 10px;
  height: 10px;
}
.aboutus .slick-testimonial .slick-dots li.slick-active button:before{
  opacity: 1;
  color: var(--engoc-primary-color);
    }
.aboutus .slick-testimonial .slick-dots li button:hover:before, .slick-testimonial .slick-dots li button:focus:before{
  opacity: 1;
  color: var(--engoc-primary-color);
    }
.aboutus .slick-testimonial .slick-prev:before {
  font-size:48px;
  color:#777777;
}
.aboutus .slick-testimonial .slick-next:before{
  font-size:48px;
  color:#777777;
}
.aboutus .content-tes p{
  color:#3c3c3c;
  font-weight:700;
}
.aboutus .content-tes p span{
  font-weight:400;
  line-height:30px;
  color:#cbcbcb;
}
.aboutus .content-tes h4{
  text-transform: inherit;
  line-height:30px;
  color:var(--engoc-color-main1);
    }
.aboutus .slick-testimonial{
  max-width:560px;
  margin:auto;
}
.aboutus .testimonia .content-tes img{
  margin:0 auto;
}
.aboutus .slick-team .slick-dots {
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
}
.aboutus .slick-team .slick-dots li {
  width: 10px;
  height: 10px;
}
.aboutus .slick-team .slick-dots li button{
  width: 10px;
  height: 10px;
  padding: 0;
}
.aboutus .slick-team .slick-dots li button:before{
  line-height:10px;
  font-size:7px;
  width: 10px;
  height: 10px;
}
.aboutus .slick-team .slick-dots li.slick-active button:before{
  opacity: 1;
  color: var(--engoc-primary-color);
    }
.aboutus .slick-team .slick-dots li button:hover:before, .slick-team .slick-dots li button:focus:before{
  opacity: 1;
  color: var(--engoc-primary-color);
    }

.aboutus .slick-team .slick-slide{
  padding:15px;
}
.aboutus .team{
  background:#f6f8f7;
  padding-bottom: 160px;
  padding-top: 120px;
}
.aboutus .name-team .name{
  line-height:27px;
  color:#3c3c3c;
  font-weight:700;
  background:#fff;
}
.aboutus .name-team .name span{
  font-weight:400;
  line-height:30px;
  color:#cbcbcb;
}

.aboutus .text_banner .button-about {
  width: 130px;
  height: 40px;
  line-height: 40px;
  border-radius: 999px;
  font-size: 12px;
  padding: 0;
  border: 0;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--engoc-color-main1);
    background: var(--engoc-color-main2);
      transition: all .3s ease;
      display:inline-block;
      }
.aboutus .text_banner .button-about:hover{
  background: var(--engoc-primary-color);
    font-weight: 600;
    color: #fff;
    }
.aboutus .banner_page.v2 .text_banner h1{
  text-transform: inherit;
  line-height: 60px;
}

.aboutus .banner_page.v2 .text_banner p{
  color:var(--engoc-primary-color);
    font-weight: 300;
    }  

@media (min-width:1024px){
  .aboutus .slick-testimonial .slick-prev{
    top:48%;
    left: -160px;
  }
  .aboutus .slick-testimonial .slick-next{
    top:48%;
    right: -160px;
  }
}

/*end style about 2 page*/
/*style blog page*/
.blog-page .sidebar form {
  margin-left: 40px; }
.blog-page .sidebar form input {
  height: 60px;
  padding-left: 30px;
  border-radius: 0;
  border: 1px solid #ddd;
  font-size: 18px; }
.blog-page .sidebar form button {
  position: absolute;
  right: 30px;
  top: 22px;
  border: 0;
  border-radius: 0;
  background: #fff; }
.blog-page .sidebar form button i {
  font-size: 18px; }
.blog-page .sidebar ul li {
  list-style-type: none; }
.blog-page .sidebar ul li .title {
  font-size: 28px;
  margin-bottom: 30px; }
.blog-page .sidebar ul li .link-collection {
  font-size: 18px;
  line-height: 2.3;
  color: #333;
  transition: all .3s ease; }
.blog-page .sidebar ul li .link-collection:hover {
  color: #ee9051; }
.blog-page .sidebar ul.post li .post-name {
  margin-top: -3px;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }
.blog-page .sidebar ul.post li .post-day {
  color: #158a54; }
.blog-page .sidebar ul.comment .column-80 {
  padding-left: 30px; }
.blog-page .sidebar ul.comment h4 {
  margin-top: 0; }
.blog-page .sidebar ul.comment p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px; }
.blog-page .sidebar ul.comment p a {
  color: #f1a674; }
.blog-page .sidebar-left form {
  margin-right: 40px;
  margin-left: 0; }
.blog-page .sidebar-left form input {
  height: 60px;
  padding-left: 30px;
  border-radius: 0;
  border: 1px solid #ddd;
  font-size: 18px; }
.blog-page .sidebar-left form button {
  position: absolute;
  right: 30px;
  top: 22px;
  border: 0;
  border-radius: 0;
  background: #fff; }
.blog-page .sidebar-left form button i {
  font-size: 18px; }
.blog-page .sidebar-left ul {
  padding-left: 0;
  padding-right: 30px; }
.blog-page .sidebar-left ul li {
  list-style-type: none; }
.blog-page .sidebar-left ul li .title {
  font-size: 28px;
  margin-bottom: 30px; }
.blog-page .sidebar-left ul li .link-collection {
  font-size: 18px;
  line-height: 2.3;
  color: #333;
  transition: all .3s ease; }
.blog-page .sidebar-left ul li .link-collection:hover {
  color: #ee9051; }
.blog-page .sidebar-left ul.post li .post-name {
  margin-top: -3px;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }
.blog-page .sidebar-left ul.post li .post-day {
  color: #158a54; }
.blog-page .sidebar-left ul.comment .column-80 {
  padding-left: 30px; }
.blog-page .sidebar-left ul.comment h4 {
  margin-top: 0; }
.blog-page .sidebar-left ul.comment p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px; }
.blog-page .sidebar-left ul.comment p a {
  color: #f1a674; }
.blog-page .content-blog .title-post {
  font-size: 28px; }
.blog-page .content-blog .title-post a {
  color: black;
  transition: all .3s ease; }
.blog-page .content-blog .title-post a:hover {
  color: #ee9051; }
.blog-page .content-blog .day-post {
  font-size: 18px; }
.blog-page .content-blog .des-post {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 65px;
  padding-top: 10px;
  width: 98%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }
.blog-page .content-blog .link-more {
  font-size: 16px;
  text-decoration: underline;
  color: black;
  transition: all .3s ease; }
.blog-page .content-blog .link-more:hover {
  color: #ee9051; }

.pagination li a {
  border: 0;
  border-radius: 0;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  color: #909090;
  transition: all .3s ease;
  font-size: 18px;
  margin-right: 10px; }
.pagination li a i {
  font-size: 14px; }
.pagination li a.active {
  color: black; }
.pagination li a.border {
  border: 1px solid #ddd; }
.pagination li a:hover {
  color: black;
  background: #fff; }

/*end blog page*/
/*------blog detail--------*/
.blog-detail-page .row.flex {
  justify-content: center; }
.blog-detail-page .title-post {
  font-size: 48px;
  margin-bottom: 25px; }
.blog-detail-page .day-post {
  font-size: 18px;
  margin-bottom: 50px; }
.blog-detail-page .des-post {
  font-size: 18px;
  line-height: 1.5; }
.blog-detail-page .des-post.des-post-special {
  padding: 60px 80px; }
.blog-detail-page .des-post.des-post-special img {
  left: 47px; }
.blog-detail-page .collection-post i {
  font-size: 18px;
  color: #ee9051; }
.blog-detail-page .collection-post span {
  font-size: 18px; }
.blog-detail-page .collection-post a {
  color: #909090;
  font-size: 18px; }
.blog-detail-page .view-post span {
  font-size: 18px; }
.blog-detail-page .view-post span i {
  font-size: 18px;
  color: #ee9051; }
.blog-detail-page .comment-post .title-comment-post {
  font-size: 55px; }
.blog-detail-page .comment-post .des-comment-post {
  font-size: 18px; }
.blog-detail-page .comment-post form textarea {
  height: 200px;
  resize: none;
  border-radius: 0;
  border: 1px solid #ddd;
  padding-left: 30px;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: unset; }
.blog-detail-page .comment-post form input {
  height: 60px;
  border-radius: 0;
  border: 1px solid #ddd;
  padding-left: 30px;
  font-size: 18px;
  margin-bottom: 20px;
  width: 49.1%;
  box-shadow: unset; }
.blog-detail-page .comment-post form button {
  font-size: 16px;
  color: #fff;
  border-radius: 0;
  border: 0;
  line-height: 60px;
  width: 230px;
  background: black;
  transition: all .3s ease; }
.blog-detail-page .comment-post form button:hover {
  background: #ee9051; }

/*----end--------*/
/*------style shop page-------*/
.shop-page .content-shop {
  width: 60%; }
.shop-page .content-shop .btn-function-shop .showing {
  font-size: 18px;
  color: #909090;
  margin-right: 25px; }
.shop-page .content-shop .btn-function-shop button {
  background: #fff;
  border: 0; }
.shop-page .content-shop .btn-function-shop button i {
  font-size: 18px;
  display: inline-block;
  padding: 10px;
  border: 1px solid #ddd;
  transition: all .3s ease; }
.shop-page .content-shop .btn-function-shop button:hover i {
  color: #ee9051; }
.shop-page .content-shop .btn-function-shop button.active i {
  color: #ee9051; }
.shop-page .sidebar {
  width: 40%; }
.shop-page .sidebar ul li {
  list-style-type: none; }
.shop-page .sidebar ul li .title {
  font-size: 28px;
  margin-bottom: 30px; }
.shop-page .sidebar ul li .link-collection {
  font-size: 18px;
  line-height: 2.3;
  color: #333;
  transition: all .3s ease; }
.shop-page .sidebar ul li .link-collection:hover {
  color: #ee9051; }
.shop-page .sidebar ul.category .accordion {
  padding: 0; }
.shop-page .sidebar ul.category .accordion:after {
  float: right; }
.shop-page .sidebar ul.price .range-p {
  font-size: 18px;
  color: #333; }
.shop-page .sidebar ul.price .range-p button {
  background: #fff;
  border: 0;
  border-radius: 0;
  font-size: 18px;
  transition: all .3s ease; }
.shop-page .sidebar ul.price .range-p button i {
  font-size: 18px;
  margin-right: 15px; }
.shop-page .sidebar ul.price .range-p button:hover {
  color: #ee9051; }
.shop-page .sidebar ul.popular li a {
  line-height: 40px;
  padding: 0 25px;
  border: 1px solid black;
  display: inline-block;
  margin-bottom: 10px; }
.shop-page .sidebar-left {
  width: 40%; }
.shop-page .sidebar-left ul li {
  list-style-type: none; }
.shop-page .sidebar-left ul li .title {
  font-size: 28px;
  margin-bottom: 30px; }
.shop-page .sidebar-left ul li .link-collection {
  font-size: 18px;
  line-height: 2.3;
  color: #333;
  transition: all .3s ease; }
.shop-page .sidebar-left ul li .link-collection:hover {
  color: #ee9051; }
.shop-page .sidebar-left ul.category .accordion {
  padding: 0; }
.shop-page .sidebar-left ul.category .accordion:after {
  float: right; }
.shop-page .sidebar-left ul.price .range-p {
  font-size: 18px;
  color: #333; }
.shop-page .sidebar-left ul.price .range-p button {
  background: #fff;
  border: 0;
  border-radius: 0;
  font-size: 18px;
  transition: all .3s ease; }
.shop-page .sidebar-left ul.price .range-p button i {
  font-size: 18px;
  margin-right: 15px; }
.shop-page .sidebar-left ul.price .range-p button:hover {
  color: #ee9051; }
.shop-page .sidebar-left ul.popular li a {
  line-height: 40px;
  padding: 0 25px;
  border: 1px solid black;
  display: inline-block;
  margin-bottom: 10px; }

/*----end--------*/
/*-----product detail------*/
.slick-product-detail button.slick-prev {
  display: none !important; }
.slick-product-detail button.slick-next {
  display: none !important; }

.slick-nav-product-detail button.slick-prev {
  display: none !important; }
.slick-nav-product-detail button.slick-next {
  display: none !important; }

.product-detail .info-product-detail .title-product {
  font-size: 36px;
  margin-top: 0; }
.product-detail .info-product-detail .price {
  font-size: 30px; }
.product-detail .info-product-detail .product-preview i {
  font-size: 18px;
  color: #ee9051; }
.product-detail .info-product-detail .product-preview span {
  font-size: 18px;
  color: #333; }
.product-detail .info-product-detail .product-preview span.line-space {
  top: -8px;
  margin: 0 5px; }
.product-detail .info-product-detail .select {
  width: 300px;
  text-transform: uppercase;
  margin-left: 0;
  padding: 25px;
  border: 1px solid #ddd; }
.product-detail .info-product-detail .select .select-styled {
  font-size: 14px;
  letter-spacing: 2px;
  font-family: "FuturaPT Demi";
  padding: 0 25px; }
.product-detail .info-product-detail .select .select-styled:after {
  top: 0px;
  right: 25px; }
.product-detail .info-product-detail .select .select-options {
  font-family: "FuturaPT Demi";
  font-size: 14px;
  top: 100%; }
.product-detail .info-product-detail .select .select-options li {
  text-indent: 25px; }
.product-detail .info-product-detail .btn-function .input-number {
  width: 140px;
  height: 60px;
  border: 1px solid #ddd;
  margin-right: 30px;
  font-size: 20px;
  text-align: left !important;
  padding-left: 25px; }
.product-detail .info-product-detail .btn-function .input-group-button {
  cursor: pointer; }
.product-detail .info-product-detail .btn-function .input-group-button.down-btn {
  right: 47px;
  bottom: 10px; }
.product-detail .info-product-detail .btn-function .input-group-button.up-btn {
  right: 50px;
  top: 10px; }
.product-detail .info-product-detail .btn-function form button.enj-add-to-cart-btn {
  width: 400px;
  line-height: 60px;
  border: 1px solid black;
  margin-right: 30px;
  letter-spacing: 1px;
  font-size: 16px;
  transition: all .3s ease; }
.product-detail .info-product-detail .btn-function form button.enj-add-to-cart-btn:hover {
  color: #ee9051;
  border: 1px solid #ee9051; }
.product-detail .info-product-detail .btn-function a {
  color: #333;
  display: inline-flex;
  width: 80px;
  line-height: 60px;
  justify-content: center;
  border: 1px solid #ddd;
  margin-right: 30px;
  transition: all .3s ease; }
.product-detail .info-product-detail .btn-function a i {
  font-size: 18px;
  padding-top: 20px; }
.product-detail .info-product-detail .btn-function a:hover {
  color: #ee9051;
  border: 1px solid #ee9051; }
.product-detail .info-product-detail .btn-tab {
  padding: 0;
  font-size: 24px; }
.product-detail .info-product-detail .des-tab {
  font-size: 18px; }
.product-detail .info-product-detail .review .title-review {
  font-size: 24px; }
.product-detail .info-product-detail .review .content-review {
  font-size: 18px; }
.product-detail .info-product-detail .form-review .title-form {
  font-size: 24px; }
.product-detail .info-product-detail .form-review .des-review {
  font-size: 18px; }
.product-detail .info-product-detail .form-review input {
  height: 60px;
  border-radius: 0;
  border: 1px solid #ddd;
  padding-left: 30px;
  font-size: 18px;
  width: 100%; }
.product-detail .info-product-detail .form-review textarea {
  height: 200px;
  border-radius: 0;
  border: 1px solid #ddd;
  padding-left: 30px;
  font-size: 18px;
  resize: none;
  width: 100%;
  padding-top: 30px; }
.product-detail .info-product-detail .form-review .rating {
  font-size: 24px; }
.product-detail .info-product-detail .form-review .rating i {
  font-size: 18px;
  color: #ee9051; }
.product-detail .info-product-detail .form-review button {
  line-height: 60px;
  color: #fff;
  background: black;
  width: 100%;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  transition: all .3s ease; }
.product-detail .info-product-detail .form-review button:hover {
  background: #ee9051; }
.product-detail .info-product-detail .info-more p {
  font-size: 18px; }
.product-detail .info-product-detail .info-more p a {
  color: #333;
  transition: all .3s ease; }
.product-detail .info-product-detail .info-more p a i {
  font-size: 18px; }
.product-detail .info-product-detail .info-more p a:hover {
  color: #ee9051; }

/*-------end------*/
/*-------style product detail 2------*/
.slick-nav-product-detail-vertical button.slick-prev {
  display: none !important; }
.slick-nav-product-detail-vertical button.slick-next {
  display: none !important; }

.slick-product-detail-vertical button.slick-prev {
  display: none !important; }
.slick-product-detail-vertical button.slick-next {
  display: none !important; }

.tab-content-detail .btn-tab {
  padding: 0;
  font-size: 24px; }
.tab-content-detail .des-tab {
  font-size: 18px;
  width: 90%; }
.tab-content-detail .review .title-review {
  font-size: 24px; }
.tab-content-detail .review .content-review {
  font-size: 18px; }
.tab-content-detail .form-review .title-form {
  font-size: 24px; }
.tab-content-detail .form-review .des-review {
  font-size: 18px; }
.tab-content-detail .form-review input {
  height: 60px;
  border-radius: 0;
  border: 1px solid #ddd;
  padding-left: 30px;
  font-size: 18px;
  width: 100%; }
.tab-content-detail .form-review textarea {
  height: 200px;
  border-radius: 0;
  border: 1px solid #ddd;
  padding-left: 30px;
  font-size: 18px;
  resize: none;
  width: 100%;
  padding-top: 30px; }
.tab-content-detail .form-review .rating {
  font-size: 24px; }
.tab-content-detail .form-review .rating i {
  font-size: 18px;
  color: #ee9051; }
.tab-content-detail .form-review button {
  line-height: 60px;
  color: #fff;
  background: black;
  width: 100%;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  transition: all .3s ease; }
.tab-content-detail .form-review button:hover {
  background: #ee9051; }
.tab-content-detail .btn-tab-product-detail {
  justify-content: center;
  display: flex;
  border: 0; }
.tab-content-detail .btn-tab-product-detail li.active a {
  color: #ee9051;
  border: 0; }
.tab-content-detail .btn-tab-product-detail li a {
  border: 0;
  color: black; }
.tab-content-detail .btn-tab-product-detail li a:hover {
  background: #fff; }

/*-------end------*/
.cart-table thead tr th {
  font-size: 20px; }
.cart-table thead tr th:first-child {
  padding-left: 0; }
@media (max-width: 767px) {
  .table-responsive {
    overflow: unset;
  }
  .cart-table tbody tr td {
    display: block;
    width: 100%;
    clear: both;
  }
  .cart-table tbody tr td .product-img {
    display: block;
    width: 100%;
    text-align: center;
  }
  .cart-table tbody tr td .product-info a {
    white-space: normal;
  }
  .cart-table tbody tr td .btn-del {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .cart-table tbody tr td .single-product-info, .cart-table tbody tr td .price, .cart-table tbody tr td .product-info {
    float: right;
  }
  .cart-table tbody tr td::after {
    content: attr(data-title);
    float: left;
    text-align: center;
    font-size: 14px;
    padding-right: 10px;
  }
}
.cart-table tbody tr td:first-child {
  padding-left: 0;
  padding-top: 20px;
  padding-bottom: 20px; }
.cart-table tbody tr td .product-info a {
  font-size: 24px; }
.cart-table tbody tr td .product-info p {
  font-size: 16px; }
.cart-table tbody tr td .product-info p span {
  color: #909090; }
.cart-table tbody tr td .price {
  font-size: 18px; }
.cart-table tbody tr td.product-remove {
  text-align: center; }
.cart-table tbody tr td.btn-fuction {
  margin-left: 10px; }
.cart-table tbody tr td.btn-fuction .input-number {
  width: 140px;
  height: 60px;
  border: 1px solid #ddd;
  font-size: 20px;
  text-align: left !important;
  padding-left: 25px; }
.cart-table tbody tr td.btn-fuction .down-btn {
  right: 22px;
  bottom: 8px; }
.cart-table tbody tr td.btn-fuction .up-btn {
  right: 25px;
  top: 10px; }
.cart-table tbody tr td.status .in-stock {
  font-size: 20px;
  color: #ee9051; }
.cart-table tbody tr td.status .out-stock {
  font-size: 20px;
  color: black; }

.table-cart-bottom .form-note h3 {
  font-size: 30px; }
.table-cart-bottom .form-note label {
  font-size: 18px; }
.table-cart-bottom .form-note textarea {
  width: 300px;
  border-radius: 0; }
.table-cart-bottom .cart-text {
  margin-bottom: 50px; }
.table-cart-bottom .cart-text .cart-element {
  justify-content: space-between;
  margin-bottom: 20px; }
.table-cart-bottom .cart-text p {
  font-size: 18px; }

.login_page h1 {
  font-size: 50px; }
.login_page label {
  font-size: 18px; }
.login_page input {
  height: 60px;
  padding-left: 30px;
  font-size: 18px;
  border-radius: 0;
  border: 1px solid #ddd;
  box-shadow: unset; }
.login_page button {
  letter-spacing: 1px; }

/*# sourceMappingURL=style-main.css.map */


/* --------------------------------------------------- style ciloe ----------------------------------------------------*/
#header .menu-main .column-20:nth-child(5){
  clear:left;
}
.img-logo{
  max-width:100px;
  height:auto;
  width:auto;
}
.hover-filter img{
  transition:all .3s ease;
}
.hover-filter:hover img{
  filter: grayscale(70%);
}
.hover-filter:hover .animate{
  transform:translateY(-5px);

}
.lt-1{
  letter-spacing: 1px;
}
.lt-2{
  letter-spacing: 2px;
}
.lt-3{
  letter-spacing: 3px;
}
.lt-6{
  letter-spacing: 6px;
}
.slider-home-fullwidth .table{
  display: table!important;
  height: 920px;
  position: relative;
  text-align: center;
  width: 100%;
  overflow: hidden;
  margin-bottom:0;
}
.slider-home-fullwidth .table .ciloe-inner{
  display: table-cell;
  vertical-align: bottom;
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider{
  display: inline-block;
  position: static;
  float: left;
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider .cat-content-inner:after{
  content: "";
  border-right: 1px solid rgba(0,0,0,.2);
  position: absolute;
  bottom: 0;
  right: 0;
  height: 99999em;
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider .img-slider{
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  opacity:0;
  transform:scale(1.2);
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider.active .img-slider{
  opacity:1;
  transform:scale(1);
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider .cat-content-inner{
  opacity: .4;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 80px 0;
}

.slider-home-fullwidth .table .ciloe-inner .btn-slider .cat-content-inner .link-cat{
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 30px;
  opacity: 0;
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider:hover .cat-content-inner{
  opacity:1;
  transform:translateY(-30px);
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider:hover .cat-content-inner .link-cat{
  opacity:1;
}
.slider-home-fullwidth .table .ciloe-inner .btn-slider:hover .img-slider{
  opacity:1;
  transform:scale(1);
}
.footer-v1 .img-logo {
  width:70px;
}
.footer-v1 form{
  max-width:530px;
}
.footer-v1 form input{
  border:0;
  border-bottom:1px solid #ddd;
  height: 30px;
  line-height: 30px;
  background: transparent;
  padding-left:0;
}
.footer-v1 form button{
  right:0;
  top:5px;
}
.footer-v1 h3{
  line-height:24px;
  margin-bottom:25px;
}
.footer-v1 .link-group-fv1{
  padding-top: 27px;
  padding-bottom: 25px;
  font-size: 16px;
}
.center{
  justify-content: center;
}
.social a{
  font-size:14px;
}
.header-v2 .topbar-right {
  background: #f3f3f3;
  height: 40px;
  border-radius: 40px;
  padding-top:10px;
}
@media (min-width: 1025px) and (max-width: 1299px) {
  .header-v2 .topbar-right {
    display: none;
  }
}
.header-v1 {
    padding-bottom: 50px;
    padding-top: 50px;
    /*     position: fixed; */
    width: 100%;
  }
.header-v1 .topbar-right {
  background: #fff;
  height: 40px;
  border-radius: 40px;
  padding-top:10px;
  float:left;
  margin-right:45px;
}
.header-v1 .topbar-right a {
  padding-left:15px;
}
.header-v2{
  padding-bottom: 28px;
  padding-top: 35px;
  width: 100%;
}
.header-v2 .header-midle{
  flex-direction: column;
}
.header-v2 .header-midle .logo{
  padding-bottom: 20px;
  padding-top: 25px;
}
.header-v2 .header-midle .menu-header-v2{
  padding-top: 10px;
}
.header-v2 #btn-search{
  padding-top: 25px;
}
.header-v2 .icon-main{
  padding-top: 25px;
}
.logo-header5{
  transition:.3s;
}
.logo-header5.logo-hidden{
  margin-bottom:0
}
#header .searchform{
  margin-top:25px;
}
#header .searchform input{
  width: 100%;
  height: 40px;
  border-radius:40px!important;
  padding-left:20px;
  background:#f3f3f3;
  border:none;
}
#header .searchform button{
  top:12px; 
  right:20px;
}
/* ------------------------------------home classic---------------------------- */
.slider-home-classic .img-bg-slider{
  transform:scale(1.1);
  transition: all 8s ease;
  min-height:250px;
  object-fit:cover;
}
.slider-home-classic .text-slider{
  left:8.4%;
  bottom: 11%;
}
.slider-home-classic .btn-slider{
  left:8.4%;
  top: 11%;
}

.slider-home-classic .text-slider p.text-animate-1{
  color:#828182;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(50px);
  font-weight: 600;
}
.slider-home-classic .text-slider p.text-animate-1 span{
  opacity:0.6;
  font-weight: 400;
}
.slider-home-classic .text-slider h1{
  font-size:56px;
  font-weight:600;
  transition: all 1.8s cubic-bezier(0.46, 0.46, 0.71, 0.69);
  opacity:0;
}
.slider-home-classic .text-slider h1.text-animate-1{
  transform: translateY(-80px);
}
.slider-home-classic .text-slider h1.text-animate-2{
  transform: translateX(-80px);
}
.slider-home-classic .text-slider h1.text-animate-3{
  transform: translateX(80px);
}

.slider-home-classic .btn-slider.v2{
  font-weight:500;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(50px);
}
.slider-home-classic .img-slider-1{
  bottom:0;
  right: 15%;
  opacity:0;
  transform: translateX(80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-classic .img-slider-2{
  bottom:0;
  right: 25%;
  opacity:0;
  transform: translateX(-80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-classic .slick-current.slick-active .img-bg-slider{
  transform: scale(1);
}
.slider-home-classic .slick-current.slick-active .img-slider-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-classic .slick-current.slick-active .img-slider-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-classic .slick-current.slick-active .text-slider p.text-animate-1{
  opacity:1;
  transform: translateY(0);
}
.slider-home-classic .slick-current.slick-active  .btn-slider.v2{
  opacity:1;
  transform: translateY(0);
}
.slider-home-classic .slick-current.slick-active .text-slider h1.text-animate-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-classic .slick-current.slick-active .text-slider h1.text-animate-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-classic .slick-current.slick-active .text-slider h1.text-animate-3{
  opacity:1;
  transform: translateX(0);
}
.slider-home-classic .js-slider-home-classic .slick-dots{
  bottom:11%;
  right:7%;
  text-align:left;
}
.slider-home-classic .js-slider-home-classic .slick-dots li{
  width: 30px;
  height: 30px;
  position:relative;
  margin-right:10px;
  overflow:hidden;
}
.slider-home-classic .js-slider-home-classic .slick-dots li a{
  font-weight: 600;
  color:#999999;
}
.slider-home-classic .js-slider-home-classic .slick-dots li.slick-active a{
  color:black;
}
.slider-home-classic .js-slider-home-classic .slick-dots li:before{
  content:'';
  display:inline-block;
  position:absolute;
  width:50px;
  height:1px;
  background:#999999;
  bottom:0;
}
.slider-home-classic .js-slider-home-classic .slick-dots li.slick-active:before{
  background:black;
}
.slider-home-classic .js-slider-home-classic .slick-dots li:hover::before{
  animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
  webkit-animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
}
.slider-home-classic .js-slider-home-classic .text-slider-right{
  right: 5%;
  bottom: 32%;
  transform: rotate(90deg);
}
.slider-home-classic .js-slider-home-classic .text-slider-right p{
  font-weight:700;
}
.slider-home-classic .js-slider-home-classic .text-slider-right p span{
  transform:translateY(-80px);
  opacity:0;
  transition: all .8s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-classic .js-slider-home-classic .slick-current.slick-active .text-slider-right p span{
  transform:translateY(0);
  opacity:1;
  display:inline-block;
}
.slider-home-classic .js-slider-home-classic .text-slider-right p:after{
  content:'';
  width:70px;
  height:1px;
  background:black;
  position:relative;
  display:inline-block;
  top: -5px;
  left: 20px;
}
/* ------------------------------------home v3---------------------------- */
.slider-home-v3 .img-bg-slider{
  transform:scale(1.1);
  transition: all 8s ease;
  min-height:360px;
  object-fit:cover;
}
.slider-home-v3 .text-slider{
  left:28.4%;
  bottom: 50%;
  transform: translateY(50%);
}
.slider-home-v3 .btn-slider{
  left:28.4%;
  top: 11%;
}

.slider-home-v3 .text-slider p.text-animate-1{
  color:#828182;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(50px);
  font-weight: 600;
}
.slider-home-v3 .text-slider p.text-animate-1 span{
  opacity:0.6;
  font-weight: 400;
}
.slider-home-v3 .text-slider h1{
  font-size:48px;
  font-weight:300;
  transition: all 1.2s cubic-bezier(0.93,-0.01, 0.93, 0.63);
  opacity:0;
}
.slider-home-v3 .text-slider h1.text-animate-1{
  transform: translateY(-80px);
}
.slider-home-v3 .text-slider h1.text-animate-2{
  transform: translateX(-80px);
}
.slider-home-v3 .text-slider h1.text-animate-3{
  transform: translateX(80px);
}
.slider-home-v3 .btn-slider{
  font-weight:600;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(-50px);
}
.slider-home-v3 .img-slider-1{
  bottom:0;
  right: 15%;
  opacity:0;
  transform: translateX(80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v3 .img-slider-2{
  bottom:0;
  right: 25%;
  opacity:0;
  transform: translateX(-80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v3 .slick-current.slick-active .img-bg-slider{
  transform: scale(1);
}
.slider-home-v3 .slick-current.slick-active .img-slider-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v3 .slick-current.slick-active .img-slider-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v3 .slick-current.slick-active .text-slider p.text-animate-1{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v3 .slick-current.slick-active  .btn-slider{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v3 .slick-current.slick-active .text-slider h1.text-animate-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v3 .slick-current.slick-active .text-slider h1.text-animate-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v3 .slick-current.slick-active .text-slider h1.text-animate-3{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v3 .js-slider-home-classic .slick-dots{
  bottom:9%;
  right:47%;
  text-align:left;
}
.slider-home-v3 .js-slider-home-classic .slick-dots li{
  width: 20px;
  height: 18px;
  position:relative;
  margin-right:10px;
  overflow:hidden;
}
.slider-home-v3 .js-slider-home-classic .slick-dots li a{
  font-weight: 600;
  color:#999999;
  font-size: 12px;
}
.slider-home-v3 .js-slider-home-classic .slick-dots li.slick-active a{
  color:black;
}
.slider-home-v3 .js-slider-home-classic .slick-dots li:before{
  content:'';
  display:inline-block;
  position:absolute;
  width:15px;
  height:1px;
  background:#999999;
  bottom:0;
}
.slider-home-v3 .js-slider-home-classic .slick-dots li.slick-active:before{
  background:black;
}
.slider-home-v3 .js-slider-home-classic .slick-dots li:hover::before{
  animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
  webkit-animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
}
.slider-home-v3 .js-slider-home-classic .text-slider-right{
  right: 5%;
  bottom: 32%;
  transform: rotate(90deg);
}
.slider-home-v3 .js-slider-home-classic .text-slider-right p{
  font-weight:700;
}
.slider-home-v3 .js-slider-home-classic .text-slider-right p span{
  transform:translateY(-80px);
  opacity:0;
  transition: all .8s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v3 .js-slider-home-classic .slick-current.slick-active .text-slider-right p span{
  transform:translateY(0);
  opacity:1;
  display:inline-block;
}
.slider-home-v3 .js-slider-home-classic .text-slider-right p:after{
  content:'';
  width:70px;
  height:1px;
  background:black;
  position:relative;
  display:inline-block;
  top: -5px;
  left: 20px;
}
/* ------------------------------------home v7---------------------------- */
.slider-home-v7 .img-bg-slider{
  transform:scale(1.1);
  transition: all 8s ease;
  min-height:360px;
  object-fit:cover;
}
.slider-home-v7 .text-slider{
  left:10%;
  right:10%;
  top:20%;
}

.slider-home-v7 .text-slider p.text-animate-1{
  color:#828182;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(50px);
  font-weight: 600;
}
.slider-home-v7 .text-slider p.text-animate-1 span{
  opacity:0.6;
  font-weight: 400;
}
.slider-home-v7 .text-slider h1{
  font-weight:600;
  transition: all 1.2s cubic-bezier(0.93,-0.01, 0.93, 0.63);
  opacity:0;
}
.slider-home-v7 .text-slider h1.text-animate-1{
  transform: translateY(-80px);
}
.slider-home-v7 .text-slider h1.text-animate-2{
  transform: translateX(-80px);
}
.slider-home-v7 .text-slider h1.text-animate-3{
  transform: translateX(80px);
}
.slider-home-v7 .btn-slider{
  font-weight:600;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(-50px);
}
.slider-home-v7 .img-slider-1{
  bottom:0;
  right: 15%;
  opacity:0;
  transform: translateX(80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v7 .img-slider-2{
  bottom:0;
  right: 25%;
  opacity:0;
  transform: translateX(-80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v7 .slick-current.slick-active .img-bg-slider{
  transform: scale(1);
}
.slider-home-v7 .slick-current.slick-active .img-slider-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v7 .slick-current.slick-active .img-slider-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v7 .slick-current.slick-active .text-slider p.text-animate-1{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v7 .slick-current.slick-active  .btn-slider{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v7 .slick-current.slick-active .text-slider h1.text-animate-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v7 .slick-current.slick-active .text-slider h1.text-animate-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v7 .slick-current.slick-active .text-slider h1.text-animate-3{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v7 .js-slider-home-classic .slick-dots{
  bottom:9%;
  right:47%;
  text-align:left;
}
.slider-home-v7 .js-slider-home-classic .slick-dots li{
  width: 20px;
  height: 18px;
  position:relative;
  margin-right:10px;
  overflow:hidden;
}
.slider-home-v7 .js-slider-home-classic .slick-dots li a{
  font-weight: 600;
  color:#999999;
  font-size: 12px;
}
.slider-home-v7 .js-slider-home-classic .slick-dots li.slick-active a{
  color:black;
}
.slider-home-v7 .js-slider-home-classic .slick-dots li:before{
  content:'';
  display:inline-block;
  position:absolute;
  width:15px;
  height:1px;
  background:#999999;
  bottom:0;
}
.slider-home-v7 .js-slider-home-classic .slick-dots li.slick-active:before{
  background:black;
}
.slider-home-v7 .js-slider-home-classic .slick-dots li:hover::before{
  animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
  webkit-animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
}
.slider-home-v7 .js-slider-home-classic .text-slider-right{
  right: 5%;
  bottom: 32%;
  transform: rotate(90deg);
}
.slider-home-v7 .js-slider-home-classic .text-slider-right p{
  font-weight:700;
}
.slider-home-v7 .js-slider-home-classic .text-slider-right p span{
  transform:translateY(-80px);
  opacity:0;
  transition: all .8s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v7 .js-slider-home-classic .slick-current.slick-active .text-slider-right p span{
  transform:translateY(0);
  opacity:1;
  display:inline-block;
}
.slider-home-v7 .js-slider-home-classic .text-slider-right p:after{
  content:'';
  width:70px;
  height:1px;
  background:black;
  position:relative;
  display:inline-block;
  top: -5px;
  left: 20px;
}
/* ------------------------------------home v4---------------------------- */
.slider-home-v4 .img-bg-slider{
  transform:scale(1.1);
  transition: all 8s ease;
  min-height:270px;
  object-fit:cover;
}
.slider-home-v4 .text-slider{
  left:28.4%;
  bottom: 50%;
  transform: translateY(50%);
}
.slider-home-v4 .btn-slider{
  left:28.4%;
  top: 11%;
}

.slider-home-v4 .text-slider p.text-animate-1{
  color:#828182;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(50px);
  font-weight: 600;
}
.slider-home-v4 .text-slider p.text-animate-1 span{
  opacity:0.6;
  font-weight: 400;
}
.slider-home-v4 .text-slider h1{
  font-weight:300;
  transition: all 1.2s cubic-bezier(0.93,-0.01, 0.93, 0.63);
  opacity:0;
}
.slider-home-v4 .text-slider h1.text-animate-1{
  transform: translateY(-80px);
}
.slider-home-v4 .text-slider h1.text-animate-2{
  transform: translateX(-80px);
}
.slider-home-v4 .text-slider h1.text-animate-3{
  transform: translateX(80px);
}
.slider-home-v4 .btn-slider{
  font-weight:600;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(-50px);
}
.slider-home-v4 .img-slider-1{
  bottom:0;
  right: 15%;
  opacity:0;
  transform: translateX(80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v4 .img-slider-2{
  bottom:0;
  right: 25%;
  opacity:0;
  transform: translateX(-80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v4 .slick-current.slick-active .img-bg-slider{
  transform: scale(1);
}
.slider-home-v4 .slick-current.slick-active .img-slider-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v4 .slick-current.slick-active .img-slider-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v4 .slick-current.slick-active .text-slider p.text-animate-1{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v4 .slick-current.slick-active  .btn-slider{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v4 .slick-current.slick-active .text-slider h1.text-animate-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v4 .slick-current.slick-active .text-slider h1.text-animate-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v4 .slick-current.slick-active .text-slider h1.text-animate-3{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v4 .js-slider-home-classic .slick-dots{
  bottom:9%;
  right:47%;
  text-align:left;
}
.slider-home-v4 .js-slider-home-classic .slick-dots li{
  width: 20px;
  height: 18px;
  position:relative;
  margin-right:10px;
  overflow:hidden;
}
.slider-home-v4 .js-slider-home-classic .slick-dots li a{
  font-weight: 600;
  color:#999999;
  font-size: 12px;
}
.slider-home-v4 .js-slider-home-classic .slick-dots li.slick-active a{
  color:black;
}
.slider-home-v4 .js-slider-home-classic .slick-dots li:before{
  content:'';
  display:inline-block;
  position:absolute;
  width:15px;
  height:1px;
  background:#999999;
  bottom:0;
}
.slider-home-v4 .js-slider-home-classic .slick-dots li.slick-active:before{
  background:black;
}
.slider-home-v4 .js-slider-home-classic .slick-dots li:hover::before{
  animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
  webkit-animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
}
.slider-home-v4 .js-slider-home-classic .text-slider-right{
  right: 5%;
  bottom: 32%;
  transform: rotate(90deg);
}
.slider-home-v4 .js-slider-home-classic .text-slider-right p{
  font-weight:700;
}
.slider-home-v4 .js-slider-home-classic .text-slider-right p span{
  transform:translateY(-80px);
  opacity:0;
  transition: all .8s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v4 .js-slider-home-classic .slick-current.slick-active .text-slider-right p span{
  transform:translateY(0);
  opacity:1;
  display:inline-block;
}
.slider-home-v4 .js-slider-home-classic .text-slider-right p:after{
  content:'';
  width:70px;
  height:1px;
  background:black;
  position:relative;
  display:inline-block;
  top: -5px;
  left: 20px;
}
/* ------------------------------------home v8---------------------------- */
.slider-home-v8 .img-bg-slider{
  transform:scale(1.1);
  transition: all 8s ease;
  min-height:280px;
  object-fit:cover;
}
.slider-home-v8 .text-slider{
  left:28.4%;
  bottom: 50%;
  transform: translateY(50%);
}
.slider-home-v8 .btn-slider{
  left:28.4%;
  top: 11%;
}

.slider-home-v8 .text-slider p.text-animate-1{
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(-50px);
  font-weight: 300;
  letter-spacing: 1px;
}
.slider-home-v8 .text-slider p.text-animate-1 span{
  opacity:0.6;
  font-weight: 400;
}
.slider-home-v8 .text-slider h1{
  font-weight:500;
  transition: all 1.2s cubic-bezier(0.93,-0.01, 0.93, 0.63);
  opacity:0;
  letter-spacing: 1px;
  font-size: 30px;
}
.slider-home-v8 .text-slider h1.text-animate-1{
  transform: translateY(-80px);
}
.slider-home-v8 .text-slider h1.text-animate-2{
  transform: translateX(-80px);
}
.slider-home-v8 .text-slider h1.text-animate-3{
  transform: translateX(80px);
}
.slider-home-v8 .btn-slider{
  font-weight:500;
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
  opacity:0;
  transform: translateY(-50px);
}
.slider-home-v8 .img-slider-1{
  bottom:0;
  right: 15%;
  opacity:0;
  transform: translateX(80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v8 .img-slider-2{
  bottom:0;
  right: 25%;
  opacity:0;
  transform: translateX(-80px);
  transition: all 1.2s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v8 .slick-current.slick-active .img-bg-slider{
  transform: scale(1);
}
.slider-home-v8 .slick-current.slick-active .img-slider-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v8 .slick-current.slick-active .img-slider-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v8 .slick-current.slick-active .text-slider p.text-animate-1{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v8 .slick-current.slick-active  .btn-slider{
  opacity:1;
  transform: translateY(0);
}
.slider-home-v8 .slick-current.slick-active .text-slider h1.text-animate-1{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v8 .slick-current.slick-active .text-slider h1.text-animate-2{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v8 .slick-current.slick-active .text-slider h1.text-animate-3{
  opacity:1;
  transform: translateX(0);
}
.slider-home-v8 .js-slider-home-classic .slick-dots{
  bottom:9%;
  right:47%;
  text-align:left;
}
.slider-home-v8 .js-slider-home-classic .slick-dots li{
  width: 20px;
  height: 18px;
  position:relative;
  margin-right:10px;
  overflow:hidden;
}
.slider-home-v8 .js-slider-home-classic .slick-dots li a{
  font-weight: 600;
  color:#999999;
  font-size: 12px;
}
.slider-home-v8 .js-slider-home-classic .slick-dots li.slick-active a{
  color:black;
}
.slider-home-v8 .js-slider-home-classic .slick-dots li:before{
  content:'';
  display:inline-block;
  position:absolute;
  width:15px;
  height:1px;
  background:#999999;
  bottom:0;
}
.slider-home-v8 .js-slider-home-classic .slick-dots li.slick-active:before{
  background:black;
}
.slider-home-v8 .js-slider-home-classic .slick-dots li:hover::before{
  animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
  webkit-animation: line-animate .8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
}
.slider-home-v8 .js-slider-home-classic .text-slider-right{
  right: 5%;
  bottom: 32%;
  transform: rotate(90deg);
}
.slider-home-v8 .js-slider-home-classic .text-slider-right p{
  font-weight:700;
}
.slider-home-v8 .js-slider-home-classic .text-slider-right p span{
  transform:translateY(-80px);
  opacity:0;
  transition: all .8s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-v8 .js-slider-home-classic .slick-current.slick-active .text-slider-right p span{
  transform:translateY(0);
  opacity:1;
  display:inline-block;
}
.slider-home-v8 .js-slider-home-classic .text-slider-right p:after{
  content:'';
  width:70px;
  height:1px;
  background:black;
  position:relative;
  display:inline-block;
  top: -5px;
  left: 20px;
}
.btn-section {
  line-height: 40px;
  border-radius: 999px;
  font-size: 12px;
  padding: 11px 31px;
  letter-spacing: 0.3px;
  border: 0;
  font-weight: 600;
  color: var(--engoc-color-main1);
    background: var(--engoc-color-main2);
      transition: all .3s ease;
      }
.btn-section:hover {
  background: var(--engoc-primary-color);
    font-weight: 600;
    color: #fff;
    }
@media(min-width:1025px){
  .ciloe-title-section2 h1{
    font-size:48px;
  }
}
.ciloe-title-section .flex{
  justify-content: space-between;
}
.ciloe-title-section .flex h1{
  font-size:40px;
  font-weight:300;
}
.ciloe-title-section .flex a{
  font-size:12px;
  font-weight:600;
  overflow: hidden;
}
.ciloe-title-section .flex a:before{
  content:'';
  display:inline-block;
  width:90px;
  height:2px;
  background:#999999;
  position:absolute;
  bottom: 40px;
}
.ciloe-title-section .flex a:after{
  content: "\f0da";
  font-family: FontAwesome;
  margin-left: 10px;
  font-size: 13px;
  display:inline-block;
}
.ciloe-title-section .flex a:hover::before{
  background:var(--engoc-primary-color);
    animation: line-animate2 .8s ease;
    webkit-animation: line-animate2 .8s ease;

    }
.ciloe-title-section .flex a:hover::after{
  color:var(--engoc-primary-color);  
    }
.ciloe-title-section h2{
  text-transform: inherit;
}
.product .img-product .img-product-hover{
  top:0;
  left:0;
  opacity:0;
  transition:all .3s ease;
}
.product .img-product img{
  transition:all .3s ease;
}
.product:hover .img-product >a img:first-child{
  opacity:0;
}
.product:hover .img-product .img-product-hover{
  opacity:1;
}
.product .info-product .title-product{
  font-weight:400;
  justify-content: space-between;
  padding-bottom:10px;
}
@media (min-width:1200px){
  .product-col-5{
    width:20%;
  }
  .product-col-5:nth-child(5n+1){
    clear:left
  }
  .product-col-5:nth-child(6n+1){
    clear:none;
  }
}
h1,h2,h3,h4,h5{
  font-weight:300;
  color: var(--engoc-color-main1);
    }
.timer-2 ul{
  display:flex;
  justify-content: center;
}
.timer-2 ul li p{
  line-height:110px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:var(--engoc-primary-color);
    color:#fff;
    font-size:35px;
    margin:20px 15px;

    }
.timer-2 ul li p b{
  font-weight:300 !important;
}
.timer-2 ul li span{
  text-transform:uppercase;
  letter-spacing: 3px;
  font-size:12px;
  font-weight:600;
  color:#999999;
}
.deal-classic .img-bg img{
  min-height:360px;
  object-fit: cover;
}
.deal-classic h1{
  font-size:50px;
  margin-bottom:30px;
}
.deal-classic .des-deal-classic{
  margin-bottom:30px;
}
.deal-classic .info{
  top:0;
  padding-top:6%;
  right: 0;
}
.deal-classic:hover img{
  transform:scale(1.1);
}
.slick-product-top-sale .slick-dots,.collection_pinmapper .slick-top-collection .slick-dots{
  left: 50%;
  transform: translateX(-50%);
}
.collection_pinmapper .slick-top-collection .slick-dots{
  bottom:-16%;
}
.slick-product-top-sale .slick-dots li a,.collection_pinmapper .slick-top-collection .slick-dots li a{
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #b2b2b2;
  border-radius: 50%;
  transition:all .3s ease;
}
.slick-product-top-sale .slick-dots .slick-active a,.collection_pinmapper .slick-top-collection .slick-dots .slick-active a{
  content: '';
  display: inline-block;
  width: 25px;
  height: 6px;
  background: var(--engoc-primary-color);
    border-radius: 20px;
    }
.slick-Testimonal .slick-dots{
  left: 50%;
  bottom:-80px;
  transform: translateX(-50%);
}
.slick-Testimonal .slick-dots li a{
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #b2b2b2;
  border-radius: 50%;
  transition:all .3s ease;
}
.slick-Testimonal .slick-dots .slick-active a{
  content: '';
  display: inline-block;
  width: 25px;
  height: 6px;
  background: var(--engoc-primary-color);
    border-radius: 20px;
    }
.slick-Testimonal button:hover{
  background:var(--engoc-color-main2);
    }
.slick-Testimonal .slick-prev{
  top: 30%;
  left:-100px;
  width: 32px;
  height: 32px;
  background:#f3f3f3;
  border-radius:50%;
  transition: .3s;
}

.slick-Testimonal .slick-prev:before {
  font-size:14px;
}

.slick-Testimonal .slick-next{
  top: 30%;
  right:-100px;
  width: 32px;
  height: 32px;
  background:#f3f3f3;
  border-radius:50%;
  transition: .3s;  
}
.slick-Testimonal .slick-next:before {
  font-size:14px;
}
.slick-Testimonal .des-comment{
  font-size:18px;
  line-height:40px;
}
.slick-Testimonal .flex .flex-col{
  flex-direction: column;
  margin-left:20px;
}





.slick-Testimonal4 .slick-dots{
  left: 50%;
  bottom:10px;
  transform: translateX(-50%);
}
.slick-Testimonal4 .slick-dots li{
  margin:0;
}
.slick-Testimonal4 .slick-dots li a{
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #b2b2b2;
  border-radius: 50%;
  transition:all .3s ease;
}
.slick-Testimonal4 .slick-dots .slick-active button:before{
  color: var(--engoc-primary-color);
    }
.slick-Testimonal4 .slick-dots li button:hover:before{
  color: var(--engoc-primary-color);
    }
.slick-Testimonal4 .slick-prev{
  top: 40%;
  left:-100px;
  width: 32px;
  height: 32px;
  border-radius:50%;
  transition: .3s;
}

.slick-Testimonal4 .slick-prev:before {
  font-size:36px;
}
.slick-Testimonal4 .slick-next{
  top: 40%;
  right:-100px;
  width: 32px;
  height: 32px;
  border-radius:50%;
  transition: .3s;  
}
.slick-Testimonal4 .slick-next:before {
  font-size:36px;
}
.slick-Testimonal4 .slick-prev:before, .slick-Testimonal4 .slick-next:before{
  opacity: 0.2;
}
.slick-Testimonal4 .slick-prev:hover:before, .slick-Testimonal4 .slick-next:hover:before{
  opacity: 0.5;
}
.slick-Testimonal4 .des-comment{
  font-size:18px;
  line-height:40px;
}
.slick-Testimonal4 .flex .flex-col{
  flex-direction: column;
  margin-left:20px;
}
.ciloe-btn-default:after{
  content: "\f0da";
  font-family: FontAwesome;
  margin-left: 10px;
  font-size: 13px;
  display:inline-block;
}
.ciloe-btn-default-2:after{
  content: "\f0da";
  font-family: FontAwesome;
  margin-left: 10px;
  font-size: 13px;
  display:inline-block;
}
.ciloe-btn-default-2:before{
  content: "";
  position:absolute;
  display:inline-block;
  bottom: 0;
  width:80px;
  height:2px;

}
.ciloe-btn-default-2{
  padding-bottom:5px;
  overflow:hidden;
}
.ciloe-btn-default-2:hover::before{
  animation: line-animate .8s ease;
  -webkit-animation: line-animate .8s ease;
}
/*-------------------------------- home clean ----------------------------------*/
.header-v1 .icon-main .btn-push-menu,.header-v3 .icon-main .btn-push-menu{
  padding-top:5px;
}
.header-v3 {
  /*  position: fixed; */
}
.header-v3 .space_top_bot_20{
  padding-top: 22px;
  padding-bottom: 22px;
}
.tab-pd-clean .title-tab,.tab-pd-clean .title-tab-2{
  border-bottom:0;
  margin-bottom:60px;
}
.tab-pd-clean .title-tab li{
  margin: 0 7px;
}
.tab-pd-clean .title-tab li a{
  padding: 18px 50px;
  font-weight:500;
  border-radius: 40px;
  margin-bottom:20px;
  border: 1px solid #eaeaea;
}
.tab-pd-clean .title-tab li.active a:hover,.tab-pd-clean .title-tab li.active a:focus{
  border: 1px solid #eaeaea;
}
.tab-pd-clean .title-tab li.active a{
  box-shadow:0 5px 18px rgba(0,0,0,.1);
}
.tab-pd-clean .title-tab li a:hover{
  box-shadow:0 5px 18px rgba(0,0,0,.1);
}
#loadMore:hover i{
  animation:ciloe-rotate 1.2s infinite;
  -webkit-animation: ciloe-rotate 1.2s infinite;
  animation-timing-function: linear;
}
@media (min-width:1200px){
  .tab-pd-clean .tab-content .col-lg-2{
    width:20%;
  }
  .tab-pd-clean .tab-content .col-lg-2:nth-child(5n+1){
    clear:left;
  }
  .tab-pd-clean .tab-content .col-lg-2:nth-child(6n+1){
    clear:none;
  }
  .footer-v3{
    padding:100px 15px 0 15px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .footer-v3{
    padding-top: 50px;
  }
}

/*-------------------------------- home minimal ----------------------------------*/
.header-v4 .space_top_bot_20{
  padding-top: 22px;
  padding-bottom: 22px;
}
.header-v4 .menu-main li a.clear_left{
  padding-left:0;
}
.header-v5 .space_top_bot_20{
  padding-top: 22px;
  padding-bottom: 22px;
}
.slider-home-classic .js-slider-home-clean .slick-dots{
  bottom:6%;
  left:50%;
  transform:translateX(-50%);
}
.slider-home-classic .js-slider-home-clean .slick-dots li{
  width:25px;
  position:relative;
  margin:0 5px;
  overflow:hidden;
}
.slider-home-classic .js-slider-home-clean .slick-dots li button:before{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:#666;
  transition:all .3s ease;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
}
.slider-home-classic .js-slider-home-clean .slick-dots li.slick-active button:before{
  width:25px;
  border-radius:30px;
  background:var(--engoc-primary-color);
    }


.slider-home-classic .js-slider-home-clean .text-slider-right{
  right: 5%;
  bottom: 32%;
  transform: rotate(90deg);
}
.slider-home-classic .js-slider-home-clean .text-slider-right p{
  font-weight:700;
}
.slider-home-classic .js-slider-home-clean .text-slider-right p span{
  transform:translateY(-80px);
  opacity:0;
  transition: all .8s cubic-bezier(0.71,-0.29, 0.72, 0.75);
}
.slider-home-classic .js-slider-home-clean .slick-current.slick-active .text-slider-right p span{
  transform:translateY(0);
  opacity:1;
  display:inline-block;
}
.slider-home-classic .js-slider-home-clean .text-slider-right p:after{
  content:'';
  width:70px;
  height:1px;
  background:black;
  position:relative;
  display:inline-block;
  top: -5px;
  left: 20px;
}
/*-------------------------------- responsive ----------------------------------*/
@media (max-width: 1400px){
  .slider-home-classic{
    margin-bottom:50px;
  }
  .slider-home-classic .text-slider{
    bottom:18%;
  }
  .slider-home-classic .js-slider-home-classic .text-slider-right{
    right: -10%;
  }
  .slider-home-classic .js-slider-home-clean .text-slider-right{
    right: -10%;
  }
  .deal-classic h1{
    font-size: 40px;
    margin-bottom: 10px;
  }
  .deal-classic .des-deal-classic{
    margin-bottom: 10px;
  }
  .timer-2 ul li p{
    line-height:80px;
    width:80px;
    height:80px;
    font-size:25px; 
  }
  .instagram .container_340{
    padding: 0 150px !important;
  }
  .footer-v4 .content-2 form{
    width:90% !important;
  }
}
@media (max-width: 1024px){
  .header-v1 {
    padding: 25px 0;
  }
  .slider-home-v3 .text-slider h1{
    font-size:36px;}
  .slider-home-v3 .text-slider{
    left:14.4%;}
  .slider-home-v7 .text-slider h1{
    font-size:36px;}
  #header{
    position:relative;
    left: inherit;
    right: inherit;
  }
  #header .icon-pushmenu{
    padding-top:2px;
  }
  #header .logo_header{
    position:relative;
    bottom:4px;
    display: flex;
    justify-content: center;
  }
  #header .form_search_mobile input{
    height:50px;
    background:#f6f6f6;
    border: 1px solid #e8e8e8;
  }
  #header .form_search_mobile button{
    right: 15px;
    top: 15px;
    opacity: .5;
  }
  .footer-v1 .fv1_social .social{
    float: unset !important;
    justify-content: center;
  }
  .footer-v1 .fv1-group-link{
    border:0;
  }
  .ciloe-title-section{
    padding-left:35px;
  }
  .ciloe-title-section:before{
    display:none;
  }

  .timer-2 ul li p{
    line-height:50px;
    width:50px;
    height:50px;
    font-size:18px; 
  }
  .timer-2{
    margin-bottom:40px;
  }
  .instagram .container_340{
    padding: 0 15px !important;
  }
  .footer-v2{
    text-align:center;
  }
  .footer-v2 .social{
    float: unset !important;
    justify-content: center;
  }
  .slider-home-classic .text-slider h1{
    font-size:36px;
  }
  .banner .text-banner{
    top:15% !important;
  }
  .banner .text-banner.v2{
    width:80%;
  }
  .footer-v3{
    padding:30px 15px 20px 0;
  }
  .header-v2 .header-midle .logo{
    padding-bottom:0;
  }
}
@media (max-width: 991px){
  .slider-home-v3 .text-slider h1{
    font-size:30px;}
  .slider-home-v7 .text-slider h1{
    font-size:30px;}
  .banner .text-banner h2{
    font-size:22px;
  }
  .banner .text-banner .line{
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
@media (max-width: 767px){
  .footer-v2 .menu-footer-v2{
    padding:0;
  }
  .slider-home-fullwidth .table .ciloe-inner{
    vertical-align: middle;
  }
  .slider-home-fullwidth .table .ciloe-inner .btn-slider{
    width:100%;
  }
  .slider-home-v3 .text-slider{
    left:10.4%;}
  .tab-pd-clean .title-tab{
    flex-direction: column;
  }
  .tab-pd-clean .title-tab li{
    display: inline-flex;
    justify-content: center;
  }
  .footer-v4 .flex.row{
    flex-direction: column-reverse;
  }
  .footer-v4 .content-1 ul.social{
    justify-content: center;
    padding-bottom:50px;
  }
  .footer-v4 .content-1 .margin_bottom_30{
    text-align: center;
  }
  .footer-v4 .content-1 .copy_fv4{
    text-align: center;
  }
  .footer-v4 .content-2 h1{
    text-align: center;
  }
  .footer-v4 .content-2 p{
    text-align: center;
  }
}
@media (max-width: 1024px){
  .header-v2{
    padding-top:0;
  }
}
@media (max-width: 567px){
  .slider-home-v3 .text-slider{
    left:7.4%;}
  .footer-v3 .menu-footer.right{
    float: inherit!important;
  }
  .footer-v3 .menu-footer.right li{
    padding-right:20px;
  }
  .header-v2{
    padding-top:0;
  }
  .form-search{
    padding: 30% 0 0 0;
  }
  .footer-v1 .form-newletter{
    border:0;
  }
  .deal-classic{
    padding:0;
  }
  .instagram .flex{
    flex-direction: column;
  }
  .instagram .flex .content-insta{
    margin-right:0;
  }
  .slider-home-classic .js-slider-home-classic .slick-dots{
    bottom:0;
  }
  .slider-home-classic .img-slider-1{
    right:0;
  }
  .slider-home-classic .img-slider-2{
    right:0;
  }
  .slider-home-classic .text-slider{
    left: 5%;
  }
  .slider-home-classic .text-slider .btn-ciloe{
    padding: 15px 30px;
  }
  .slider-home-classic .text-slider .btn-ciloe-2{
    padding: 10px 30px;
  }
  .ciloe-title-section .flex a:before{
    bottom: 15px;
  }
  .ciloe-title-section .flex h1{
    font-size: 26px;
    margin-bottom:10px;
  }
  .ciloe-title-section p.fz-18{
    font-size: 15px;
  }
  .menu-footer-v2 .menu-footer ul li{
    padding-right:15px;
  }
  .slider-home-classic .text-slider h1{
    font-size:24px;
  }
  .slider-home-v3 .text-slider h1{
    font-size:24px;
  }
  .deal-classic h1{
    font-size:36px;
  }
  .slider-home-classic .text-slider h1.text-animate-3{
    margin-bottom:20px;
  }
  .newletter .form-newletter form.column-50{
    width:90%;
  }
  .header-v3 .space_top_bot_20{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header-v4 .space_top_bot_20{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .footer-v4 .menu-footer li.space_right_30{
    padding-right: 20px;
  }
  .header-v5 .space_top_bot_20{
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 320px){
  .banner .text-banner{
    top: 10% !important;
  }
  .banner .text-banner h2{
    font-size: 14px;
  }
}
/* style push menu */
.menu-home5 {
  height: 100%;
  transform: translate(-100%, 0);
  transform: translate3d(-108%, 0, 0);
  transition: transform .4s ease;
  transform-origin: top left; }
.menu-home5.pushmenu-open {
  transform: translate(-100%, 0);
  transform: translate3d(-100%, 0, 0); }
@media (max-width: 320px) {
  .menu-home5.pushmenu-open {
    transform: translate(0, 0);
    transform: translate3d(0, 0, 0); } }

.box-mobile-menu-inner {
  height: 100%; }
.box-mobile-menu-inner .close-menu-mobile {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  z-index: 102;
  width: 100%;
  line-height: 48px;
  height: 45px;
  text-align: left;
  display: block;
  padding-left: 40px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  background: var(--engoc-primary-color);
    text-transform: uppercase;
    font-weight: 500; }
.box-mobile-menu-inner .close-menu-mobile:before, .box-mobile-menu-inner .close-menu-mobile:after {
  border-bottom: 1px solid;
  content: "";
  left: 14px;
  position: absolute;
  top: 21px;
  width: 19px; }
.box-mobile-menu-inner .close-menu-mobile:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.box-mobile-menu-inner .close-menu-mobile:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }
.box-mobile-menu-inner .tab-content {
  height: 100%; }
.box-mobile-menu-inner .my-account-wrap {
  padding: 20px 20px 0 20px; }
.box-mobile-menu-inner .my-account-wrap h3 {
  letter-spacing: 0.3em;
  font-size: 14px;
  margin-bottom: 25px; }
.box-mobile-menu-inner .spec {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--engoc-color-main1);
    text-align: center;
    overflow: hidden;
    margin: 40px 0px 10px; }
.box-mobile-menu-inner .spec span {
  position: relative;
  padding: 0px 10px; }
.box-mobile-menu-inner .spec span:before {
  content: "";
  border-top: 1px solid #e4e4e4;
  position: absolute;
  top: 5px;
  right: 100%;
  width: 9999em; }
.box-mobile-menu-inner .spec span:after {
  content: "";
  border-top: 1px solid #e4e4e4;
  position: absolute;
  top: 5px;
  left: 100%;
  width: 9999em; }
.mobile-back-nav-wrap {
  border-bottom: 1px solid #e7e7e7; }
.mobile-back-nav-wrap .back-menu {
  position: relative;
  display: none;
  height: 45px;
  width: 45px;
  float: left; }
.mobile-back-nav-wrap .back-menu:before {
  content: '';
  position: absolute;
  top: 21px;
  left: 14px;
  margin: auto;
  display: block;
  width: 18px;
  border-bottom: 1px solid; }
.mobile-back-nav-wrap .back-menu:after {
  content: '';
  position: absolute;
  top: 18px;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  left: 13px;
  transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg); }
.mobile-back-nav-wrap .box-title {
  display: none;
  width: -webkit-calc(100% - 90px);
  width: -moz-calc(100% - 90px);
  width: calc(100% - 90px);
  font-weight: 600;
  font-size: 11px;
  color: var(--engoc-color-main1);
    text-transform: uppercase;
    padding: 12px 0 10px 5px;
    letter-spacing: 3px;
    line-height: 24px;
    margin-left: 45px;
    margin-right: 45px; }
.nav-home5 {
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
.nav-home5 > li {
  display: inline-block;
  position: static;
  float: left;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #e6e6e6; }
.nav-home5 > li > a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--engoc-color-main1);
    position: relative;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
    line-height: 12px;
    padding: 18px 20px;
    padding-right: 0;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 51px);
    position: relative;
    z-index: 2; }
.nav-home5 > li.mobile-active > .menu-level1 {
  left: 0 !important;
  z-index: 101; }
.nav-home5 .menu-level1 {
  padding: 0;
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  z-index: 0;
  background-color: #FFF; }
.nav-home5 .menu-level1 > .level2 {
  display: inline-block;
  position: static;
  float: left;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #e6e6e6; }
.nav-home5 .menu-level1 > .level2 > a {
  display: inline-block;
  vertical-align: middle;
  line-height: 12px;
  padding: 18px 20px;
  width: calc(100% - 51px); }
.nav-home5 .menu-level1 .level1 {
  padding: 20px 25px 40px 25px; }
.nav-home5 .menu-level1 .level1 .level2 {
  padding-bottom: 13px; }
.nav-home5 .menu-level1 .level1 .level2 > a {
  color: var(--engoc-color-main1);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 0 8px 0;
    margin-bottom: 15px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: block; }
.nav-home5 .menu-level1 .level1 .level2 > a span.line {
  border-bottom: 1px solid var(--engoc-primary-color);
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
    display:inline-block;
    width: 50px; }
.nav-home5 .menu-level1.style1 {
  padding-bottom: 60px; }
.nav-home5 .menu-level1.style1 > .level2 {
  padding-bottom:30px;
  border: 0; }
.nav-home5 .menu-level-2 .level3 {
  display: inline-block;
  position: static;
  overflow: hidden;
  width: 100%; }
.nav-home5 .menu-level-2 .level3 > a {
  font-size: 16px;
  text-transform: capitalize;
  line-height: 24px;
  display: block;
  padding: 5px 0;
  width: calc(100% - 51px); }
.nav-home5 .demo-img, .nav-home5 .demo-text {
  text-align: center; }
.nav-home5 .demo-img img {
  margin: 0 auto; }
.nav-home5 .demo-img:hover .demo-text a {
  color: var(--engoc-primary-color); }
.mn-mobile-content-tab {
  overflow: hidden;
  width: 100%;
  padding-top: 57px;
  height: -webkit-calc(100% - 45px);
  height: -moz-calc(100% - 45px);
  height: calc(100% - 45px);
  -webkit-overflow-scrolling: touch; }
.box-tabs-nav-wrap {
  position: absolute;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #e7e7e7; }
.box-tabs-nav-wrap .tabs li {
  padding-left: 20px;
  text-align: left;
  width: 50%;
  float: left;
  text-transform: uppercase;
  height: 58px; }
.box-tabs-nav-wrap .tabs li a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }
.box-tabs-nav-wrap .tabs li.active {
  color: #FFF;
  background: var(--engoc-color-main1);
    border-bottom: 1px solid var(--engoc-color-main1); }
.box-tabs-nav-wrap .tabs li.active .nav-text {
  color: #FFF; }
.box-tabs-nav-wrap .tabs li.active .nomos-iconbar {
  background: #FFF; }
.box-tabs-nav-wrap .tabs li.active .nomos-iconbar:before, .box-tabs-nav-wrap .tabs li.active .nomos-iconbar:after {
  background: #FFF; }
.box-tabs-nav-wrap .tabs li.active i {
  color: #FFF; }
.box-tabs-nav-wrap .tabs li .nav-text {
  display: inline-block;
  font-size: 12px;
  margin-left: 15px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 0.1em; }
.icon-sub-menu {
  top: 0;
  right: 0;
  color: var(--engoc-color-main1);
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    width: 50px;
    height: 48px;
    line-height: 48px;
    border-left: 1px solid #e5e5e5;
    text-align: center;
    float: right;
    z-index: 30; }
.icon-sub-menu:before {
  font-family: 'FontAwesome',sans-serif;
  font-weight: 400;
  content: "\f105";
  font-size: 14px;
  color: #9f9f9f;
  display: block; }
.ciloe-icon-menu {
  width: 30px;
  height: 21px;
  float: left;
  display: inline-block;
  position: relative; }
.ciloe-icon-menu .ciloe-iconbar {
  display: block;
  position: relative;
  width: 13px;
  height: 2px;
  margin-top: 8px;
  background: var(--engoc-color-main1);
    transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s; }
.ciloe-icon-menu .ciloe-iconbar:before {
  content: '';
  position: absolute;
  top: -8px;
  width: 30px;
  height: 2px;
  left: 0px;
  background: var(--engoc-color-main1);
    transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s; }
.ciloe-icon-menu .ciloe-iconbar:after {
  content: '';
  position: absolute;
  top: 8px;
  width: 20px;
  height: 2px;
  left: 0px;
  background: var(--engoc-color-main1);
    transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s; }
.ciloe-btn {
  display: block;
  background: var(--engoc-color-main1);
    border-color: var(--engoc-color-main1);
      color: #fff;
      border: 0;
      font-size: 12px;
      letter-spacing: 0.2em;
      transition: all 0.3s linear 0s;
      -o-transition: all 0.3s linear 0s;
      -webkit-transition: all 0.3s linear 0s; }
.ciloe-btn:hover {
  background: var(--engoc-primary-color);
    color: #fff;
    border-color: var(--engoc-primary-color); }

.btn-login {
  width: 100%;
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em; }
.menu-level1.open {
  display: block;
}
.register-link {
  font-size: 18px;
  position: relative;
  text-align: center;
  display: block;
  margin-top: 25px; }
.register-link:after {
  content: "\f106";
  margin-left: 10px;
  font-family: Flaticon;
  position: relative;
  top: 1px; }
.login-link {
  font-size: 18px;
  position: relative;
  text-align: center;
  display: block;
  margin-top: 25px; }
.login-link:after {
  content: "\f106";
  margin-left: 10px;
  font-family: Flaticon;
  position: relative;
  top: 1px; }
.box-tabs-nav-wrap .tabs li.active .ciloe-iconbar {
  background: #FFF; }
.box-tabs-nav-wrap .tabs li.active .ciloe-iconbar:before, .box-tabs-nav-wrap .tabs li.active .ciloe-iconbar:after {
  background: #FFF; }
.cart-list .empty-cart {
  padding-top: 50%; }
.cart-list .empty-cart p {
  text-align: center;
  padding-bottom: 20px; }
.cart-list .empty-cart a {
  width: 187px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  background: var(--engoc-color-main1);
    color: #fff;
    font-size: 14px;
    }
.cart-list .empty-cart a:hover {
  background: var(--engoc-primary-color); }
.pushmenu.pushmenu-left{
  opacity:0;
  z-index:999;
}
.pushmenu-open.pushmenu.pushmenu-left{
  background:#fff;
  opacity:1;
}
/*--------------------  */
.banner_page .effect_img2 img{
  min-height: 300px;
  object-fit: cover;
}
.banner_page .text_banner{
  top:50%;
  left:10%;
  right:10%;
  transform: translateY(-50%);
}
@media(min-width:1025px){
  .banner_page .text_banner h1{
    font-size:48px;
  }

}
.shop_page .btn_function img,.shop_page .btn_function i{
  opacity:.5;
  transition:all .3s ease;
  cursor: pointer;
}
.shop_page .btn_function img.active,.shop_page .btn_function i.active{
  opacity:1;
}
.shop_page .btn_layout_shop .btn_function img:hover,.shop_page .btn_layout_shop .btn_function i:hover{
  opacity:1;
}
.shop_page .btn_layout_shop .margin_left_right{
  margin:0 15px;
}
.shop_page .btn_layout_shop .btn_function.left{
  font-size:18px;
}
.shop_page .btn_layout_shop .btn_function.left ul li a{
  font-size:18px;
}
.shop_page .btn_layout_shop .btn_function.left ul li a:hover{
  background:none;
  color:#3d976b;
}
.shop_page .btn_layout_shop .btn_function.left .wrap-filter-sorting button:after{
  content:"\f107";
  display:inline-block;
  font-family:'FontAwesome';
  padding-left: 15px;
  float: right;
}
.available-filter{
  padding-left:0;

}
.available-filter h4 {
  color:var(--engoc-primary-color);
    font-weight: 300;
    text-transform: inherit;
    }
.filter-button {
  padding-right:0;
}
.filter-button {
  padding-right:0;
}
.filter-button h4{
  cursor: pointer;
  color: #3c3c3c;
  font-weight: 400;
}
.filter-button h4:hover, .filter-button h4.active{
  color:#3d976b;
}
.available-filter h4 span {
  color: #cfcfcf;
  font-weight: 300;
}
.wrap-filter-sorting button{
  width:100%;
  font-size:18px;
  color: #cfcfcf;
  font-weight: 300;
}
.shop_page .btn_layout_shop .btn_function.right{
  padding-right:0;
}
.shop_page .btn_layout_shop .btn_function.gr_btn_product_size .products-size{
  display: inline-block;
  width: 17px;
  height: 17px;
  text-align: center;
  line-height: 17px;
  border: none;
  font-size: 18px;
  font-weight: 300;
  color: #d8d8d8;
  border-radius: 3px;
  position: relative;
  margin: 0 2px;
}
.gr_btn_product_size p{
  display: inline-block;
  font-size: 18px;
  color: #d8d8d8;
  font-weight: 300;

}
.shop_page .btn_layout_shop .btn_function.gr_btn_product_size .products-size:hover,.shop_page .btn_layout_shop .btn_function.gr_btn_product_size .products-size.active{
  color:#3d976b;
}
.sidebar .filter .widget_title,.filter_full .filter .widget_title{
  font-weight:500;
  position:relative;
  line-height: 24px;
  color:#3c3c3c;
}
.sidebar .filter ul li .link_color,.filter_full .filter ul li .link_color{
  display:inline-block;
  margin-right:8px;
  padding:3px;
  border-radius:50%;
  border:1px solid #ddd;
  margin-bottom:10px;
  transition:all .3s ease;
}
.sidebar .filter ul li .link_color:hover,.sidebar .filter ul li a.active .link_color,.filter_full .filter ul li .link_color:hover,.filter_full .filter ul li a.active .link_color{
  border:1px solid var(--engoc-color-main1);
    }
.sidebar .filter ul li .link_color .ciloe_filter_color,.filter_full .filter ul li .link_color .ciloe_filter_color{
  display:block;
  width:20px;
  height:20px;
  border-radius:50%;  
}
.sidebar .filter ul.filter-brand li a:hover::before,.filter_full .filter ul.filter-brand li a:hover::before{
  background:var(--engoc-color-main1);
    }
.sidebar .filter ul li a.filter_size,.filter_full .filter ul li a.filter_size{
  font-weight:600;
  display:inline-block;
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  color:#666;
  background:#f3f3f3;
  margin:0 10px 10px 0;
  line-height:40px;
  text-align: center;
  transition:all .3s ease;
}
.sidebar .filter ul li a.filter_size:hover,.sidebar .filter ul li a.filter_size.active,.filter_full .filter ul li a.filter_size:hover,.filter_full .filter ul li a.filter_size.active{
  color:var(--engoc-color-main1);
    background:var(--engoc-color-main2);
      }
.sidebar .filter ul li a.filter_tags,.filter_full .filter ul li a.filter_tags{
  display:inline-block;
  border-radius:5px;
  border:1px solid #b0b0b0;
  color:#666;
  margin:0 10px 10px 0;
  padding: 10px 20px;
  text-align: center;
  transition:all .3s ease;
}
.sidebar .filter ul li a.filter_tags:hover,.sidebar .filter ul li a.filter_tags.active{
  border:1px solid var(--engoc-color-main1);
    color:var(--engoc-color-main1);

      }
.filter_full .filter ul li a.filter_tags:hover,.filter_full .filter ul li a.filter_tags.active{
  border:1px solid var(--engoc-color-main1);
    color:var(--engoc-color-main1);

      }
.btn_layout_shop .filter_full{
  max-height:0;
}
.btn_layout_shop .filter_full.h_100{
  max-height:500px;
  overflow: hidden;
}
@media (max-width:1200px){
  .btn_layout_shop .filter_full.h_100{
    overflow: auto;
  }
}
.filter_full .border-bot{
  border:0;
}
.filter_full .content_filter_full{
  padding:40px;
  margin:0;
}
@media (min-width:1400px){
  .shop_page .content_shop .product_shop.product_full{
    width:100%;
  }
}
.layout_product_shop.column-3:nth-child(4n+1){
  clear:none !important;
}
.layout_product_shop.column-3:nth-child(3n+1){
  clear:left !important;
}
.layout_product_shop.column-6:nth-child(4n+1){
  clear:none !important;
}
.layout_product_shop.column-6:nth-child(6n+1){
  clear:left !important;
}
.layout_product_shop.column-20:nth-child(4n+1){
  clear:none !important;
}
.layout_product_shop.column-20:nth-child(5n+1){
  clear:left !important;
}
.layout_pd_list_shop .content_list{
  display:block !important;
}
.layout_pd_list_shop .product{
  display:flex;
}
.layout_pd_list_shop .product .img-product{
  width:50%;
  margin-right:20px;
}
.layout_pd_list_shop .product .info-product{
  width:50%;
}
.layout_pd_list_shop .product .img-product .product-icon{
  display:none;
}
.layout_pd_list_shop .product .info-product h4{
  padding-top:0;
}

.layout_pd_list_shop .product .info-product h4 .icon-heart{
  display:none;
}
.layout_pd_list_shop .product .info-product .content_list .stock{
  padding-top:20px;
  padding-bottom:20px;
  color:#999;
}
.layout_pd_list_shop .product .info-product .content_list .stock a{
  color:var(--engoc-primary-color);
    font-weight: 600;
    }
.layout_pd_list_shop .product .info-product .content_list .des_product{
  line-height:2;
  color:#999;
  margin-bottom:30px;
}
.layout_pd_list_shop .product .info-product .content_list .product-icon a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  border: 1px solid var(--engoc-color-main1);
    color: var(--engoc-color-main1);
      font-weight: 600;
      border-radius: 5px;
      background: #fff;
      transition:all .3s ease;
      }
.layout_pd_list_shop .product .info-product .content_list .product-icon a i{
  font-weight: 600;
}
.layout_pd_list_shop .product .info-product .content_list .product-icon form button{
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--engoc-color-main1);
    color: var(--engoc-color-main1);
      font-weight: 600;
      border-radius: 5px;
      background: #fff;
      transition:all .3s ease;
      }
.layout_pd_list_shop .product .info-product .content_list .product-icon form button i{
  font-weight: 600;
}
.layout_pd_list_shop .product .info-product .content_list .product-icon a:hover{
  border: 1px solid var(--engoc-primary-color);
    color: #fff;
    background: var(--engoc-primary-color);
      }
.layout_pd_list_shop .product .info-product .content_list .product-icon form button:hover{
  border: 1px solid var(--engoc-primary-color);
    color: #fff;
    background: var(--engoc-primary-color);
      }
.content_pagination ul.pagination li a{
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 50% !important;
  font-weight: 500;
  color:#999999;
  transition:all .3s ease;
  border:none
}
.content_pagination ul.pagination li a.active,.content_pagination ul.pagination li:hover a{
  color:#3c3c3c;
  background:var(--engoc-color-main2);
    }
@media (min-width:1200px){
  .layout_product_shop.col-lg-2{
    width:20%;
  }

  .layout_product_shop.col-lg-2:nth-child(5n+1){
    clear:left;
  }
  .layout_product_shop.col-lg-2:nth-child(6n+1){
    clear:none;
  }
}
.single-product-info .product-description h1, .single-product-info .product-description h2, .single-product-info .product-description h3,
.single-product-info .product-description h4, .single-product-info .product-description h5, .single-product-info .product-description h6{
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}
.single-product-info .product-description p{
  line-height:2;
  color:#999;
  margin-bottom:40px;
  max-width:465px;
}
.single-product-info .product-description table {
  max-width: 465px;
  margin-bottom: 30px;
}
.single-product-info .product-description table tr td {
  border: 1px solid var(--engoc-color-main1);
    padding: 10px;
    }
.single-product-info .product-description img {
  max-width: 465px;
  margin-bottom: 30px
}
.single-product-info .product-description .video-wrapper iframe {
  max-width: 465px;
}
.swatch .title_variant{
  font-size:12px;
  font-weight:600;
  color:var(--engoc-color-main1);
    position:relative;
    margin-right: 4px;
    }
.swatch .title_variant:before{
  content: "";
  width: 37px;
  border-top: 1px solid #333;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  top: -6px;
}
.swatch .title_variant:after{
  content: "";
  width: 20px;
  border-top: 1px solid #333;
  position: absolute;
  display: inline-block;
  float: left;
  margin-right: 10px;
  left: 0;
  bottom: 5px;
}
.swatch .title_variant.header:after{
  bottom: 10px;
}
.swatch .variant_color .link_color{
  display: inline-block;
  margin-right: 0;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  transition: all .3s ease;
}
.swatch .variant_color.variant_quickview .link_color{
  margin-bottom: 0;
}
.swatch .variant_color .link_color:hover{
  border: 1px solid var(--engoc-color-main1);
    }
.swatch .variant_color .link_color .ciloe_filter_color{
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.swatch .variant_color{
  top:5px;
}
.swatch .variant_other{
  display: inline-block;
  width: auto;
  height: 40px !important;
  border-radius: 5px;
  border: 1px solid #b0b0b0 !important;
  color: #666;
  margin: 0 10px 10px 0;
  padding-top: 4px;
  text-align: center;
  transition: all .3s ease;
  font-size: 14px;
}
.swatch .variant_other:hover{
  border: 1px solid #000 !important;
  color: var(--engoc-color-main1);
    }
.single-product-tab .cmt-title ul li a{
  font-weight:500;
  font-size:24px;
  padding-bottom: 30px;
  position:relative;
}
.single-product-tab .tab-content{
  padding: 0 0 80px;
  text-align: center;
}
.single-product-tab .tab-content #review{
  text-align: left;
}
.single-product-tab .tab-content p {
  margin-bottom: 30px;
}
.single-product-tab .tab-content table tr td{
  border: 1px solid var(--engoc-color-main1);
    padding: 10px;
    margin-bottom: 30px;
    }
.single-product-tab .tab-content img {
  margin-bottom: 30px;
}
@media (max-width:1400px){
  .single-product-tab .tab-content{
    padding: 0 0 50px;
  }
}
@media (max-width:1200px){
  .single-product-tab .tab-content{
    padding: 0 0 50px;
  }
  .container-fluid.container_100{
    padding-left:15px;
    padding-right:15px;
  }
}
@media (max-width:991px){
  .single-product-tab .tab-content{
    padding: 0 15px 50px;
  }
}
.ciloe-social-share-product{
  left:0;
  top:50%;
  background: var(--engoc-primary-color);
    text-align: center;
    width: 40px;
    border-radius: 0 10px 10px 0;
    z-index: 9999;
    padding: 5px;
    transform: translateY(-50%);
    }
.ciloe-social-share-product a{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 7px 0;
  display: inline-block;
  width: 100%;
  transition:all .3s ease;
  line-height: 1.5;
}
.ciloe-social-share-product a:hover,.ciloe-social-share-product a:focus{
  color: var(--engoc-color-main1);
    }
.promo_info_single_product{
  left:0;
  bottom:-100px;
  width:100%;
  background:#fff;
  padding:10px;
  z-index:30;
}
.promo_info_single_product.active{
  bottom:0;
  left:0;
}
.promo_info_single_product form button.btn-default{
  height: 42px;
  width: 180px;
  background: var(--engoc-primary-color);
    color: #fff;
    letter-spacing: 2px;
    transition:all .3s ease;
    border-radius: 50px;
    font-size:12px;
    margin-top: 5px;
    }
.promo_info_single_product form button.btn-default:hover{ 
  background: #2d7a43;
    }
.promo_info_single_product .close_promo_pd{
  top: -10px;
  right: -5px;
  cursor:pointer;
}
.ciloe_img_fit{
  min-height:320px;
  object-fit: cover;
}
.blog-grid .blog-img img{
  min-height:320px;
  object-fit: cover;
}
.blog-post-author{
  padding:15px 0;
}
.blog-post-author .author{
  font-weight: 500;
  color: #d2d2d2;
  letter-spacing: 1px;
}
.blog-post-author .author:hover{
  color: var(--engoc-primary-color);
    }
.blog-post-item .blog-post-title{
  font-size:20px;
  font-weight:400;
}
.blog-post-item .ciloe-btn-default-2:before{
  background:var(--engoc-color-main1);
    }
.blog-post-item .ciloe-btn-default-2{
  font-weight:500;
}
.blog-post-item .ciloe-btn-default-2:hover::before{
  background:var(--engoc-primary-color);
    }
@media (min-width:1400px){
  .blog_post .no-sidebar.single-post{
    padding-left:350px;
    padding-right:350px;
  }
}
.post-related-slide .blog-post-img img{
  min-height:260px;
  object-fit:cover;
}
.js_relate_article .slick-slide{
  margin-right:20px;
}
@media (min-width:767px){
  .js_relate_article .slick-prev,.js_relate_article .slick-next{
    opacity:0;
    transition:all .5s ease;
  }
  .js_relate_article:hover .slick-prev{
    transform:translateX(-50px);
    opacity:1;
  }
  .js_relate_article:hover .slick-next{
    transform:translateX(50px);
    opacity:1;
  }
  .js_relate_article .slick-prev{
    left:-30px;
  }
  .js_relate_article .slick-next{
    right:-16px;
  }
}
.post-content .post-related .post-title{
  font-size:20px;
  font-weight:500;
}
.post-related-slide .post-name{
  font-size:16px;
  font-weight:400;
  line-height:25px;
}
.post-related-slide .post-date{
  width: 90px;
  height: 50px;
  top: 20px;
  left: -20px;
  text-align: center;
  background: #fff;
  line-height: 50px;
  font-weight: 600;
  transform: rotate(90deg);
}
.post-related-slide .js_relate_article .slick-dots li button:before{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background:var(--engoc-color-main1);
    transition:all .3s ease;
    }
.post-related-slide .js_relate_article .slick-dots li.slick-active button:before{
  width: 30px;
  border-radius: 30px;
  background:var(--engoc-primary-color);
    }
.post-related-slide .js_relate_article .slick-dots li{
  width:40px;
}
.blog-comment .blog-comment-bottom .cmt-title h3{
  font-size: 18px;
  font-weight: 400;
  text-transform: inherit;
}
.blog-comment .blog-comment-bottom .btn-submit{
  width: 130px;
  height: 40px;
  line-height: 40px;
  border-radius: 999px;
  font-size: 12px;
  padding: 0;
  border: 0;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--engoc-color-main1);
    background: var(--engoc-color-main2);
      transition: all .3s ease;}

.blog-comment .blog-comment-bottom .btn-submit:hover{
  background: var(--engoc-primary-color);
    font-weight: 600;
    color: #fff;
    }
.page_404 .error-page .error-title{
  font-size:60px;
  line-height:115%;
}
.page_404 .error-page .content{
  font-size:18px;
  text-transform: inherit;
  line-height:30px;
}

.page_404 .error-page form{
  max-width: 560px;
  margin: 0 auto;
  margin-top: 60px;
}
.page_404 .error-page form input{
  height:60px;
  line-height:60px;
  border:1px solid #e8edf2;
  padding-left:30px;
}
.page_404 .error-page form button{
  position: absolute;
  right: 0;
  width: 60px;
  height: 60px;
  font-size: 24px;
  background: var(--engoc-color-main1);
    color: #fff;
    transition:all .3s ease;
    }
.page_404 .error-page form button:hover{

  background: var(--engoc-primary-color);

    }
@media (min-width:769px){
  .aboutus .content_about_page .about-text.v2 .content_about{
    max-width: 330px;
    padding-bottom:20px;
  }
  .aboutus .content_about_page .about-text.v2{
    padding-right:100px;
  }
  .aboutus .row-content1 {
    display:flex;
  }
  .aboutus .row-content1 .about-text{
    display:flex;
  }
  .aboutus .row-content1 .about-text > div{
    display:flex;
    align-items: center;
  }
}
.aboutus .content_about_page{
  padding-top: 80px;
}

.aboutus .content_about_page .about-text.v2{
  max-width:585px;
  padding-left:30px;
}
@media (min-width:1400px){
  .aboutus .content_about_page .about-text.v2{
    padding-left: 150px;
  }
}
@media (min-width:1024px){
  .aboutus .content_about_page .about-text{
    padding-right: 115px;  

  }
  .aboutus .content_about_page .about-text.v2{
    padding-left: 85px;
    padding-right:100px;
  }
  .icon-main a{
    margin-right:5px;
  }
}
.aboutus .content_about_page .about-text .title_about{
  font-size:36px;
}
.aboutus .content_about_page .about-text .content_about{
  line-height:2;
  color:#999999;
  font-size:18px;
  font-weight: 300;
}
@media (max-width:568px){
  .aboutus .content_about_page .about-text .content_about{
    font-size:14px;
  }
  .aboutus .content_about_page .about-text .title_about{
    font-size:24px;
  }
}

.page_faq .accordion{
  font-size:24px;
}
.page_faq .content_faq{
  padding: 40px 0 20px;
}
.ciloe_content_des_pd .title_des_tab{
  font-size:26px;
  line-height: 1.5;
}
.ciloe_content_des_pd .content_des_tab{
  line-height:2;
  color:#999;
}
.ciloe_content_des_pd .border_content_des .line_left,.ciloe_content_des_pd .border_content_des .line_right{
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 10%;
  background:#d7d7d7;
  display:inline-block;
  position: relative;
  top: 20px;
}
.login_form_pc{
  transition:all .3s ease;
  transform:scale(0);
  position:fixed;
  z-index:50;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: rgba(255,255,255,.9);
  text-align:center;
}
.login_form_pc.active{
  transform:scale(1);
}
.login_form_pc .content_login_form{
  background:#fff;
  margin:0 auto;
  position:relative;
  width: 920px;
  max-width: -webkit-calc(100% - 20px);
  max-width: -moz-calc(100% - 20px);
  max-width: calc(100% - 20px);
  min-height: 600px;
  top:50%;
  overflow-y: auto;
  transform: translateY(-50%);
  box-shadow: 3px 7px 120px rgba(0,0,0,.07);
}
.login_form_pc .content_login_form .btn_close_login{
  right:15px;
  top:10px;
  z-index:99;
}
.login_form_pc .content_login_form .btn_close_login a{
  color:#a3a3a3;
  opacity:.65;
}
.login_form_pc .content_login_form .btn_close_login a:hover{
  opacity:1;
}
.login_form_pc .content_login_form .btn_close_login a i{
  font-weight:700;
}
.login_form_pc .content_login_form .my-account-wrap{
  width: 400px;
  margin: 0 auto;
  max-width: 100%;
}
.login_form_pc .content_login_form .my-account-wrap .icon_top{
  font-size: 35px;
  color: var(--engoc-color-main1);
    margin-bottom: 20px;
    }
.login_form_pc .content_login_form .my-account-wrap h3{
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px;
  color:#999;
  text-transform: unset;
}
.login_form_pc .content_login_form .my-account-wrap h3.recover_pw{
  font-size: 14px;
  font-weight: 500;
  line-height: 8px;
  margin: 0 0 20px;
  color:var(--engoc-color-main1);
    text-transform: uppercase;
    letter-spacing:3px;
    }
.login_form_pc .content_login_form .my-account-wrap h3.title_register{
  text-align:left;
}
.login_form_pc .content_login_form .my-account-wrap form input{
  border: 1px solid #ddd;
  border-radius: 0!important;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
  padding: 0 22px;
  width: 100%;
  margin-bottom: 28px;
}
.login_form_pc .content_login_form .my-account-wrap form input{
  border: 1px solid #ddd;
  border-radius: 0!important;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
  padding: 0 22px;
  width: 100%;
  margin-bottom: 28px;
}
.login_form_pc .content_login_form .my-account-wrap form button{
  margin-bottom:30px;
}
.spec span{
  position: relative;
  padding: 0 10px;
}
.spec span::before{
  content: "";
  border-top: 1px solid #e4e4e4;
  position: absolute;
  top: 10px;
  right: 100%;
  width: 13em;
}
.spec span::after{
  content: "";
  border-top: 1px solid #e4e4e4;
  position: absolute;
  top: 10px;
  left: 100%;
  width: 13em;
}
.flex.column{
  flex-direction: column;
  display: inline-block !important;
}
.ciloe_content_des_pd .content_mid h1{
  font-size:22px;
  font-weight:400;
}
.ciloe_content_des_pd .feature_des_tab h1{
  font-size:26px;
  font-weight:400;
}
.ciloe_content_des_pd .purchase_tab{
  padding:110px 0;
}
.ciloe_content_des_pd .purchase_tab h1{
  font-size:40px;
  color:#fff;
  line-height:1.5;
}
.ciloe_content_des_pd .purchase_tab a{
  font-size:12px;
  color:#fff;
  letter-spacing:2px;
  font-weight:500;
  padding:15px 30px;
  background:transparent;
  border:2px solid #fff;
}
.product .color-group.br-select-color{
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
}
.product .color-group.br-select-color span.border{
  display: inline-block;
  margin-right: 0;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all .3s ease;
  width: 23px;
  height: 23px;
}
.product .color-group.br-select-color span.border:hover{
  border: 1px solid var(--engoc-color-main1);
    }
.product .color-group.br-select-color .engo-pd-item-color {
  width: 23px;
  height: 23px;
  text-align: center;
  padding: 3px;
}
.product .spr-badge-caption{
  display:none !important;
}
.product .spr-starrating i.spr-icon-star-empty{
  display:none !important;
}
.navbar-nav li .dropdown-menu.mega-menu-main li a{
  padding-left:0;
  line-height:3;
  padding-right: 0;
}
.navbar-nav li .dropdown-menu.mega-menu-main li a.uppercase{
  text-transform:unset !important;
}
.slick-product-top-sale .slick-slide{
  margin:0 15px;
}
.quickview-wrapper .product-media .owl-carousel{
  display:block;
}
.quickview-wrapper .product-media .owl-carousel .owl-item .item{
  margin:0 2px;
}
.instagram .content-insta img{
  transition: all .7s ease;
}
.instagram .content-insta:hover img{
  transform:scale(1.2);
}
.instagram .content-insta .parent:before{
  content:'';
  display:inline-block;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  background:rgba(0,0,0,.7);
  opacity:0;
  transition:all .3s ease;
  z-index:2;
}
.instagram .content-insta:hover .parent::before{
  opacity:1;
}
.instagram .content-insta .infor-insta{
  top:50%;
  width:100%;
  transform:scale(0);
  z-index:3;
}
.instagram .content-insta:hover .infor-insta{
  transform:scale(1);
}
.instagram .content-insta:hover .infor-insta a{
  color:#fff;
}
.instagram .content-insta:hover .infor-insta a:hover{
  color:var(--engoc-primary-color);
    }
#mps-sales-notification.sn-common.sn-left-to-right{
  opacity:1 !important;
}
@media (max-width: 991px) {
  .header-v2 #btn-search{
    padding-top:0;
  }
}
@media (max-width: 767px) {
  .col-xs-6.product-col-5 {
    width: 50%;
    padding:0 5px;
  }
  .product_shop.col-xs-12{
    padding: 0 20px;
  }
  .product_shop .col-xs-6.layout_product_shop {
    width: 50%;
    padding: 0 10px;
  }
  .product_shop .col-xs-6.layout_product_shop.layout_pd_list_shop {
    width:100%;
  }
  .layout_pd_list_shop .des_product{
    overflow: hidden; 
    display: -webkit-box; 
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
  }
  .layout_pd_list_shop .des_product ul{
    overflow: hidden; 
  }
  .layout_pd_list_shop .product-rating{
    display:none;
  }
  .layout_pd_list_shop .variant-image-group{
    display:none;
  }
  .product a.icon-heart,.product button.icon-heart{
    display:none;
  }
  .layout_pd_list_shop .product .info-product .content_list .stock{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .label-sale{
    right:10px;
    left:auto;
  }
  .product .color-group.br-select-color{
    right: 0px;
    bottom: 10px;
  }
  .color-group .circle{
    width: 12px;
    height: 12px;
  }
  .ciloe-title-section{
    padding-left:15px;
  }
  .slick-product-top-sale .slick-slide{
    margin:0 5px;
  }
  .form-search h3{
    font-size: 30px;
    line-height: 40px;
  }
  .form-search form{
    flex-direction: column;
  }
  .form-search form input{
    width: unset;
    margin: 10px;
  }
  .form-search form button{
    height: 50px;
    margin: 10px;
  }
  .form-search i{
    font-size: 25px;
  }
  .form-search{
    transition: all .7s ease;
  }
  .slider-home-classic{
    margin-bottom: 10px;
  }
  .slick-Testimonal .slick-next, .slick-Testimonal .slick-prev{
    display:none!important;
  }
  .Testimonal .line-tes{
    height:60px;
  }
  .ciloe-title-section h2{
    font-size:24px;
  }
  .ciloe-title-section{
    margin-bottom: 10px;
  }
}
.banner_collection .title_shop{
  line-height:3;
  font-size:24px;
}
.banner_collection .title_shop .btn_grid_layout,.banner_collection .title_shop .btn_list_layout{
  opacity:.5;
}
.banner_collection .title_shop .btn_grid_layout.active,.banner_collection .title_shop .btn_list_layout.active{
  opacity:1;
}
.banner_collection .title_shop .btn_list_layout{
  margin-right:10px;
}
.gr_btn_mb button.btn_sorting,.gr_btn_mb a.btn_filter{
  text-transform:uppercase;
  font-size:12px !important;
  font-weight:600 !important;
  letter-spacing:1px;
}
.gr_btn_mb button.btn_sorting:after{
  content: "\f0d7";
  display: inline-block;
  font-family: 'FontAwesome';
  padding-left: 10px;
}
.sidebar.sidebar_mb{
  position:fixed;
  top:0;
  right:-350px;
  height:auto;
  transition:all .3s ease;
  background: #fff;
  z-index:999;
  padding:20px 0 10px 15px;
}
.sidebar.sidebar_mb.active{
  right:0;
  opacity:1;
}
.sidebar_mb::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.sidebar_mb::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

/* Handle */
.sidebar_mb::-webkit-scrollbar-thumb {
  background: var(--engoc-primary-color); 
    }

/* Handle on hover */
.sidebar_mb::-webkit-scrollbar-thumb:hover {
  background: var(--engoc-primary-color); 
    }
.sidebar_mb .close_sidebar_mb{
  font-weight:600;
}
.sidebar_mb .close_sidebar_mb i{
  margin-right: 6px;
  font-size: 10px;
  font-weight: 700;
}
@media (max-width:767px){
  .single-product-tab .tab-content p{
    padding: 10px 0;
  }
  .single-product-tab .tab-content p.line{
    margin: 0 auto 10px !important;
  }
  .ciloe_content_des_pd .content_mid .content_mid_1 img,.ciloe_content_des_pd .content_mid .content_mid_3 img{
    margin-bottom: 10px;
  }
  .ciloe_content_des_pd .content_mid .content_mid_1 h1,.ciloe_content_des_pd .content_mid .content_mid_3 h1,.ciloe_content_des_pd .content_mid .content_mid_2 h1{
    margin-bottom: 0;
  }
  .ciloe_content_des_pd .purchase_tab h1{
    font-size: 20px;
  }
  .ciloe_content_des_pd .img_banner_tab{
    margin-bottom:30px;
  }
  .ciloe_content_des_pd .title_des_tab{
    font-size: 20px;
    margin-bottom: 0;
  }
  .single-product-detail.product-aff{
    margin-bottom:0;
  }
  .trending_classic {
    margin-bottom:0; 
  }
  .deal-classic{
    margin-bottom:30px; 
  }
  .Testimonal{
    margin-bottom:30px;
  }
  .Testimonal .margin_bottom_100{
    margin-bottom:30px;
  }
  .slick-Testimonal .slick-dots{
    bottom: -60px;
  }
  .Testimonal .ciloe-title-section{
    margin-bottom:0;
  }
  .instagram{
    margin-bottom: 30px;
  }
  .instagram .des-insta{
    margin-bottom: 30px;
  }
  .product.margin_bottom_50{
    margin-bottom:30px;
  }
  .top_sale.margin_bottom_100{
    margin-bottom:0;
  }
  .slick-product-top-sale .slick-dots{
    bottom: 5px;
  }
  .banner.margin_bottom_90{
    margin-bottom:30px;
  }
  .gr_ins_classic.flex{
    flex-direction: row;
  }
  .gr_ins_classic .content-insta{
    margin: 5px 5px 0px 5px !important;
  }
  .img_insta_fv3.col-xs-4{
    width: 33.33333%;
  }
  .newletter{
    margin-bottom:30px;
  }
  .tab-pd-clean .title-tab, .tab-pd-clean .title-tab-2{
    margin-bottom:30px;
  }
  .col-xs-6.product-tab-pd{
    width:50%;
    padding:0 5px;
  }
  .tab-pd-clean{
    margin-bottom:0;
  }
  .banner_pinmapper{
    margin-bottom:0;
  }
  .image_modern{
    margin-bottom:20px;
  }
  .image_modern .img_banner{
    padding-bottom:20px;
  }
  .shop_modern p.margin_bottom_80{
    margin-bottom:30px;
  }
  .pd-featured-minimal .col-xs-6.product-minimal{
    width:50%;
    padding:0 5px;
  }
  .blog-minimal{
    margin-bottom:0;
  }
  .blog-minimal .des-blog{
    margin-bottom:0;
  }
  .slide_pinmapper{
    margin-bottom:30px;
  }
  .collection_pinmapper{
    padding-bottom: 65px !important;
    margin-bottom:30px;
  }
  .collection_pinmapper h1.margin_bottom_80{
    margin-bottom:30px;
    font-size:36px;
  }
  .banner_pinmapper{
    margin-bottom:10px;
  }
  .tab-pd-clean .title-tab-2 li a:before{
    bottom:15px;
  }
  .slide_pinmapper .hover_popup .content_pd_popup .pd_popup{
    display: none;
  }
}
#productSearchResults{
  position: absolute;
  left: 15%;
  right:15%;
}
@media (max-width:1200px){
  #productSearchResults{
    position: absolute;
    left: 0;
    right:10px;
  }
}
#productSearchResults .search-results{
  min-width:300px;
}
@media (min-width:400px){
  #productSearchResults .search-results{
    min-width:350px;
  }
}
#productSearchResults .search-results .result-item .search-item-img{
  display:block;
}
#productSearchResults .search-results .result-item .search-item-img img{
  width:100%;
}
#productSearchResults .search-results{
  text-align: left;
  margin-top: 10px;
  max-height: calc(100vh - 340px);
  overflow: auto;
  padding-bottom: 30px;
}
@media (max-width:1200px){
  #productSearchResults .search-results{
    max-height: calc(100vh - 200px);
  }
}
#productSearchResults .search-results::-webkit-scrollbar {
  width: 3px;
}

/* Track */
#productSearchResults .search-results::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

/* Handle */
#productSearchResults .search-results::-webkit-scrollbar-thumb {
  background: var(--engoc-primary-color); 
    }

/* Handle on hover */
#productSearchResults .search-results::-webkit-scrollbar-thumb:hover {
  background: var(--engoc-primary-color); 
    }
#productSearchResults .search-results .result-item{
  display:inline-block;
  position:relative;
  margin-bottom:20px;
  padding:0 15px;
  float:left;
}
@media (min-width:320px){
  #productSearchResults .search-results .result-item{
    width:50%;
  }
  #productSearchResults .search-results .result-item:nth-child(2n+1){
    clear:left;
  }
}
@media (min-width:768px){
  #productSearchResults .search-results .result-item{
    width:33.333333%;
  }
  #productSearchResults .search-results .result-item:nth-child(3n+1){
    clear:left;
  }
  #productSearchResults .search-results .result-item:nth-child(2n+1){
    clear:none;
  }
}
@media (min-width:992px){
  #productSearchResults .search-results .result-item{
    width:25%;
  }
  #productSearchResults .search-results .result-item:nth-child(4n+1){
    clear:left;
  }
  #productSearchResults .search-results .result-item:nth-child(2n+1){
    clear:none;
  }
  #productSearchResults .search-results .result-item:nth-child(3n+1){
    clear:none;
  }
}
#productSearchResults .search-results .result-item .search-item-title{
  font-weight:500;
  margin:20px 0;
  display:block;
}
@media (min-width:1200px){
  #productSearchResults .search-results .result-item .search-item-title{
    font-size:18px;
  }
}
#productSearchResults .search-results .result-item .search-item-title .hightlight{
  background:var(--engoc-primary-color);
    }
#productSearchResults .search-results .result-item .item-price{
  font-weight:600;
  margin-right:10px;
}
#productSearchResults .search-results .result-item del{
  font-weight:500;
  color:#909090;
}
@media (max-width:480px){
  .single-product-tab .nav-tabs.v3{
    padding-top:30px;
  }
}
#my360{
  background: rgba(255,255,255,.8);
}
#my360 .modal-content{
  box-shadow:unset;
  border:0;
}
.notifyjs-wrapper.notifyjs-hidable{
  box-shadow:0 5px 40px 0 rgba(0,0,0,.1);
}
.single-product-tab .tab-content p.content_des_tab{
  padding-bottom:260px;
}
.ciloe_content_des_pd .img_banner_tab img{
  margin-top:-260px;
}
.ciloe_content_des_pd .bg_content_bottom{
  background:#f8f8f8;
}
.content_pd_popup .pd_popup .price{
  justify-content: space-between;
}
.cart-inside .item-cart .btn-del{
  font-size: 10px;
  position: relative;
  top: -30px;
  color: #666;
  right: -16px;
}
.cart-inside .item-cart .btn-del:hover{
  color: var(--engoc-primary-color);

    }
.cart-inside .item-cart .btn-del i{
  font-weight:900;
}
@media (min-width:1200px){
  .footer-v3 .insta_fv3{
    clear:none !important;
  }
}
@media (max-width:767px){
  .slider-home-fullwidth .table .ciloe-inner .btn-slider .cat-content-inner{
    padding: 40px 0;
  }
  .slider-home-fullwidth .table .ciloe-inner .btn-slider .cat-content-inner .link-cat{
    opacity:1;
  }
}
.menu-main li .bg-mega-menu1 .hover-filter p a{
  color:var(--engoc-color-main1);
    }
.menu-main li .bg-mega-menu1 .hover-filter p a:hover,.menu-main li .bg-mega-menu1 .hover-filter:hover p a{
  color:var(--engoc-primary-color);
    }
@media (max-width:767px){
  .product-modern.col-xs-6{
    width:50%;
    padding: 0 8px;
  }
}
.notifyjs-corner{
  z-index: 999 !important;
}
.wrap-filter-sorting .dropdown_menu_sorting{
  opacity:0;
  visibility:hidden;
  display: inline-block;
  position:absolute;
  top:100%;
  left:0;
  z-index: 1000;
  float: left;
  transition: all .3s ease;
  border: 0;
  border-radius: 0;
  min-width: 285px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  padding-top: 15px;
  padding-bottom: 25px;
  background:#fff;
  transform:translateY(15px);
}
.wrap-filter-sorting .dropdown_menu_sorting li a{
  font-size: 14px !important;
  line-height: 24px;
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  color:#333;
}
.wrap-filter-sorting .dropdown_menu_sorting.active{
  opacity:1;
  visibility:visible;
}
.content_size_guide::-webkit-scrollbar {
  opacity:0;
}
.single-product-detail .product-img-slide .product-images .main-img img.img_sticky{
  margin-bottom:30px;
}
@media (min-width: 1200px) {
  .multiple-img-list-ver2.big_image {
    width: 120px;
  }
}
.product-images .js-product-slider.big_image img{
  margin:0 auto;
}
.multiple-img-list-ver2 .slick-active .img img{
  border:1px solid #ddd;
}
.multiple-img-list-ver2 .slick-current .img img{
  border:1px solid var(--engoc-color-main1);
    }
.pd-article .js-pd-article .slick-slide{
  margin:0 5px;
}
.pd-article .js-pd-article .slick-next{
  right:-25px;
}
.navbar-nav.menu-main > li > a:before{
  content:none;
}
.notifyjs-corner .notifyjs-wrapper, .notifyjs-corner .notifyjs-container{
  margin:0 !important;
}
.notification-theme .wrapper-content .close-noti{
  position: absolute;
  right: -15px;
}
.notification-theme{
  width: 450px !important;
  max-width: 500px !important;
  border-radius: 0 !important;
}
@media (max-width:480px){
  .notification-theme{
    width: 320px !important;
  }
}
/* bundle */
#revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout{
  flex-direction: row !important;
  width: 100%;
  overflow:hidden;
}
#revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout .revy-bundle-product{
  flex-direction: column !important;
  align-items:unset !important;
}
#revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout .revy-bundle-product .revy-bundle-image-container .revy-bundle-image-outline{
  width:auto !important;
  box-shadow: unset;
  position:relative;
  padding:0 !important;
}
#revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout .revy-bundle-product .revy-bundle-image-container .revy-bundle-image-outline:before{
  content:'+';
  position: absolute;
  font-size: 1.714em;
  line-height: 1.458em;
  height: 1.458em;
  width: 1.458em;
  border-radius: 50%;
  top: 50%;
  left: -.729em;
  margin-left: -16px;
  display: inline-block;
  text-align: center;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 1;
  color: #999;
}
#revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout .revy-bundle-product .revy-bundle-image-container .revy-bundle-image-outline .revy-bundle-image{
  max-width: 180px !important;
  max-height: 300px !important;
}
#revy-bundle-wrapper{
  padding: 30px !important;
  max-width: 1000px;
  margin: 0 auto !important;
  border: 2px solid #ddd;
}
/* end */
@media (min-width:1200px){
  #revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout .revy-bundle-product .revy-bundle-image-container{
    margin-right:25px !important;
  }
}
@media (max-width:1200px){
  #revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout{
    flex-direction: column !important;
  }
  #revy-bundle-wrapper .revy-bundle-wrapper-inner .revy-bundle-products.revy-bundle-products-multiple-layout .revy-bundle-product{
    align-items:center !important;
  }
  #revy-bundle-wrapper{
    margin-top:30px !important;
  }
}
#revy-bundle-wrapper .active{
  display:inline-block !important;
}



.filter-brand .brand-filter li{
  padding-top: 5px;
  padding-bottom: 5px;
}
.filter-brand .brand-filter li a{
  line-height:25px;
}

.footer-v3 .subscible-form input{
  background: #f2f2f2;
  border-radius: 40px!important;
  width: 100%;
  height:40px;
  font-size:12px;
  padding: 12px 20px;
  border:none;
}
.footer-v3 .subscible-form button{
  top: 12px;
  right: 26px;
  font-size: 12px;
  font-weight: 600;
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .footer-v3 .subscible-form input{
    padding: 12px 15px;
  }
  .footer-v3 .subscible-form button{
    right: 15px;
  }
}
.footer-v3 .subscible-form button:after{
  display:none;
}

.fw-300{
  font-weight:300;
}
.fw-400{
  font-weight:400;
}
.fw-500{
  font-weight:500;
}
.fw-600{
  font-weight:600;
}
.fw-700{
  font-weight:700;
}


.content.v2 h3{
  padding-top:30px;
  max-width:550px;
  line-height:35px;
  text-transform: inherit;
}

.newlet-v2 form{
  max-width: 470px;
}
.newlet-v2 p{
  max-width: 470px;
  color: #999999;
  line-height: 26px;
}
.newlet-v2 .btn-section {
  padding:0 23px;
}
.newlet-v2 form input{
  width: 100%;
  height: 40px;
  border-radius: 40px!important;
  background: #f3f3f3;
  border: none;
  padding-left: 20px;

}
.blog-new .content-blog.v2{
  max-width: 450px;
}
.blog-new .button-blog {
  font-weight: 500;
  color: #cfcfcf;
  letter-spacing: 0.5px;
}
.blog-new .blog-post-author{
  padding-bottom:5px;
}
.blog-new .blog-post-author .author{
  font-weight:300;
}
.stt{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: auto;
  background:var(--engoc-color-main4);
    line-height: 30px;
    color:var(--engoc-primary-color);
      }
.slick-Testimonal3 .slick-next {
  right:-50px;
  background:#e8e8e8;
  border-radius: 4px;

}
.slick-Testimonal3 .slick-prev {
  left:-50px;
  background:#e8e8e8;
  border-radius: 4px;

}
.slick-Testimonal3 .slick-next:before{
  font-size:20px;
}
.slick-Testimonal3 .slick-prev:before{
  font-size:20px;
}
.slick-Testimonal3 .slick-prev:hover {
  background:var(--engoc-color-main4);
    }
.slick-Testimonal3 .slick-next:hover {
  background:var(--engoc-color-main4);

    }

.slick-Testimonal3 .slick-next:hover:before{
  color:var(--engoc-primary-color);
    }
.slick-Testimonal3 .slick-prev:hover:before{
  color:var(--engoc-primary-color);
    }
.slick-product-best-sellers .slick-next{
  display:none !important;
}
.slick-product-best-sellers .slick-prev{
  display:none !important;
}
.slick-product-best-sellers .slick-slide{
  margin: 0 15px;
}
.slick-product-best-sellers .slick-dots {
  position: initial;
}
.slick-product-best-sellers .slick-dots li {
  margin:0;
}
.slick-product-best-sellers .slick-dots li button:before{
  font-size:7px;
}
.slick-product-best-sellers .slick-dots li:hover button:before{
  color:var(--engoc-primary-color);
    }
.slick-product-best-sellers .slick-dots li.slick-active button:before{
  color:var(--engoc-primary-color);
    }
.ciloe-title-section p{
  color:#cfcfcf;
  letter-spacing: 1px;
}
.single-product-info .flex .product-rating .spr-badge{
  float:right;
}
.info-product.text-center .product-rating .spr-badge{
  justify-content: center;
}

.single-product-button-group .selector-wrapper{
  align-items: center;
  background: #fff;
  padding: 0 10px;
  margin-right:10px;
}
.ciloe-size-guide .btn_size_guide{
  display:none!important;
}
.single-product-button-group .selector-wrapper .single-option-selector{
  background: transparent;
  border: none;
  height: 40px;
  width:70%;
  color: var(--engoc-color-main1);
    font-weight: 600;
    }
.single-product-button-group .selector-wrapper:after {
  display:none;
}

.single-product-button-group .selector-wrapper label {
  color: #999999;
  font-weight: 400;
  font-size: 14px;
  width: 30%;

}
.product-media .engoj_img_main_quickview{
  width:100%;
}





















@media(max-width:1024px){

  .slick-prev, .slick-next{
    display:none!important;
  }
  .space_top_120{
    padding-top:70px;
  }
  .space_bot_120{
    padding-bottom:70px;
  }
  .banner_page.v2 .text_banner{
    top:25%;
  }
  .aboutus .banner_page.v2 .text_banner{
    top:50%;
  }
  .aboutus .banner_page.v2 .text_banner h1{
    line-height:35px;
  }
  .banner_page.v2 .text_banner h1{
    margin-bottom:0;
  }
  .margin_bottom_90{
    margin-bottom:50px;
  }
  .space_top_50{
    padding-top:30px;
  }
  .space_bot_60{
    padding-bottom:30px;
  }
  .tab-pd-clean .title-tab-2{
    margin-bottom:20px!important;
  }
  .margin_bottom_70{
    margin-bottom:40px;
  }
  .margin_bottom_80{
    margin-bottom:40px;
  }
  .space_top_100{
    padding-top:50px;
  }
  .space_bot_100 {
    padding-bottom: 50px;
  }
  .space_bot_70 {
    padding-bottom: 40px;
  }
  .margin_top_100{
    margin-top:50px;
  }
  .margin_bottom_100 {
    margin-bottom: 50px;
  }
  .aboutus .team{
    padding-bottom:70px;
    padding-top:50px;
  }
  .space_top_80{
    padding-top:40px;
  }
  .space_top_bot_140{
    padding-top:70px;
    padding-bottom:70px;
  }
  .space_top_140 {
    padding-top:70px;
  }
}
@media(max-width:992px){
  .footer-v3 .col-sm-6:nth-child(2n+1){
    clear: left;
  }


}
@media(max-width:768px){
  .banner .text-banner.v1{
    padding-top:0;
  }
  .space_top_60 {
    padding-top: 30px;
  }
  .margin_bottom_60 {
    margin-bottom: 30px;
  }
  .aboutus .content_about_page{
    padding-top:40px;
  }
  .aboutus .cuter .counter .counter1{
    padding-top:50px;}
  .aboutus .cuter .counter .counter1 .col-md-3 .counte{
    font-size:36px;
  }
  .slider-home-classic .js-slider-home-classic .slick-dots{
    display:none!important;
  }
  .fv1_social .right{
    float: inherit!important;
  }
  .margin_bottom_120 {
    margin-bottom: 60px;
  }
  .margin_top_120 {
    margin-top: 60px;
  }
  .newletter .flex.v1{
    display: inline-block;
  }
  .newletter .title-newletter{
    width:100%!important;
  }
  .newletter .des-newletter{
    width:100%!important;
    margin-bottom:40px!important;
  }
  .tab-pd-clean .title-tab-2 li a{
    font-size:13px!important;
    padding: 10px 5px;
  }
  .tab-pd-v2 .title-tab-2 li a{
    font-size:16px!important;
  }
  h1{
    font-size:30px;
  }
}
@media(max-width:568px){
  .space_top_120{
    padding-top:40px;
  }
  .footer-v2 .incon-link{
    padding-top:0;
  }
  .space_top_bot_50{
    padding-top:30px;
    padding-bottom:30px;
  }
  .tab-pd-v3 .tab-content{
    padding-left:0;
    padding-right:0;
  }

  .space_top_50{
    padding-top:30px;
  }
  .space_bot_50{
    padding-bottom:30px;
  }
  .error-title {
    margin-bottom:20px;
  }
  .contact_page .col-xs-4 {
    width:100%;
    padding-bottom:30px;
  }
  .ciloe-title-section2 p{
    padding-bottom:10px;
  }
  .instagram .title-insta{
    font-size:24px!important;
  }
  h1{
    font-size:24px;
  }
  h2{
    font-size:22px;
  }
  h3{
    font-size:18px;
  }
  h4{
    font-size:16px;
  }
}

.pushmenu-push-toright-cart .header-v2.fixed{
  left: inherit;
  right: inherit;
  width: 100%;
}
.fb_dialog_advanced, .fb_dialog_mobile{
  margin: 0 14pt!important;
}
.single-product-detail .single-product-info .single-product-button-group.v2 .cart-qtt .btn-add-cart{
  height:55px;
  width:190px;
}
.single-product-detail .single-product-info .single-product-button-group.v2  .e-quantity{
  height:55px;
  width:100px;
}
.single-product-detail .single-product-info .single-product-button-group.v2  .e-quantity input.input-text[type=text]{
  height:55px;
}
.single-product-detail .single-product-info .single-product-button-group.v2 .e-quantity .quantity-left-minus{
  top:21px;
}
.single-product-detail .single-product-info .single-product-button-group.v2 .e-quantity .quantity-right-plus{
  top:21px;
}
.product .info-product .product-rating{
  padding-top:5px;
}


.menu-main li .bg-mega-menu1 .hover-filter p{
  text-align: center;
}
.menu-main li .bg-mega-menu1 .hover-filter p a{
  letter-spacing: 1px;
  font-size: 12px;
}


.bg-mega-menu4 .cate-item img {
  min-height: 226.66px;
  object-fit: cover;
}

/* — style-more.css — */
.js-quickview-slide .slick-list .slick-track{
  width:unset !important;
}
.js-quickview-slide .slick-list .slick-track .slick-slide{
  width:unset !important;
}
.price-old{
	font-size:14px;
  margin-left:10px;
  color:#ddd;
}
.sold-out{
  display: flex;
  justify-content: center;
  width: 100%;
  transform: scale(0) translateY(-50%);
  transition:all .3s ease;
  text-align:center;
  top:50%;
}
.sold-out a{
	font-size:18px;
  	padding: 50px 23px;
    border-radius: 50%;
  	background:#fff;
  	transition:all .3s ease;
}
.product:hover .sold-out{
	transform:scale(1) translateY(-50%);
}
.box-shadow{
box-shadow: 0 3px 20px 0 rgba(0,0,0,.1);
}
.enj-minicart-ajax ul li{
 list-style-type:none;
}
.enj-minicart-ajax .item-cart .product-details .product-name{
	font-size:22px;
  	margin-bottom:20px;
    margin-top: -5px;
  -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}
.enj-minicart-ajax .bottom-cart{
	font-size:18px;
  	margin-left:30px;
  	margin-right:30px
}
.enj-minicart-ajax .bottom-cart .cart-price{
	justify-content: space-between;
}
@media (min-width:320px){
  .enj-minicart-ajax .mini-products-list{
  	height:150px;
    overflow-y: auto;
    overflow-x: hidden;
    
  }
}
@media (min-width:768px){
  .enj-minicart-ajax .mini-products-list{
  	height:300px;
  }
}
/* btn wishlist */
.product .img-product .product-icon button.icon-heart{
	padding-top:3px;
}
/* end */
.select-view .dropdown{
	font-size:18px;
}
.select-view.flex{
	justify-content: flex-end;
}
@media ( max-width:567px ){
	.select-view.flex{
	justify-content: flex-start;
}
}
.select-view .dropdown .dropdown-menu{
	border-radius:0;
  	border:1px solid #ddd;
  	font-size:18px;
}
.select-view .dropdown:hover{
	color:#ee9051;
}
.select-view .dropdown .dropdown-menu .active a{
	background:#ee9051;
}
.select-view .dropdown .dropdown-menu>li>a:hover{
	background:#ee9051;
  	color:#fff;
}
.op_0{
	opacity:0;
}
ul.filter-tag li a.active{
	color:#ee9051 !important;
}
.breadcrumb{
	background: transparent;
}
.fs-18{
	font-size:18px;
}
.no-border{
	border:0 !important;
}
input{
	border-radius:0 !important;
}
.spr-badge-caption{
  margin-left:20px;
}
.spr-summary-caption{
	font-size:18px;
  
}
.spr-summary-actions{
	font-size:18px;
  
  float:right;
  margin-left: 50px;
}
@media (max-width:567px){
  .spr-summary{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .spr-summary-actions{
    margin-left: 0;
  }
}
.spr-content{
	
  	font-size:18px;
}
.spr-content h3.spr-form-title{
  	font-size:24px;
  	
}
.spr-content label.spr-form-label{
	
  	font-size:18px;
}
.spr-form-review-rating a, .spr-form-review-rating a:hover{
	color:#ee9051;
}
.spr-form-input-text, .spr-form-input-email{
	height:60px;
  border:1px solid #ddd;
  width:100%;
  padding-left:30px;
}
.spr-form-input-textarea{
	resize:none !important;
  height:200px;
  border:1px solid #ddd;
  width:100%;
  border-radius:0 !important;
  padding-top: 30px;
  padding-left:30px;
}
input.spr-button{
width:100%;
  height:60px;
  background:black;
  transition: all .3s ease;
  font-size:18px;
  border:0;
  box-shadow:unset;
  color:#fff;
}
input.spr-button:hover{
	background:#41cce5;
}
.nixx-promotion{
	padding-top:20px;
  	padding-bottom:20px;
}
.nixx-promotion .title{
	font-size:18px;
  color:#fff;
}
.nixx-promotion .btn-promo{
  color: #fff;
  padding:5px 15px;
  background:black;
  transition:all .3s ease;
}
.nixx-promotion .btn-promo:hover{
	background:#ee9051;
}
.circle{
	display:inline-block;
  width:15px;
  height:15px;
  border-radius:50%;
  
}
.product .time-sale-product{
	bottom:20px;
  	width:100%;
  transition:all .3s ease;
}
.product .time-sale-product ul{
	display:flex;
  justify-content: center;
  padding:0;
}
.product .time-sale-product ul li{
	list-style-type:none;
  width:50px;
  height:50px;
  background:#fff;
  margin-right:10px;
  text-align:center;
  padding-top:5px;
}
.product .time-sale-product ul li span{
	text-transform:capitalize;
  position:relative;
  top:-10px;
}
.product .img-product:hover .time-sale-product{
	bottom:20%;
}
.product .info-product{
	position:relative;
}
.shop-page .product .img-product:before{
	content: "";
    position: relative;
    padding-top: 121.882129%;
    display: block;
}
.shop-page .product .img-product img{
	position:absolute;
  top:0;
}
.filter-sort.wrap-filter-sorting{
	position:relative;
}
.filter-sort.wrap-filter-sorting:after{
	content:"\e64b";
  display:inline-block;
  position:absolute;
  top: 15px;
  right: -20px;
  font-size: 14px;
  font-family: 'themify';
}
.product-list .product-info .engoj_select_color{
	text-align: right;
    right: 28%;
    top: 30%;
}
.product-list .img-product img{
	width:100%;
}
.spr-icon.spr-icon-star{
	color:#f2b03d;
}
/* ============================================================
   SWAPOT — New section styles added during WP migration
   ============================================================ */

/* ── Announcement Bar (homepage only, white bg) ────────────── */
.announcement-bar {
    background: #fff;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
    padding: 11px 0;
    border-bottom: 1px solid #e8e8e8;
}
.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.announcement-bar__center {
    flex: 1;
    text-align: center;
    font-weight: 700;
    color: var(--swapot-green);
    letter-spacing: .04em;
}
.announcement-bar__left,
.announcement-bar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.announcement-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #555;
    text-decoration: none;
    font-size: 12px;
    transition: color .2s;
}
.announcement-bar__link i { font-size: 12px; line-height: 1; }
.announcement-bar__link:hover { color: #1a1a1a; text-decoration: none; }
.announcement-bar__sep { color: #ccc; font-size: 10px; margin: 0 2px; }
@media (max-width: 767px) {
    .announcement-bar__left { display: none; }
    .announcement-bar__right { display: none; }
    .announcement-bar__center { text-align: center; }
}

/* ── Hero Split ────────────────────────────────────────────── */
/* Full-width section with cream bg; content sits inside Bootstrap container
   matching the header's 1200px alignment. Shopify ref: padding 40px 48px. */
.hero-split {
    background: #f5f0e6;
    overflow: hidden;
    padding: 40px 0;
}
.hero-split__grid {
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 500px;
}
/* Left column: ~45% of container, right ~55% via flex: 1 */
.hero-split__left {
    flex: 0 0 44%;
    max-width: 44%;
}
.hero-split__right {
    flex: 1;
    min-width: 0;
}
/* Tag — pill badge style matching Shopify */
.hero-split__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #1a1a1a;
    margin-bottom: 24px;
    border: 1.5px solid rgba(26,26,26,.22);
    border-radius: 24px;
    padding: 6px 14px 6px 10px;
    background: rgba(255,255,255,.55);
}
.hero-split__tag-dot {
    width: 8px; height: 8px;
    background: var(--swapot-green, #3a9d57);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.hero-split__heading {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--swapot-dark, #1a1a1a);
    margin: 0 0 22px;
}
.hero-split__heading-hl { color: var(--swapot-green, #3a9d57); }
.hero-split__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    max-width: 440px;
}
.hero-split__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
/* Buttons: uppercase to match Shopify style */
.hero-split__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}
/* Primary (green) — append arrow via CSS */
.hero-split__btn--primary {
    background: var(--swapot-green, #3a9d57);
    color: #fff;
    border: 2px solid var(--swapot-green, #3a9d57);
}
.hero-split__btn--primary::after {
    content: ' →';
    font-size: 14px;
    margin-left: 2px;
    font-weight: 400;
    letter-spacing: 0;
}
.hero-split__btn--primary:hover {
    background: #2e8047;
    border-color: #2e8047;
    color: #fff;
    text-decoration: none;
}
/* Secondary (dark fill — matches Shopify dark button) */
.hero-split__btn--outline {
    background: var(--swapot-dark, #1a1a1a);
    color: #fff;
    border: 2px solid var(--swapot-dark, #1a1a1a);
}
.hero-split__btn--outline:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    text-decoration: none;
}
.hero-split__footnote {
    font-size: 12px;
    color: #888;
    margin: 0;
}
/* Right column image */
.hero-split__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}
.hero-split__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-split__image-placeholder {
    width: 100%; height: 100%;
    background: #ddd;
}
/* Floating product card */
.hero-split__card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    min-width: 220px;
    max-width: 300px;
}
.hero-split__card-thumb {
    width: 52px; height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.hero-split__card-thumb--placeholder {
    background: #e8e8e8;
    width: 52px; height: 52px;
    border-radius: 8px;
    flex-shrink: 0;
}
.hero-split__card-info { flex: 1; min-width: 0; }
.hero-split__card-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.hero-split__card-price {
    display: block;
    font-size: 13px;
    color: var(--swapot-green, #3a9d57);
    font-weight: 600;
}
.hero-split__card-link {
    width: 32px; height: 32px;
    background: var(--swapot-green, #3a9d57);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
    transition: background .2s;
}
.hero-split__card-link:hover { background: #2e8047; color: #fff; text-decoration: none; }
/* ── Hero responsive ─── */
@media (max-width: 991px) {
    .hero-split { padding: 0; }
    .hero-split__grid {
        flex-direction: column;
        min-height: auto;
        gap: 0;
    }
    .hero-split__left,
    .hero-split__right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /* Image first on mobile, text below */
    .hero-split__right { order: 1; }
    .hero-split__left  { order: 2; padding: 36px 0 32px; }
    .hero-split__image-wrap {
        height: 360px;
        border-radius: 0;
    }
    .hero-split__heading { font-size: 34px; }
    .hero-split__desc { max-width: 100%; }
}
@media (max-width: 480px) {
    .hero-split__left { padding: 28px 0 24px; }
    .hero-split__ctas { flex-direction: column; }
    .hero-split__btn  { justify-content: center; }
    .hero-split__image-wrap { height: 300px; }
    .hero-split__card { left: 12px; bottom: 12px; min-width: 180px; }
}

/* ── Impact Counter ────────────────────────────────────────── */
/* ── Eco Banner (full-width image section) ─────────────────── */
.eco-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: block;
    line-height: 0;
}
.eco-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 991px) {
    .eco-banner { height: 360px; }
}
@media (max-width: 480px) {
    .eco-banner { height: 260px; }
}

/* ── Testimonials — premium card carousel ──────────────────────
   Redesigned to match the site's established language: a big bold
   heading with a green highlight word (same convention as .cs-heading /
   categories-soon), and the quote itself promoted into an actual white
   card with a soft shadow (matching .blog-card / .swapot-sell__success)
   instead of floating bare text on the section background. Nav arrows
   removed in favour of dots only — the more common, cleaner carousel
   pattern the team asked for. */
.swapot-testimonials {
    background: #d9ede3;
    padding: 90px 0;
}

/* Section header — small pill eyebrow + big heading, same convention as
   the rest of the site (see .cs-heading in Categories Coming Soon). */
.testi-header { margin-bottom: 48px; }
.testi-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--swapot-dark, #1a1a1a);
    background: rgba(255,255,255,.55);
    border: 1.5px solid rgba(26,26,26,.15);
    border-radius: 24px;
    padding: 7px 16px;
    margin: 0 0 18px;
}
.testi-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.01em;
    color: var(--swapot-dark, #1a1a1a);
    margin: 0;
}
.testi-title__hl { color: var(--swapot-green, #3a9d57); }

/* Slide + card */
/* Top padding here must clear the quote badge's protrusion above the card
   (badge sits at top: -14px, so ~14px pokes above the card) — Owl
   Carousel's own .owl-stage-outer has overflow: hidden, so anything
   poking out past this element's own box gets visually clipped. */
.testi-slide { padding: 24px 12px 40px; }
.testi-slide__card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(26,26,26,.08);
    padding: 56px 56px 36px;
    text-align: center;
}
/* An actual typographic quotation mark, not an icon font glyph — simpler,
   and guaranteed to render everywhere. Georgia's quote-mark shape reads
   clearly at large size; the glyph naturally sits high in its line-box,
   so padding-bottom nudges it down to look centred in the circle. */
.testi-slide__quote-icon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--swapot-green, #3a9d57);
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 8px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(58,157,87,.3);
}

/* Quote */
.testi-slide__quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--swapot-dark, #1a1a1a);
    max-width: 540px;
    margin: 8px auto 28px;
    padding: 0;
    border: none;
    font-style: normal;
    font-weight: 500;
}
.testi-slide__quote p { margin: 0; }

/* Author row — avatar + name/role side by side, centred as a unit */
.testi-slide__author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}
.testi-slide__author-info { text-align: left; }

/* Avatar circle */
.testi-slide__avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testi-slide__avatar-img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; display: block; }
.testi-slide__avatar-placeholder {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--swapot-dark, #1a1a1a);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
    letter-spacing: .02em;
}

.testi-slide__name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--swapot-dark, #1a1a1a);
    margin-bottom: 2px;
}
.testi-slide__role {
    display: block;
    font-size: 13px;
    color: #888;
}

/* Dots — brand green, larger touch target than the old bare-black dots */
.swapot-testimonials .owl-carousel { position: relative; }
.swapot-testimonials .owl-dots {
    margin-top: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.swapot-testimonials .owl-dots .owl-dot {
    padding: 6px;
}
.swapot-testimonials .owl-dots .owl-dot span {
    display: block;
    background: rgba(26,26,26,.18);
    width: 8px; height: 8px;
    border-radius: 50%;
    transition: background .2s, transform .2s;
}
.swapot-testimonials .owl-dots .owl-dot.active span,
.swapot-testimonials .owl-dots .owl-dot:hover span {
    background: var(--swapot-green, #3a9d57);
    transform: scale(1.25);
}

/* Responsive */
@media (max-width: 767px) {
    .testi-title { font-size: 28px; }
    .testi-slide__card { padding: 48px 28px 28px; border-radius: 14px; }
    .testi-slide__quote { font-size: 16px; }
}
@media (max-width: 480px) {
    .swapot-testimonials { padding: 60px 0; }
    .testi-slide { padding: 24px 0 32px; }
    .testi-slide__card { padding: 44px 20px 24px; }
}

/* ── Blog Preview ──────────────────────────────────────────── */
.blog-preview { background: #fff; }
.blog-preview__col { margin-bottom: 30px; }
.blog-card { border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,.06); height: 100%; display: flex; flex-direction: column; }
.blog-card__image { height: 220px; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__image--placeholder { height: 220px; background: #e8e8e8; }
.blog-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card__date { font-size: 12px; color: #aaa; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; display: block; }
.blog-card__title { font-size: 17px; font-weight: 700; line-height: 1.4; margin: 0 0 10px; }
.blog-card__title a { color: #1a1a1a; text-decoration: none; }
.blog-card__title a:hover { color: var(--swapot-green, #3a9d57); }
.blog-card__excerpt { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card__read-more { font-size: 13px; font-weight: 600; color: var(--swapot-green, #3a9d57); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.blog-card__read-more:hover { color: #2e8047; text-decoration: none; }

/* ── Cart icon green (item #4) ──────────────────────────────── */
.header-icon--cart .icon-count,
.header-cart-count {
    background: var(--swapot-green, #3a9d57);
    color: #fff;
}

/* ── Footer 4-column overrides ─────────────────────────────── */
.footer-v1 { background: var(--swapot-dark, #1a1a1a); color: #aaa; padding: 72px 0 0; }
/*
 * Bootstrap 3's .row has margin: 0 -15px which cancels the container's 15px padding,
 * leaving only a 15px edge gutter while inter-column gaps are 30px.
 * Increasing container padding to 30px makes all gutters visually equal.
 */
.footer-v1 .container { padding-left: 30px; padding-right: 30px; }
.footer-top { padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col { padding-top: 0; padding-bottom: 0; margin-bottom: 32px; }
.footer-heading {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    margin-top: 0;
}
.footer-description {
    font-size: 12px;
    color: #888;
    line-height: 25px;
    text-transform: uppercase;
    padding-right: 30px;
    padding-bottom: 30px;
    margin: 16px 0 0;
}
/* Footer logo */
.footer-logo { margin-bottom: 0; }
.footer-logo-img { max-height: 60px; width: auto; display: block; }
.footer-logo img { max-height: 60px; width: auto; }
.footer-logo a img { max-height: 60px; }
.footer-logo-text { color: #fff; font-size: 22px; font-weight: 700; text-decoration: none; }
/* Social icons */
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-icon {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #888;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.footer-social-icon:hover { background: var(--swapot-green, #3a9d57); border-color: var(--swapot-green, #3a9d57); color: #fff; text-decoration: none; }
.footer-social-icon--tiktok svg { display: block; }
/* Footer nav lists */
.footer-nav-list { padding: 0; margin: 0; }
.footer-nav-list li { list-style: none; margin-bottom: 20px; }
.footer-nav-list li a { color: #888; font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-nav-list li a:hover { color: #fff; text-decoration: none; }
/* Footer newsletter */
.footer-newsletter-desc { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 18px; }
.footer-newsletter-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-newsletter-input {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    outline: none;
    padding: 11px 14px;
    color: #fff;
    font-size: 13px;
    box-sizing: border-box;
}
.footer-newsletter-input::placeholder { color: #666; }
.footer-newsletter-btn {
    width: 100%;
    background: var(--swapot-green, #3a9d57);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.footer-newsletter-btn:hover { background: #2e8047; }
.footer-newsletter-btn { display: flex; align-items: center; justify-content: center; gap: 8px; }
.footer-newsletter-btn:disabled { opacity: .7; cursor: default; }
.footer-newsletter-placeholder { font-size: 13px; color: #555; }
.footer-newsletter-msg { font-size: 12px; margin: -6px 0 12px; line-height: 1.5; }
.footer-newsletter-msg--error { color: #e06666; }
.footer-newsletter-msg--success { color: var(--swapot-green, #3a9d57); }
.footer-payment-img img { max-height: 36px; opacity: .6; }
/* Footer bottom bar */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-copy { font-size: 12px; color: #555; margin: 0; }
.footer-copy a { color: #888; text-decoration: none; }
.footer-copy a:hover { color: #fff; }
/* Footer bottom nav (Privacy / Terms / Returns) */
.footer-bottom-nav { margin: 0; }
.footer-bottom-nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-bottom-nav-list li { margin: 0; }
.footer-bottom-nav-list li a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    transition: color .2s;
}
.footer-bottom-nav-list li a:hover { color: #fff; text-decoration: none; }
@media (max-width: 767px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-bottom-nav-list { gap: 16px; flex-wrap: wrap; }
}

/* =============================================================
   PAGE TITLE BAR  (page.php — loaded on all pages)
   ============================================================= */
.page-title-bar {
  background: #fafafa;
  border-bottom: 1px solid #ebebeb;
  padding: 20px 0;
  margin-bottom: 0;
}
.page-title-bar__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--swapot-dark);
  margin: 0;
  line-height: 1.3;
}
.page-title-bar .swapot-breadcrumb {
  line-height: 30px;
  font-size: 12px;
}

/* =============================================================
   BLOG — single post + archive (single.php, archive.php)
   ============================================================= */

/* ── Archive: post card grid ─────────────────────────────────── */
.blog-archive-grid {
  padding: 50px 0 60px;
}
.blog-post-card {
  margin-bottom: 40px;
}
.blog-post-card__thumb {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 18px;
  background: #f5f5f5;
}
.blog-post-card__thumb img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.blog-post-card__thumb:hover img {
  transform: scale(1.04);
}
.blog-post-card__thumb--placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-post-card__thumb--placeholder i {
  font-size: 48px;
  color: #ddd;
}
.blog-post-card__meta {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.blog-post-card__meta a {
  color: var(--swapot-green);
  font-weight: 600;
}
.blog-post-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--swapot-dark);
  line-height: 1.35;
  margin: 0 0 10px;
}
.blog-post-card__title a {
  color: var(--swapot-dark);
  transition: color .2s;
}
.blog-post-card__title a:hover { color: var(--swapot-green); }
.blog-post-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}
.blog-post-card__readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--swapot-green);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  transition: color .2s;
}
.blog-post-card__readmore:hover { color: var(--swapot-dark); }

/* Archive pagination */
.blog-pagination {
  padding: 20px 0 40px;
  text-align: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--swapot-dark);
  text-decoration: none;
  margin: 0 2px;
  transition: background .2s, color .2s, border-color .2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--swapot-green);
  border-color: var(--swapot-green);
  color: #fff;
}
.blog-pagination .page-numbers.dots {
  border: none;
  pointer-events: none;
  color: #aaa;
}

/* ── Single post ─────────────────────────────────────────────── */
.single-post-wrap {
  padding: 50px 0 70px;
}
.single-post-featured-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 36px;
  max-height: 480px;
  object-fit: cover;
}
.single-post-meta {
  font-size: 13px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.single-post-meta a { color: var(--swapot-green); font-weight: 600; }
.single-post-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--swapot-dark);
  line-height: 1.3;
  margin: 0 0 30px;
}
.single-post-body {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}
.single-post-body h2, .single-post-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--swapot-dark);
  margin: 36px 0 14px;
}
.single-post-body p { margin-bottom: 20px; }
.single-post-body img { border-radius: 8px; max-width: 100%; }
.single-post-body a { color: var(--swapot-green); text-decoration: underline; }

/* Post nav (prev / next) */
.single-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #ebebeb;
  margin-top: 50px;
}
.post-nav-link {
  flex: 1;
  max-width: 48%;
}
.post-nav-link a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color .2s;
}
.post-nav-link a:hover { color: var(--swapot-green); }
.post-nav-link--next { text-align: right; justify-content: flex-end; }
.post-nav-link--next a { justify-content: flex-end; }
.post-nav-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #bbb;
  margin-bottom: 4px;
}
.post-nav-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--swapot-dark);
  line-height: 1.35;
}

/* ── 404 page ─────────────────────────────────────────────────── */
.page-404-wrap {
  padding: 80px 20px 100px;
  text-align: center;
}
.page-404-number {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: var(--swapot-green);
  opacity: .15;
  margin: 0;
}
.page-404-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--swapot-dark);
  margin: -20px 0 14px;
  position: relative;
}
.page-404-desc {
  font-size: 16px;
  color: #888;
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.page-404-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Off-canvas menu — top-tab redesign ──────────────────────────── */
.pushmenu-topbar {
    display: flex;
    align-items: stretch;
    background: var(--swapot-dark);
    flex-shrink: 0;
    height: 58px;
}
.pushmenu-tabs {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
    flex: 1;
    list-style: none;
}
.pushmenu-tabs li {
    display: flex;
    margin: 0;
}
.pushmenu-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.pushmenu-tabs li.active .pushmenu-tab-btn {
    color: #fff;
    border-bottom-color: var(--swapot-green);
}
.pushmenu-tab-btn:hover,
.pushmenu-tab-btn:focus {
    color: #fff;
    text-decoration: none;
}
.pushmenu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
.pushmenu-close:hover {
    color: #fff;
}
.pushmenu-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mn-mobile-content-tab {
    padding-top: 0 !important;
    height: auto !important;
    overflow: visible !important;
}

/* ==========================================================================
   Swapot — Sell Furniture Form  (migrated from page-sell-furniture.liquid)
   ========================================================================== */

/* UI fix (2026-07-24): removed the redundant "List Your Furniture" H2 that
   used to sit here — the hero banner above this section already shows a
   large "Sell Your Furniture" H1 + breadcrumb, and (worse) that H2 read the
   very same swapot_sell_form_heading Customizer setting as the hero title
   with just a different fallback default, so the two would've shown
   identical text the moment anyone actually saved that field. Only the
   instructional subtitle remains here now. */
.swapot-sell__subtitle {
    font-size: 14px;
    color: #888;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

.swapot-sell__form {
    background: #fff;
    border-radius: 14px;
    padding: 48px 52px;
    box-shadow: 0 4px 36px rgba(26, 26, 26, 0.07);
    border: 1px solid #e8eceb;
}

.swapot-sell__label {
    display: block;
    font-family: var(--swapot-font, 'Lota Grotesque', Arial, Helvetica, sans-serif);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--swapot-dark, #1a1a1a);
    margin-bottom: 9px;
}

.swapot-sell__required { color: var(--swapot-green, #3a9d57); }
.swapot-sell__optional { font-weight: 400; font-size: 11px; color: #999; }

.swapot-sell__photo-hint {
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
    color: #aaa;
}

.swapot-sell__input.form-control.bdr {
    height: 52px;
    border: 1.5px solid #e2e8e5;
    border-radius: 6px;
    background: #f8faf9;
    font-size: 14px;
    color: var(--swapot-dark, #1a1a1a);
    padding: 0 16px;
    width: 100%;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
    -webkit-appearance: none;
}
.swapot-sell__input.form-control.bdr::placeholder { color: #bbb; }
.swapot-sell__input.form-control.bdr:focus {
    border-color: var(--swapot-green, #3a9d57);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(58, 157, 87, 0.13);
    outline: none;
}
.swapot-sell__input.form-control.bdr[readonly] {
    background: #f0f2f1;
    color: #888;
    cursor: default;
}

.swapot-sell__col { margin-bottom: 0; }
.swapot-sell__form .form-group { margin-bottom: 24px; }
.swapot-sell__form .form-group.row { margin-bottom: 24px; }

/* ── Upload zone ─────────────────────────────────────────────────── */
.swapot-upload__zone {
    position: relative;
    border: 2px dashed #d4ddd9;
    border-radius: 10px;
    background: #f8faf9;
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
    outline: none;
}
.swapot-upload__zone:hover,
.swapot-upload__zone:focus,
.swapot-upload__zone.is-dragover {
    border-color: var(--swapot-green, #3a9d57);
    background: rgba(58, 157, 87, 0.04);
    box-shadow: 0 2px 18px rgba(58, 157, 87, 0.1);
}
.swapot-upload__zone.is-full { opacity: .55; pointer-events: none; }

.swapot-upload__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.swapot-upload__icon {
    color: #69c48c;
    margin-bottom: 14px;
    line-height: 0;
    display: inline-block;
}
.swapot-upload__zone-text  { font-size: 15px; font-weight: 600; color: var(--swapot-dark, #1a1a1a); margin: 0 0 4px; }
.swapot-upload__zone-sub   { font-size: 14px; color: #888; margin: 0 0 10px; }
.swapot-upload__browse-link {
    color: var(--swapot-green, #3a9d57);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .18s ease;
}
.swapot-upload__browse-link:hover { color: #2e7d45; }
.swapot-upload__zone-hint { font-size: 12px; color: #aaa; margin: 0; }

/* Preview grid */
.swapot-upload__previews {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.swapot-upload__previews:empty { display: none; }

.swapot-preview-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid #e2e8e5;
    background: #f0f2f1;
}
.swapot-preview-item__img    { width: 100%; height: 100%; object-fit: cover; display: block; }
.swapot-preview-item__remove {
    position: absolute;
    top: 5px; right: 5px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.72);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    padding: 0;
    transition: background .18s ease;
    z-index: 3;
}
.swapot-preview-item__remove:hover { background: #d32f2f; }
.swapot-preview-item__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.65));
    color: #fff;
    font-size: 9px;
    padding: 10px 5px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}
.swapot-upload__error {
    color: #c62828;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
}

/* Submit button */
.swapot-sell__submit-wrap { margin-top: 8px; margin-bottom: 0; }

.swapot-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--swapot-green, #3a9d57);
    color: #fff;
    border: 2px solid var(--swapot-green, #3a9d57);
    border-radius: 6px;
    padding: 0 42px;
    height: 52px;
    font-family: var(--swapot-font, 'Lota Grotesque', Arial, Helvetica, sans-serif);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, transform .18s ease, box-shadow .22s ease;
    -webkit-appearance: none;
}
.swapot-btn:hover {
    background: transparent;
    color: var(--swapot-green, #3a9d57);
    box-shadow: 0 4px 20px rgba(58, 157, 87, 0.2);
    transform: translateY(-1px);
    text-decoration: none;
}
.swapot-btn:active  { transform: translateY(0); }
.swapot-btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }
.swapot-btn__arrow  { display: flex; align-items: center; transition: transform .22s ease; }
.swapot-btn:hover .swapot-btn__arrow { transform: translateX(4px); }

/* Link below form */
.swapot-sell__listings-link { margin-top: 24px; }
.swapot-sell__view-listings-link {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color .18s ease;
}
.swapot-sell__view-listings-link:hover { color: var(--swapot-green, #3a9d57); }

/* Success state */
.swapot-sell__success {
    background: #fff;
    border-radius: 14px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 4px 36px rgba(26, 26, 26, 0.07);
    border: 1px solid #e8eceb;
}
.swapot-sell__success-icon {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: rgba(58, 157, 87, 0.1);
    color: var(--swapot-green, #3a9d57);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 24px;
}
.swapot-sell__success h3   { font-size: 26px; font-weight: 700; color: var(--swapot-dark, #1a1a1a); margin-bottom: 12px; }
.swapot-sell__success p    { font-size: 15px; color: #888; max-width: 380px; margin: 0 auto; line-height: 1.7; }

/* Responsive */
@media (max-width: 991px) {
    .swapot-sell__form { padding: 40px 36px; }
}
@media (max-width: 767px) {
    .swapot-sell__form     { padding: 28px 20px; border-radius: 10px; }
    .swapot-sell__col      { margin-bottom: 24px; }
    .swapot-sell__col:last-child { margin-bottom: 0; }
    .swapot-upload__previews { grid-template-columns: repeat(3, 1fr); }
    .swapot-btn            { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .swapot-upload__previews { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================================
   Swapot — My Listings Page  (migrated from page-my-listings.liquid)
   ========================================================================== */

.swapot-ml__title {
    font-family: var(--swapot-font, 'Lota Grotesque', Arial, Helvetica, sans-serif);
    font-weight: 700;
    font-size: 38px;
    color: var(--swapot-dark, #1a1a1a);
    margin: 0 0 14px;
    line-height: 1.2;
}
.swapot-ml__subtitle {
    font-size: 16px;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Card (guest sign-in / empty) */
.swapot-ml__card {
    background: #fff;
    border-radius: 14px;
    padding: 48px 52px;
    box-shadow: 0 4px 36px rgba(26, 26, 26, 0.07);
    border: 1px solid #e8eceb;
    text-align: center;
}
.swapot-ml__card-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(58, 157, 87, 0.1);
    color: var(--swapot-green, #3a9d57);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.swapot-ml__card-title { font-size: 22px; font-weight: 700; color: var(--swapot-dark, #1a1a1a); margin: 0 0 10px; }
.swapot-ml__card-text  { font-size: 15px; color: #888; line-height: 1.7; margin: 0 0 28px; max-width: 380px; margin-left: auto; margin-right: auto; }

/* Divider */
.swapot-ml__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 8px 0 4px;
}
.swapot-ml__divider::before,
.swapot-ml__divider::after { content: ''; flex: 1; height: 1px; background: #e8eceb; }

/* Magic link input */
.swapot-ml__input-wrap { margin-bottom: 16px; }
.swapot-ml__input.form-control.bdr {
    height: 52px;
    border: 1.5px solid #e2e8e5;
    border-radius: 6px;
    background: #f8faf9;
    font-size: 14px;
    color: var(--swapot-dark, #1a1a1a);
    padding: 0 16px;
    width: 100%;
    transition: border-color .22s ease, box-shadow .22s ease;
    -webkit-appearance: none;
    text-align: center;
}
.swapot-ml__input.form-control.bdr::placeholder { color: #bbb; }
.swapot-ml__input.form-control.bdr:focus {
    border-color: var(--swapot-green, #3a9d57);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(58, 157, 87, 0.13);
    outline: none;
}
.swapot-ml__btn { width: 100%; justify-content: center; }

/* Status / error messages */
.swapot-ml__error {
    color: #c62828;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #fdf0f0;
    border-radius: 6px;
    border: 1px solid #f5c6c6;
}
.swapot-ml__success-msg {
    color: #2e7d45;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 14px;
    background: rgba(58, 157, 87, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(58, 157, 87, 0.25);
    line-height: 1.6;
}

/* Viewing as label */
.swapot-ml__viewing-as {
    font-size: 13px;
    color: #888;
    margin-bottom: 28px;
    text-align: center;
}

/* Spinner */
.swapot-ml__spinner {
    width: 36px; height: 36px;
    border: 3px solid #e8eceb;
    border-top-color: var(--swapot-green, #3a9d57);
    border-radius: 50%;
    animation: swapotSpin .7s linear infinite;
    margin: 0 auto;
}
@keyframes swapotSpin { to { transform: rotate(360deg); } }

/* ── Listing card ────────────────────────────────────────────── */
.swapot-listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8eceb;
    box-shadow: 0 2px 18px rgba(26, 26, 26, 0.05);
    transition: transform .22s ease, box-shadow .22s ease;
    height: 100%;
}
.swapot-listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
}
.swapot-listing-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f2f1;
}
.swapot-listing-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.swapot-listing-card:hover .swapot-listing-card__img { transform: scale(1.04); }
.swapot-listing-card__img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}
.swapot-listing-card__body {
    padding: 18px 20px 22px;
}
.swapot-listing-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--swapot-dark, #1a1a1a);
    margin: 0 0 6px;
    line-height: 1.35;
}
.swapot-listing-card__meta  { font-size: 12px; color: #aaa; margin: 0 0 8px; }
.swapot-listing-card__price { font-size: 15px; font-weight: 700; color: var(--swapot-green, #3a9d57); margin: 0 0 10px; }
.swapot-listing-card__link  { font-size: 13px; color: var(--swapot-green, #3a9d57); text-decoration: none; font-weight: 600; }
.swapot-listing-card__link:hover { text-decoration: underline; }

/* Status badges */
.swapot-badge {
    position: absolute;
    top: 10px; left: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    line-height: 1.6;
}
.swapot-badge--live     { background: #dcfce7; color: #16a34a; }
.swapot-badge--sold     { background: #f3f4f6; color: #6b7280; }
.swapot-badge--review   { background: #fef3c7; color: #d97706; }
.swapot-badge--rejected { background: #fee2e2; color: #dc2626; }

@media (max-width: 767px) {
    .swapot-ml__title  { font-size: 28px; }
    .swapot-ml__card   { padding: 32px 20px; }
    .swapot-ml__btn    { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   KAAMKREW ADD-ON SERVICES — PDP card, mini-cart lines, cart page rows
   Mirrors E:/swapot/theme/assets/fix_style.css — pk-addon* and pk-addons*
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── PDP: Add-on card container ─────────────────────────────────────────── */
.pk-addons {
    margin-top: 18px;
    margin-bottom: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
}

/* Header row: brand mark + section title + optional badge */
.pk-addons__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
}

.pk-addons__brand {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.pk-addons__brand-logo {
    height: 22px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Coloured letter mark shown when no logo image is uploaded */
.pk-addons__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pk-brand-color, #e84393);
    color: #fff;
    font-family: var(--swapot-font, inherit);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.pk-addons__section-title {
    font-family: var(--swapot-font, inherit);
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    align-self: flex-end;
    padding-bottom: 1px;
}

.pk-addons__badge {
    font-family: var(--swapot-font, inherit);
    font-size: 11px;
    font-weight: 500;
    color: #777;
    background: #f2f2f2;
    border: 1px solid #e5e5e5;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Subtitle */
.pk-addons__subtitle {
    font-family: var(--swapot-font, inherit);
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin: 0 0 4px;
    line-height: 1.4;
}

/* ── Addon card row (clickable label) ──────────────────────────────────── */
.pk-addons__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-top: 10px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 0;
}

.pk-addons__row:hover {
    background: #fafafa;
    border-color: #d0d0d0;
}

/* Selected state — triggered by :has() when the hidden checkbox is checked */
.pk-addons__row:has(.pk-addons__input:checked) {
    border-color: var(--pk-accent, var(--swapot-green, #3a9d57));
    background: #fff;
}

.pk-addons__row:has(.pk-addons__input:checked) .pk-addons__icon {
    background: var(--pk-accent, var(--swapot-green, #3a9d57));
}

/* ── Icon bubble — one shared background for every service (arbitrary
   count, not just two fixed slots), overridden to the accent green on
   selection above. ───────────────────────────────────────────────────── */
.pk-addons__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    background: #1a1a1a;
    transition: background 0.2s ease;
}

.pk-addons__icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.pk-addons__icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

/* ── Text block ────────────────────────────────────────────────────────── */
.pk-addons__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.pk-addons__name {
    font-family: var(--swapot-font, inherit);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.pk-addons__desc {
    font-family: var(--swapot-font, inherit);
    font-size: 12px;
    font-weight: 400;
    color: #999;
    line-height: 1.4;
}

/* ── Custom checkbox ───────────────────────────────────────────────────── */
.pk-addons__control {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Hide the native checkbox visually; it stays accessible */
.pk-addons__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Custom checkbox square */
.pk-addons__box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1.5px solid #d0d0d0;
    border-radius: 5px;
    background: #fff;
    transition: background 0.15s ease, border-color 0.15s ease, border-radius 0.15s ease;
    flex-shrink: 0;
}

/* Checked: filled green circle */
.pk-addons__input:checked + .pk-addons__box {
    background: var(--pk-accent, var(--swapot-green, #3a9d57));
    border-color: var(--pk-accent, var(--swapot-green, #3a9d57));
    border-radius: 50%;
}

/* Checkmark drawn via CSS */
.pk-addons__input:checked + .pk-addons__box::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

/* ── Mobile tweaks ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .pk-addons__row {
        padding: 12px 14px;
        gap: 10px;
    }
    .pk-addons__icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    .pk-addons__name { font-size: 13px; }
}

/* ── Mini-cart / cart-page: addon line display ─────────────────────────── */

/* Stack addon lines below the product row in the push-cart item */
.push-cart-item {
    flex-wrap: wrap;
}

.pk-addon-lines {
    flex: 0 0 100%;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Cart-page variant (inside a <tr> below the product row) */
.pk-addon-lines--page {
    padding-left: 0;
    margin-top: 0;
    max-width: 560px;
}

.kk-addon-cart-row {
    border-top: none !important;
}

.kk-addon-cart-cell {
    padding-top: 0 !important;
    padding-bottom: 14px !important;
    border-top: none !important;
    /* No padding-left here anymore — cart.php now precedes this cell with an
       empty spacer <td> (matching the "remove" column) so the content lines
       up with the thumbnail column's real width instead of a guessed value.
       See .kk-addon-cart-spacer in swapot-woocommerce.css. */
}

/* Individual addon line */
.pk-addon-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 7px 10px 7px 9px;
    border-left: 2.5px solid var(--pk-accent, var(--swapot-green, #3a9d57));
    background: rgba(0, 0, 0, 0.028);
    border-radius: 0 5px 5px 0;
    font-family: var(--swapot-font, inherit);
}

/* Icon bubble */
.pk-addon-line__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--pk-accent, var(--swapot-green, #3a9d57));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pk-addon-line__icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.pk-addon-line__icon svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Text block */
.pk-addon-line__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pk-addon-line__name {
    font-size: 12px;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.3;
}

.pk-addon-line__desc {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    line-height: 1.35;
}

/* "Add-on" badge */
.pk-addon-line__tag {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 1px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #aaa;
}

/* =============================================================
   HOW IT WORKS PAGE
   Structural CSS for hiw-hero, hiw-steps, and hiw-cta sections.
   Colour/spacing overrides are output inline by each template
   (swapot_hiw_* Customizer settings).
   ============================================================= */

/* ── Hero banner ──────────────────────────────────────────────── */
.sw-hiw-hero {
    position: relative;
}
.sw-hiw-hero .sw-hero-inner {
    position: relative;
    z-index: 1;
}
.sw-hiw-hero .sw-hero-breadcrumb {
    font-size: 13px;
    margin-bottom: 14px;
}
.sw-hiw-hero .sw-hero-breadcrumb a {
    text-decoration: none;
    transition: color 0.15s ease;
}
.sw-hiw-hero .sw-hero-breadcrumb .sw-crumb-sep {
    margin: 0 7px;
}
.sw-hiw-hero .sw-hero-heading {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.15;
}
.sw-hiw-hero .sw-hero-sub {
    font-size: 15px;
    line-height: 1.65;
    max-width: 580px;
    margin: 0;
}

/* ── Steps section wrapper ────────────────────────────────────── */
.sw-hiw-steps .sw-steps-inner {
    border-radius: 12px;
    padding: 56px 48px;
}
.sw-hiw-steps .sw-steps-header {
    text-align: center;
    margin-bottom: 48px;
}
.sw-hiw-steps .sw-steps-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.sw-hiw-steps .sw-steps-heading {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 14px;
    max-width: 640px;
}
.sw-hiw-steps .sw-steps-sub {
    font-size: 15px;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Steps timeline ───────────────────────────────────────────── */
.sw-hiw-steps .sw-steps-list {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}
.sw-hiw-steps .sw-steps-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: 24px;
    width: 2px;
    transform: translateX(-50%);
    z-index: 0;
}

/* ── Step row ─────────────────────────────────────────────────── */
.sw-hiw-steps .sw-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 40px;
}
.sw-hiw-steps .sw-step:last-child {
    margin-bottom: 0;
}
.sw-hiw-steps .sw-step--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/* ── Card half and empty spacer ──────────────────────────────── */
.sw-hiw-steps .sw-step__half {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}
.sw-hiw-steps .sw-step:not(.sw-step--reverse) .sw-step__half--card {
    padding-right: 36px;
}
.sw-hiw-steps .sw-step--reverse .sw-step__half--card {
    padding-left: 36px;
}

/* ── Step number circle ───────────────────────────────────────── */
.sw-hiw-steps .sw-step__num-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 56px;
    flex: 0 0 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 2px;
}
.sw-hiw-steps .sw-step__num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ── Step card ────────────────────────────────────────────────── */
.sw-hiw-steps .sw-step__card {
    border-radius: 10px;
    padding: 26px 28px;
    -webkit-box-shadow: 0 2px 14px rgba(0,0,0,.07);
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.sw-hiw-steps .sw-step__card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}
.sw-hiw-steps .sw-step__card-desc {
    font-size: 14px;
    line-height: 1.65;
    opacity: .75;
    margin: 0;
}

/* ── Highlight checklist — plain, no boxed/tinted treatment, so it
   reads as part of the card instead of a visually distinct component
   (it previously had a green-tinted background + left border, which made
   the card carrying it look inconsistent with the rest of the timeline). */
.sw-hiw-steps .sw-step__highlight {
    margin-top: 16px;
}
.sw-hiw-steps .sw-step__highlight-lbl {
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 10px;
    display: block;
}
.sw-hiw-steps .sw-step__hi-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 8px;
    line-height: 1.5;
}
.sw-hiw-steps .sw-step__hi-item:last-child {
    margin-bottom: 0;
}
.sw-hiw-steps .sw-step__hi-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    margin-top: 1px;
    font-size: 14px;
}
.sw-hiw-steps .sw-step__hi-text {
    font-size: 13px;
    line-height: 1.5;
}

/* ── CTA banner section ───────────────────────────────────────── */
.sw-hiw-cta {
    position: relative;
    overflow: hidden;
}
.sw-hiw-cta .sw-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.sw-hiw-cta .sw-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}
.sw-hiw-cta .sw-cta-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
}
.sw-hiw-cta .sw-cta-sub {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 28px;
    opacity: .9;
}
.sw-hiw-cta .sw-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, transform .2s ease;
    cursor: pointer;
}
.sw-hiw-cta .sw-cta-btn:hover {
    opacity: .88;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    text-decoration: none;
}
.sw-hiw-cta .sw-cta-btn--no-url {
    cursor: default;
}
.sw-hiw-cta .sw-cta-btn--no-url:hover {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

/* ── Mobile overrides ─────────────────────────────────────────── */
@media (max-width: 767px) {
    .sw-hiw-hero .sw-hero-heading {
        font-size: 28px;
    }
    .sw-hiw-steps .sw-steps-inner {
        padding: 36px 20px;
    }
    .sw-hiw-steps .sw-steps-heading {
        font-size: 24px;
    }
    /* Connecting line removed on mobile — a single vertical column of
       cards reads cleaner without it than the desktop zigzag timeline does. */
    .sw-hiw-steps .sw-steps-list::before {
        display: none;
    }
    .sw-hiw-steps .sw-step,
    .sw-hiw-steps .sw-step--reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row !important;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 16px;
    }
    .sw-hiw-steps .sw-step__half--empty {
        display: none;
    }
    /* order: -1 puts the number first regardless of source order, so it
       reads on the left of the card like a standard numbered stepper —
       previously it rendered after the card (right side) on mobile. */
    .sw-hiw-steps .sw-step__num-col {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
        flex: 0 0 48px;
        padding-top: 0;
        order: -1;
    }
    .sw-hiw-steps .sw-step:not(.sw-step--reverse) .sw-step__half--card,
    .sw-hiw-steps .sw-step--reverse .sw-step__half--card {
        padding-left: 0;
        padding-right: 0;
    }
    .sw-hiw-steps .sw-step__card {
        padding: 18px;
    }
    .sw-hiw-cta .sw-cta-heading {
        font-size: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT SWAPOT PAGE  (.sa-page wrapper + 10 sections)
   Default colours mirror Shopify; Customizer overrides via wp_head.
   ═══════════════════════════════════════════════════════════════════ */

.sa-page * { box-sizing: border-box; }

.sa-wrap         { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sa-wrap--narrow { max-width:  960px; margin: 0 auto; padding: 0 24px; }
.sa-wrap--skinny { max-width:  820px; margin: 0 auto; padding: 0 24px; }

.sa-btn-green {
    display: inline-block; background: #3a9d57; color: #fff !important;
    padding: 13px 28px; border-radius: 50px; font-size: 14px !important;
    font-weight: 600 !important; text-decoration: none !important;
    transition: background .2s; text-transform: none !important;
}
.sa-btn-green:hover { background: #2d7a43; color: #fff !important; }
.sa-btn-outline-white {
    display: inline-block; border: 2px solid rgba(255,255,255,.45);
    color: #fff !important; padding: 12px 28px; border-radius: 50px;
    font-size: 14px !important; font-weight: 600 !important;
    text-decoration: none !important; transition: border-color .2s; text-transform: none !important;
}
.sa-btn-outline-white:hover { border-color: #fff; color: #fff !important; }

@media (max-width: 767px) {
    .sa-wrap, .sa-wrap--narrow, .sa-wrap--skinny { padding: 0 16px; }
}

/* ── Hero ─────────────────────────────────────────────── */
.sa-hero { background: #1c1c1c; padding: 96px 0 120px; }
.sa-hero .sa-wrap { max-width: 1440px; padding: 0; }
.sa-hero__inner {
    max-width: 1280px; margin: 0 auto; padding: 0 59px;
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; height: 600px;
}
.sa-hero__text { display: flex; flex-direction: column; gap: 24px; align-self: center; }
.sa-hero__visual { position: relative; }
.sa-hero__img-wrap { position: relative; border-radius: 18px; overflow: hidden; height: 100%; }
.sa-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-hero__label  { font-size: 11px !important; font-weight: 700 !important; letter-spacing: 2.5px !important; color: #3a9d57 !important; text-transform: uppercase !important; margin: 0 !important; }
.sa-hero__title  { font-size: 56px !important; font-weight: 800 !important; color: #fff !important; line-height: 1.1 !important; margin: 0 !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-hero__desc   { font-size: 15px !important; color: #aaa !important; line-height: 1.75 !important; margin: 0 !important; text-transform: none !important; }
.sa-hero__tagline{ font-size: 14px !important; color: #3a9d57 !important; font-weight: 600 !important; margin: 0 !important; text-transform: none !important; }
.sa-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.sa-hero__badge-delivery {
    position: absolute; top: 20px; left: 20px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    padding: 9px 18px; border-radius: 50px; font-size: 13px !important;
    font-weight: 700 !important; color: #1a1a1a !important;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.15); text-transform: none !important;
}
.sa-hero__badge-delivery svg { color: #3a9d57; flex-shrink: 0; }
.sa-hero__badge-verified {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: #fff; border-radius: 14px; padding: 16px 20px;
    width: 252px; box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.sa-hero__badge-verified-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px !important; font-weight: 700 !important; color: #1a1a1a !important;
    margin: 0 0 6px !important; text-transform: none !important;
}
.sa-hero__badge-verified p { font-size: 13px !important; color: #555 !important; line-height: 1.55 !important; margin: 0 !important; text-transform: none !important; }
@media (max-width: 767px) {
    .sa-hero { padding: 56px 0 48px; }
    .sa-hero .sa-wrap { max-width: 100%; padding: 0 20px; }
    .sa-hero__inner { grid-template-columns: 1fr; height: auto; gap: 40px; padding: 0; }
    .sa-hero__title { font-size: 34px !important; }
    .sa-hero__visual { height: 320px; }
}

/* ── Origin ───────────────────────────────────────────── */
.sa-origin { background: #f5f5f5; padding: 80px 0; }
.sa-origin__heading { font-size: 40px !important; font-weight: 800 !important; color: #1a1a1a !important; text-align: center !important; margin: 0 0 32px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-origin__heading span { color: #3a9d57 !important; }
.sa-origin__story { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 32px 48px; text-align: center; margin: 0 0 48px; }
.sa-origin__story h3 { font-size: 18px !important; font-weight: 700 !important; color: #1a1a1a !important; margin: 0 0 12px !important; text-transform: none !important; letter-spacing: normal !important; line-height: 1.5 !important; }
.sa-origin__story p  { font-size: 14px !important; color: #555 !important; line-height: 1.85 !important; margin: 0 !important; text-transform: none !important; }
.sa-origin__cols { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(12,1fr); column-gap: 24px; align-items: start; }
.sa-origin__photo { grid-column: 1/6; position: relative; }
.sa-origin__photo-img-wrap { border-radius: 16px; overflow: hidden; height: 590px; }
.sa-origin__photo-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.sa-origin__trust-badge { position: absolute; bottom: 0; right: -16px; background: #e8f5ed; border: 1px solid #c2dfc9; border-radius: 8px; padding: 11px 22px; font-size: 13px !important; font-weight: 700 !important; color: #1a1a1a !important; box-shadow: 0 4px 16px rgba(0,0,0,.08); white-space: nowrap; z-index: 2; text-transform: none !important; }
.sa-origin__right { grid-column: 7/13; display: flex; flex-direction: column; gap: 32px; padding: 48px 0; }
.sa-quote-card { position: relative; background: #1a1a1a; border-radius: 8px; border: 1px solid #2a2a2a; border-left: 3px solid #3a9d57; border-bottom: 2px solid #3a9d57; padding: 45px 32px 32px; display: flex; flex-direction: column; gap: 24px; box-shadow: 0 8px 40px rgba(0,0,0,.45),0 2px 10px rgba(0,0,0,.25); }
.sa-quote-card p { font-size: 13px !important; color: #c8c8c8 !important; line-height: 1.85 !important; font-style: italic !important; margin: 0 !important; text-transform: none !important; }
.sa-quote-card__author { font-size: 13px !important; color: #3a9d57 !important; font-weight: 700 !important; font-style: normal !important; display: block; margin: 0 !important; text-transform: none !important; }
.sa-origin__foundation { font-size: 22px !important; font-weight: 700 !important; color: #1a1a1a !important; line-height: 1.4 !important; margin: 0 !important; text-transform: none !important; text-align: center !important; }
.sa-origin__foundation span { color: #3a9d57 !important; }
@media (max-width: 767px) {
    .sa-origin__cols { grid-template-columns: 1fr; }
    .sa-origin__photo, .sa-origin__right { grid-column: auto; }
    .sa-origin__right { padding: 0; }
    .sa-origin__photo-img-wrap { height: 300px; }
    .sa-origin__trust-badge { right: 12px; }
    .sa-origin__story { padding: 24px; }
}

/* ── Why We Exist ─────────────────────────────────────── */
.sa-why { background: #1a1a1a; padding: 80px 0; }
.sa-why__heading { font-size: 40px !important; font-weight: 800 !important; color: #fff !important; text-align: center !important; margin: 0 0 12px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-why__sub { font-size: 15px !important; color: #888 !important; text-align: center !important; margin: 0 0 20px !important; text-transform: none !important; }
.sa-why__divider { width: 56px; height: 3px; background: #3a9d57; margin: 0 auto 48px; }
.sa-why__cards { display: flex; gap: 18px; margin-bottom: 44px; align-items: flex-start; }
.sa-why__card { flex: 1; background: #262626; border: 1px solid #333; border-radius: 14px; padding: 28px; display: flex; flex-direction: column; }
.sa-why__card--light { background: #e8f5ed !important; border-color: #c2dfc9 !important; }
.sa-why__card-icon { color: #3a9d57; margin-bottom: 16px; display: block; flex-shrink: 0; }
.sa-why__card h4 { font-size: 15px !important; font-weight: 700 !important; color: #fff !important; margin: 0 0 10px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-why__card--light h4 { color: #1a1a1a !important; }
.sa-why__card p { font-size: 13px !important; color: #888 !important; line-height: 1.75 !important; margin: 0 !important; text-transform: none !important; }
.sa-why__card--light p { color: #555 !important; }
.sa-why__statement { font-size: 20px !important; font-weight: 700 !important; color: #fff !important; text-align: center !important; margin: 0 0 28px !important; text-transform: none !important; }
.sa-why__hr { border: none; border-top: 1px solid #2e2e2e; margin: 0 0 32px; }
.sa-why__conclusion { font-size: 44px !important; font-weight: 800 !important; color: #3a9d57 !important; text-align: center !important; margin: 0 !important; line-height: 1.15 !important; text-transform: none !important; }
@media (max-width: 991px) { .sa-why__conclusion { font-size: 28px !important; } }
@media (max-width: 767px) { .sa-why__cards { flex-direction: column; } }

/* ── What We Do ───────────────────────────────────────── */
.sa-what { background: #fff; padding: 80px 0; }
.sa-what__heading { font-size: 40px !important; font-weight: 800 !important; color: #1a1a1a !important; text-align: center !important; margin: 0 0 48px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-what__heading span { color: #3a9d57 !important; }
.sa-what__cols { display: flex; gap: 64px; }
.sa-what__col { flex: 1; }
.sa-what__col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.sa-what__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sa-what__icon--sellers { background: #3a9d57; }
.sa-what__icon--buyers  { background: #1a1a1a; }
.sa-what__icon svg { color: #fff; }
.sa-what__col-head h3 { font-size: 20px !important; font-weight: 700 !important; color: #1a1a1a !important; margin: 0 !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-timeline { padding-left: 24px; border-left: 2px solid #e5e7eb; }
.sa-timeline--sellers { border-left-color: #3a9d57; }
.sa-timeline--buyers  { border-left-color: #1a1a1a; }
.sa-timeline__item { position: relative; margin-bottom: 36px; }
.sa-timeline__item:last-child { margin-bottom: 0; }
.sa-timeline__dot { position: absolute; left: -31px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #3a9d57; }
.sa-timeline--buyers .sa-timeline__dot { background: #1a1a1a; }
.sa-timeline__item h4 { font-size: 15px !important; font-weight: 700 !important; color: #1a1a1a !important; margin: 0 0 6px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-timeline__item p  { font-size: 13px !important; color: #666 !important; line-height: 1.7 !important; margin: 0 !important; text-transform: none !important; }
.sa-what__guarantee { background: #3a9d57; border-radius: 14px; padding: 22px 40px; font-size: 15px !important; font-weight: 700 !important; color: #fff !important; text-align: center !important; margin-top: 48px; text-transform: none !important; }
@media (max-width: 767px) { .sa-what__cols { flex-direction: column; gap: 40px; } }

/* ── Curation ─────────────────────────────────────────── */
.sa-curation { background: #f5f5f5; padding: 80px 0; }
.sa-curation__inner { display: flex; gap: 60px; align-items: center; }
.sa-curation__images { flex: 0 0 44%; position: relative; height: 400px; }
.sa-curation__img-back { position: absolute; left: 0; top: 60px; width: 188px; height: 340px; border-radius: 16px; overflow: hidden; background: #111; box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.sa-curation__img-back img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-badge-ordinary { position: absolute; top: 12px; left: 12px; background: #ef4444; color: #fff !important; font-size: 11px !important; font-weight: 700 !important; padding: 5px 12px; border-radius: 6px; z-index: 2; letter-spacing: .2px; text-transform: none !important; }
.sa-curation__img-front { position: absolute; right: 0; top: 0; width: 215px; height: 270px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.14); background: #f8f8f8; }
.sa-curation__img-front img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-badge-swapot { position: absolute; top: 12px; right: 12px; background: #3a9d57; color: #fff !important; font-size: 11px !important; font-weight: 700 !important; padding: 6px 14px; border-radius: 50px; z-index: 2; text-transform: none !important; }
.sa-curation__text { flex: 1; }
.sa-curation__text h2 { font-size: 36px !important; font-weight: 800 !important; color: #1a1a1a !important; line-height: 1.2 !important; margin: 0 0 24px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-curation__text h2 span { color: #3a9d57 !important; }
.sa-curation__text p { font-size: 14px !important; color: #555 !important; line-height: 1.8 !important; margin: 0 0 16px !important; text-transform: none !important; }
.sa-curation__text p:last-child { margin: 0 !important; }
@media (max-width: 767px) {
    .sa-curation__inner { flex-direction: column; }
    .sa-curation__images { width: 100%; height: 300px; flex: none; }
}

/* ── Trust & Authenticity ─────────────────────────────── */
.sa-trust { background: #f5f5f5; padding: 0 0 80px; }
.sa-trust__card { background: #1e1e1e; border-radius: 40px; overflow: hidden; display: flex; }
.sa-trust__left { flex: 0 0 63.25%; padding: 48px 44px; }
.sa-trust__right { flex: 1; position: relative; min-height: 440px; }
.sa-trust__right img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.sa-trust__left h2 { font-size: 28px !important; font-weight: 800 !important; color: #fff !important; line-height: 1.3 !important; margin: 0 0 32px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-trust__left h2 span { color: #3a9d57 !important; }
.sa-trust__item { margin-bottom: 28px; }
.sa-trust__item:last-child { margin-bottom: 0; }
.sa-trust__item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sa-trust__item-head svg { color: #3a9d57; flex-shrink: 0; }
.sa-trust__item-head h4 { font-size: 15px !important; font-weight: 700 !important; color: #fff !important; margin: 0 !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-trust__item p { font-size: 13px !important; color: #aaa !important; line-height: 1.75 !important; margin: 0 0 8px !important; text-transform: none !important; }
.sa-trust__item p:last-child { margin: 0 !important; }
@media (max-width: 767px) {
    .sa-trust__card { flex-direction: column; }
    .sa-trust__right { min-height: 260px; position: relative; }
    .sa-trust__right img { position: absolute; inset: 0; }
}

/* ── Marketplace (Online) ─────────────────────────────── */
.sa-online { background: #f5f5f5; padding: 80px 0; }
.sa-online__heading { font-size: 40px !important; font-weight: 800 !important; color: #1a1a1a !important; text-align: center !important; margin: 0 0 12px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-online__heading span { color: #3a9d57 !important; }
.sa-online__sub { font-size: 15px !important; color: #666 !important; text-align: center !important; margin: 0 0 48px !important; text-transform: none !important; }
.sa-online__steps { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 36px; }
.sa-online__step { text-align: center; flex: 0 0 220px; }
.sa-online__step-icon { width: 72px; height: 72px; background: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 2px 14px rgba(0,0,0,.08); }
.sa-online__step-icon svg { color: #3a9d57; }
.sa-online__step h4 { font-size: 16px !important; font-weight: 700 !important; color: #1a1a1a !important; margin: 0 0 8px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-online__step p  { font-size: 13px !important; color: #666 !important; line-height: 1.65 !important; margin: 0 !important; text-transform: none !important; }
.sa-online__connector { flex: 1; padding-top: 36px; display: flex; align-items: center; }
.sa-online__connector-line { width: 100%; height: 2px; background: #ddd; position: relative; }
.sa-online__connector-dot { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 10px; height: 10px; background: #3a9d57; border-radius: 50%; }
.sa-online__quote { background: #fff; border: 1px solid #e5e7eb; border-radius: 50px; padding: 14px 40px; font-size: 15px !important; color: #666 !important; font-style: italic !important; text-align: center !important; max-width: 380px; margin: 0 auto; display: block; text-transform: none !important; }
@media (max-width: 767px) {
    .sa-online__steps { flex-direction: column; align-items: center; gap: 32px; }
    .sa-online__connector { display: none; }
}

/* ── Responsibility ───────────────────────────────────── */
.sa-responsibility {
    background: radial-gradient(ellipse at 55% 45%, #1e5c30 0%, #0f3320 40%, #071c10 100%);
    padding: 80px 0;
}
.sa-responsibility__heading { font-size: 40px !important; font-style: italic !important; font-weight: 700 !important; color: #3a9d57 !important; text-align: center !important; margin: 0 0 32px !important; font-family: Georgia,'Times New Roman',serif !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-responsibility p { font-size: 15px !important; color: #b8c9bc !important; line-height: 1.85 !important; text-align: center !important; margin: 0 0 18px !important; text-transform: none !important; }
.sa-responsibility p:last-of-type { margin-bottom: 0 !important; }
.sa-responsibility__badges { display: flex; justify-content: center; gap: 120px; margin-top: 56px; }
.sa-responsibility__badge { text-align: center; }
.sa-responsibility__badge-icon { width: 96px; height: 96px; background: rgba(108,201,135,.1); border: 1px solid rgba(108,201,135,.3); border-radius: 57.6px 19.2px 62.4px 33.6px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.sa-responsibility__badge-icon svg { color: #3a9d57; }
.sa-responsibility__badge-img { display: block; margin: 0 auto 12px; max-width: 100px; height: auto; }
.sa-responsibility__badge span { font-size: 12px !important; color: #8aab8f !important; letter-spacing: 3.5px !important; text-transform: uppercase !important; font-weight: 600 !important; }
@media (max-width: 767px) { .sa-responsibility__badges { gap: 32px; flex-wrap: wrap; } }

/* ── Our Vision ───────────────────────────────────────── */
.sa-vision { background: transparent; padding: 0 24px 80px; }
.sa-vision__card { max-width: 1140px; margin: 0 auto; background: #f5ede0; padding: 80px 0; }
.sa-vision__heading { font-size: 40px !important; font-style: italic !important; font-weight: 700 !important; color: #3a9d57 !important; text-align: center !important; margin: 0 0 31px !important; font-family: Georgia,'Times New Roman',serif !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-vision__keywords { display: flex; align-items: center; justify-content: center; gap: 48px; margin: 0 0 31px; }
.sa-vision__kw  { font-size: 11px !important; font-weight: 700 !important; letter-spacing: 4px !important; color: #999 !important; text-transform: uppercase !important; }
.sa-vision__dot { width: 6px; height: 6px; background: #3a9d57; border-radius: 50%; flex-shrink: 0; }
.sa-vision p:not(.sa-vision__closer):not(.sa-vision__tagline) { font-size: 15px !important; color: #555 !important; line-height: 1.85 !important; text-align: center !important; margin: 0 0 31px !important; text-transform: none !important; }
.sa-vision__closer  { font-size: 15px !important; color: #1a1a1a !important; font-weight: 400 !important; text-align: center !important; margin: 0 0 56px !important; text-transform: none !important; }
.sa-vision__tagline { font-size: 24px !important; font-weight: 400 !important; line-height: 32px !important; color: #006d37 !important; letter-spacing: 2.4px !important; text-transform: uppercase !important; text-align: center !important; margin: 0 0 16px !important; }
.sa-vision__line { width: 56px; height: 3px; background: #006d37; margin: 0 auto; }

/* ── CTA ──────────────────────────────────────────────── */
.sa-cta { position: relative; overflow: hidden; padding: 100px 0; text-align: center; }
.sa-cta__bg { position: absolute; inset: 0; z-index: 0; }
.sa-cta__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-cta__bg-overlay { position: absolute; inset: 0; background: rgba(20,20,20,.68); z-index: 1; }
.sa-cta .sa-wrap { position: relative; z-index: 2; }
.sa-cta__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff !important; font-size: 13px !important; font-weight: 500 !important; padding: 8px 20px; border-radius: 50px; margin-bottom: 24px; text-transform: none !important; }
.sa-cta__badge-dot { width: 8px; height: 8px; background: #3a9d57; border-radius: 50%; flex-shrink: 0; }
.sa-cta__title { font-size: 48px !important; font-weight: 800 !important; color: #fff !important; line-height: 1.2 !important; margin: 0 0 16px !important; text-transform: none !important; letter-spacing: normal !important; }
.sa-cta__title span { color: #3a9d57 !important; }
.sa-cta__desc { font-size: 15px !important; color: rgba(255,255,255,.65) !important; margin: 0 0 32px !important; line-height: 1.6 !important; text-transform: none !important; }
@media (max-width: 767px) { .sa-cta__title { font-size: 32px !important; } }

/* ════════════════════════════════════════════════════════
   CONTACT US PAGE
   ════════════════════════════════════════════════════════ */

/* ── Hero banner ─────────────────────────────────────── */
.contact-hero {
    position: relative;
    overflow: hidden;
    background: #f0f5f1;
    padding: 60px 0 50px;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(58, 157, 87, 0.08);
    pointer-events: none;
}
.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(58, 157, 87, 0.05);
    pointer-events: none;
}
.contact-hero__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
    z-index: 1;
}
.contact-hero__text {
    text-align: center;
    flex: 1;
}
.contact-hero__title {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: var(--swapot-dark, #1a1a1a) !important;
    margin: 0 0 12px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}
.contact-hero__breadcrumb {
    font-size: 13px;
    color: #666;
}
.contact-hero__breadcrumb a {
    color: var(--swapot-green, #3a9d57);
    text-decoration: none;
}
.contact-hero__breadcrumb a:hover { text-decoration: underline; }
.contact-hero__breadcrumb span { margin: 0 6px; color: #999; }
.contact-hero__deco {
    flex: 0 0 auto;
    margin-left: 40px;
}
.contact-hero__deco-img {
    max-height: 200px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ── Contact content section ─────────────────────────── */
.swapot-contact {
    padding-top: 80px;
    padding-bottom: 100px;
}
.swapot-contact__info {
    padding-right: 40px;
}
.swapot-contact__info-heading {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--swapot-dark, #1a1a1a) !important;
    margin: 0 0 12px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.swapot-contact__info-subtitle {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0 0 32px !important;
    text-transform: none !important;
}
.swapot-contact__details {
    margin-top: 8px;
}
.swapot-contact__detail-item {
    margin-bottom: 28px;
}
.swapot-contact__detail-item:last-child {
    margin-bottom: 0;
}
.swapot-contact__detail-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #999 !important;
    margin: 0 0 6px !important;
}
.swapot-contact__detail-value,
a.swapot-contact__detail-value {
    font-size: 15px !important;
    color: var(--swapot-dark, #1a1a1a) !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    margin: 0 !important;
    display: block;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.6 !important;
}
a.swapot-contact__detail-value:hover {
    color: var(--swapot-green, #3a9d57) !important;
}

/* ── Form column ─────────────────────────────────────── */
.swapot-contact__form-col {
    border-left: 1px solid #f0f0f0;
    padding-left: 50px;
}
.swapot-contact__form-heading {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--swapot-dark, #1a1a1a) !important;
    margin: 0 0 10px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.swapot-contact__form-subtitle {
    font-size: 14px !important;
    color: #666 !important;
    margin: 0 0 28px !important;
    text-transform: none !important;
    line-height: 1.65 !important;
}

/* Form inputs — consistent with sell form */
.swapot-contact__input,
.swapot-contact__textarea {
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    color: var(--swapot-dark, #1a1a1a) !important;
    background: #fff !important;
    transition: border-color 0.2s ease !important;
    width: 100%;
    display: block;
    resize: vertical;
}
.swapot-contact__input:focus,
.swapot-contact__textarea:focus {
    border-color: var(--swapot-green, #3a9d57) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(58,157,87,.1) !important;
}
.swapot-contact__input.has-error,
.swapot-contact__textarea.has-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231,76,60,.1) !important;
}
.swapot-contact__input::placeholder,
.swapot-contact__textarea::placeholder {
    color: #bbb !important;
}
.swapot-contact__textarea {
    min-height: 140px;
}

/* Row spacing */
.swapot-contact__row .swapot-contact__col { margin-bottom: 16px; }
.swapot-contact__group { margin-bottom: 16px; }
.swapot-contact__submit-wrap { margin-top: 8px; }

/* Submit button — inherits .swapot-btn */
.swapot-contact__submit {
    min-width: 160px;
}

/* Error and success states */
.swapot-contact__error {
    margin-bottom: 16px;
    border-radius: 6px;
    font-size: 14px;
}
.swapot-contact__success {
    padding: 32px 24px;
    background: #f0f9f3;
    border: 1px solid #b8e0c4;
    border-radius: 10px;
    text-align: center;
}
.swapot-contact__success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--swapot-green, #3a9d57);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 22px;
}
.swapot-contact__success-text {
    font-size: 15px !important;
    color: #2d6a3f !important;
    margin: 0 !important;
    text-transform: none !important;
    line-height: 1.65 !important;
}

/* Spinner animation */
.swapot-contact__spin {
    animation: swapot-spin 1s linear infinite;
}
@keyframes swapot-spin { to { transform: rotate(360deg); } }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
    .swapot-contact__info { padding-right: 20px; }
    .swapot-contact__form-col { padding-left: 30px; }
}
@media (max-width: 767px) {
    .contact-hero__inner { flex-direction: column; text-align: center; min-height: auto; }
    .contact-hero__deco  { margin: 20px 0 0; }
    .contact-hero__deco-img { max-height: 140px; margin: 0 auto; }
    .contact-hero__title { font-size: 30px !important; }
    .swapot-contact__info {
        padding-right: 15px;
        margin-bottom: 48px;
        padding-bottom: 40px;
        border-bottom: 1px solid #f0f0f0;
    }
    .swapot-contact__form-col {
        border-left: none;
        padding-left: 15px;
    }
    .swapot-contact__row .swapot-contact__col + .swapot-contact__col { margin-top: 0; }
}
