/** Shopify CDN: Minification failed

Line 148:2 Unexpected "$"
Line 913:0 Comments in CSS use "/* ... */" instead of "//"
Line 1279:0 Comments in CSS use "/* ... */" instead of "//"
Line 1289:2 Unexpected "$"
Line 1616:0 Unexpected "$"
Line 1619:9 Unexpected "#"
Line 1619:11 Expected identifier but found "$"
Line 1619:15 Unexpected "{"
Line 1623:2 Expected identifier but found "$"
Line 1624:2 Expected identifier but found "$"
... and 7 more hidden warnings

**/
  @mixin flexbox() {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }


  @mixin inline-flexbox() {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  @mixin flex($values) {
    -webkit-box-flex: $values;
       -moz-box-flex: $values;
        -webkit-flex: $values;
        -ms-flex: $values;
            flex: $values;
  }


  @mixin flex-direction($direction) {
    -webkit-flex-direction: $direction;
       -moz-flex-direction: $direction;
        -ms-flex-direction: $direction;
            flex-direction: $direction;
  }


  @mixin flex-wrap($wrap) {
    -webkit-flex-wrap: $wrap;
       -moz-flex-wrap: $wrap;
        -ms-flex-wrap: $wrap;
            flex-wrap: $wrap;
  }


  @mixin flex-flow($flow) {
    -webkit-flex-flow: $flow;
       -moz-flex-flow: $flow;
        -ms-flex-flow: $flow;
            flex-flow: $flow;
  }


  @mixin order($val) {
    -webkit-box-ordinal-group: $val;
       -moz-box-ordinal-group: $val;
           -ms-flex-order: $val;
            -webkit-order: $val;
              order: $val;
  }


  @mixin flex-grow($grow) {
    -webkit-flex-grow: $grow;
       -moz-flex-grow: $grow;
        -ms-flex-grow: $grow;
            flex-grow: $grow;
  }


  @mixin flex-shrink($shrink) {
    -webkit-flex-shrink: $shrink;
       -moz-flex-shrink: $shrink;
        -ms-flex-shrink: $shrink;
            flex-shrink: $shrink;
  }


  @mixin flex-basis($width) {
    -webkit-flex-basis: $width;
       -moz-flex-basis: $width;
        -ms-flex-basis: $width;
            flex-basis: $width;
  }


  @mixin justify-content($justify) {
    -webkit-justify-content: $justify;
       -moz-justify-content: $justify;
        -ms-justify-content: $justify;
            justify-content: $justify;
              -ms-flex-pack: $justify;
  }


  @mixin align-content($align) {
    -webkit-align-content: $align;
       -moz-align-content: $align;
        -ms-align-content: $align;
            align-content: $align;
  }


  @mixin align-items($align) {
    -webkit-align-items: $align;
       -moz-align-items: $align;
        -ms-align-items: $align;
            align-items: $align;
  }

  @mixin align-self($align) {
    -webkit-align-self: $align;
       -moz-align-self: $align;
        -ms-align-self: $align;
            align-self: $align;
  }

  @mixin prefix($property, $value, $prefixes) {
    @each $prefix in $prefixes {
      @if $prefix == webkit {
        -webkit-#{$property}: $value;
      } @else if $prefix == moz {
        -moz-#{$property}: $value;
      } @else if $prefix == ms {
        -ms-#{$property}: $value;
      } @else if $prefix == o {
        -o-#{$property}: $value;
      } @else if $prefix == spec {
        #{$property}: $value;
      } @else  {
        @warn 'Unrecognized prefix: #{$prefix}';
      }
    }
  }

  $small: 480px;
  $medium: 798px;
  $large: 799px;
  $larger: 960px;
  $largerm: 978px;
  $xlarge: 1200px;

  @mixin respond-to($breakpoint) {
    @if $breakpoint == "small" {
      @media (max-width: $small) {
        @content;
      }
    }

    @else if $breakpoint == "medium" {
      @media (max-width: $medium) {
        @content;
      }
    }

    @else if $breakpoint == "large" {
      @media (min-width: $large) {
        @content;
      }
    }

    @else if $breakpoint == "larger" {
      @media (min-width: $larger) {
        @content;
      }
    }

    @else if $breakpoint == "largerm" {
      @media (min-width: $largerm) {
        @content;
      }
    }

    @else if $breakpoint == "xlarge" {
      @media (min-width: $xlarge) {
        @content;
      }
    }

    @else if $breakpoint == "ie10+" {
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        @content;
      }
    }

    @else {
      @media ($breakpoint) {
        @content;
      }
    }
  }

  @mixin vertical-alignment {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50.1%);
    -ms-transform: translateY(-50.1%);
    transform: translateY(-50.1%);
    padding: 10px 0;
  }

  @mixin transition{
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -ms-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
  }

/* #Reset & Basics
================================================== */
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: table-cell;  padding: 10px; }
body {
    line-height: 1; }
ol, ul {
    list-style: none; }
blockquote, q {
    quotes: none; }
blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none; }
table {
    border-collapse: collapse;
    border-spacing: 0; }

/* #Fonts
================================================== */@font-face {
  font-family: Helvetica;
  font-weight: 300;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_n3.e01288c0d2e8e4f4101819b750499a38c41ed953.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=335989c5293743d2a288c50a65faea32284460a1a356e12727807aab7e1f150f") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_n3.689236138e1e3e1b03386488943f79b29e240af5.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=889b0142e555f0b86fa302bbd6b5e3bedf6f154443c7e0c18154245e3960a3de") format("woff");
}


  @font-face {
  font-family: Helvetica;
  font-weight: 400;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_n4.fe093fe9ca22a15354813c912484945a36b79146.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=219732f25dc290a63cb4bb680534d501cd270e08f391fbc03fdd74f33b57e452") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_n4.8bddb85c18a0094c427a9bf65dee963ad88de4e8.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=aec689085ec1735a9a21820174630c62a11ffa354bd701bd7073cd89a4d433a3") format("woff");
}


  @font-face {
  font-family: Helvetica;
  font-weight: 300;
  font-style: oblique;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_o3.8738cda7d30fedf1c8410fa8bf91499e05b2d370.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=392c61062a53f44a8c97482ae9a06463bdc460a9bacdea912ccb2a6e23f40180") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_o3.3d948a11eabbcdbbff983bdb2311e266180be9d7.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=0fe58f77b355092578eb5b93f1c3ea69c5a17cb5f43e19aec3871275a3ec6127") format("woff");
}


  @font-face {
  font-family: Helvetica;
  font-weight: 400;
  font-style: oblique;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_o4.f9832a0fc1ee8fc5a359636e410d6941e1e4ca03.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=3932e3c8e988f53f6406decbcd17b7416f0ddcef88cddce56d7d4d396806947f") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/helvetica/helvetica_o4.0063286aec443697ebae04eeb9c78b820f9f7805.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=96a067a5180b4f98a6f7da56ffa6026b76fd85d8e89bee66af44eb5ca2b609ee") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 400;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n4.be9a539f5d76c47c902ceca6d3d3533ba80826b5.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=952192a5663557129d5c3e48c9e52b9558f216334569b91b3884e529e350798b") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n4.fb22e76452529e244b2feebf4a4293c303006500.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5e008a77d394b7ab2f886e671e4c4ce20d490f256021a96088f9eab0b309bcb0") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 700;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n7.991008f28e543f8c75463e8ee2225eadfd3e13ac.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8516f0a84f701d71fef2d609bb51ccf74a511edc9314d2cdc3344cb34d3aa1ac") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n7.d810dad3833126d4dfad682dbf56e7a4aaeb3b98.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=03d346a596c1e42c162946e94824a98d021597b9be132589515736693a04920d") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 400;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i4.32f1140dbd370dc7ca9ba451327e4f534669584c.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8825148fa94b97413f0a22a7c55a9c69f5bbaca18eea0a5d9be4ff1199d64789") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i4.02d6a4fc6536c85330d3bc22fb5802550e223c6a.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=495486145e2caaa7a2837532cc2dc9d0bb0a58b35da2b7b13af8fc105e22c523") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 700;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i7.9cf3380710de5d81bd5a20b8c20cfc684a7d3e27.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5b89b094ce8b285027a8a81dd5d8a7d7cd0303e272ff1a69667cdfdffce2384d") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i7.f88d2f2802c6a2bc39488936a9dde67cc95d705a.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=316e90091f2ba66e23e502e787615205a9483b69e673db2477a8aa127cddfc3a") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 500;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n5.f18df3083d59c45ab2fa22ad382a05b8b222a1a9.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=c1edbe7c11294fb5eda5e8ae8753f08a9bae1a4e3fc654e004dc3beef5e9f5a6") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n5.b36b24e862a5af52d87ab61a2de7adeb1f373688.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=13c4aad7f9cd3b7604cdd4fd1462b231b1c3b3f30b4f9161f17778181d098efb") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 700;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n7.991008f28e543f8c75463e8ee2225eadfd3e13ac.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8516f0a84f701d71fef2d609bb51ccf74a511edc9314d2cdc3344cb34d3aa1ac") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n7.d810dad3833126d4dfad682dbf56e7a4aaeb3b98.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=03d346a596c1e42c162946e94824a98d021597b9be132589515736693a04920d") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 500;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i5.6a12c13b0a458a30443e0e87d61b37497b602c2f.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7e48944dae5ae6c7c9aafd014565ecd9eabfb099f9a41ce338d91dbf06bbb4e6") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i5.e366071d44025112cd4fb64384addd530e3fc981.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=92126876e49c6cfc0cfdac2e60e3770d4e6ac35fb8e522a44d9dbb5c6040335d") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 700;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i7.9cf3380710de5d81bd5a20b8c20cfc684a7d3e27.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5b89b094ce8b285027a8a81dd5d8a7d7cd0303e272ff1a69667cdfdffce2384d") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i7.f88d2f2802c6a2bc39488936a9dde67cc95d705a.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=316e90091f2ba66e23e502e787615205a9483b69e673db2477a8aa127cddfc3a") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 400;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n4.be9a539f5d76c47c902ceca6d3d3533ba80826b5.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=952192a5663557129d5c3e48c9e52b9558f216334569b91b3884e529e350798b") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n4.fb22e76452529e244b2feebf4a4293c303006500.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5e008a77d394b7ab2f886e671e4c4ce20d490f256021a96088f9eab0b309bcb0") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 700;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n7.991008f28e543f8c75463e8ee2225eadfd3e13ac.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8516f0a84f701d71fef2d609bb51ccf74a511edc9314d2cdc3344cb34d3aa1ac") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n7.d810dad3833126d4dfad682dbf56e7a4aaeb3b98.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=03d346a596c1e42c162946e94824a98d021597b9be132589515736693a04920d") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 400;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i4.32f1140dbd370dc7ca9ba451327e4f534669584c.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8825148fa94b97413f0a22a7c55a9c69f5bbaca18eea0a5d9be4ff1199d64789") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i4.02d6a4fc6536c85330d3bc22fb5802550e223c6a.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=495486145e2caaa7a2837532cc2dc9d0bb0a58b35da2b7b13af8fc105e22c523") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 700;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i7.9cf3380710de5d81bd5a20b8c20cfc684a7d3e27.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5b89b094ce8b285027a8a81dd5d8a7d7cd0303e272ff1a69667cdfdffce2384d") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i7.f88d2f2802c6a2bc39488936a9dde67cc95d705a.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=316e90091f2ba66e23e502e787615205a9483b69e673db2477a8aa127cddfc3a") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 100;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n1.e47ff8fff9d8391aaac1408091df3563e6cd8c6e.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=046393bc503c9cfba9b51d562df7a300ca520aa592e051c3572eafd52dba47f3") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_n1.988775420a2b84c18a0af9504c80630dffe6c345.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8f9f2fdb801224f349fb8d01380e5a489e552f10c1318c986aef9c4a881c4cf0") format("woff");
}


  @font-face {
  font-family: Cachet;
  font-weight: 100;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i1.335b8e4cc8a734d517348b42064157f456c3fed7.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7d6988c7c4e3f7ddbef14bd1737921f036f3e53830e2a3049cca7a65af89a5ba") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/cachet/cachet_i1.5f6587e07f8f24c16102f27f1506e45db22d81a2.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=634e0b3e5440a964a78adbe828ac09736791bd00c8b36ae00e16d0ed2844f7e8") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n4.5460e0463a398b1075386f51084d8aa756bafb17.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=291aa5ee7c8b2d397c6257cb36133b0031f9756d3a2b7d484224c7b46a723fa5") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n4.8512334118d0e9cf94c4626d298dba1c9f12a294.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=e7f47ce583980cc15a303fdb5846b04702bf922022a423cd29d99884c134173f") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n7.8bfd11295a1edbb769a778900a2afc48b16848e7.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8bf86864d3ca87b2d709480bae362558f1a01260cf8455d7aa658ef92b5db658") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n7.4e2eb03bfa5cdc209fbd1b7b5ee863b8032f4b36.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=22dfaac042815d5139880bf20dc5cf9076b6f2dcdc9c5890de05b946b31c935b") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i4.3854a246d5acf17aab4c771d3d4542818d3a46a8.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=438f79b303599b53e74d40f55a14066935d2b70e91ffc810fb75bbbeb6675ca4") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i4.1cb364a3d4a7a0305132a25a76ac8fa7d381d3c6.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=39c7cd6d44de9d339d1cd119fb67eb2520d625bea54c140ff2128a2e0a7c7428") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i7.f2dd6989e403681b1042ba33de0a0ae8062b7ecb.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5e4c84ca15f41ba070638f028b55d5fafd186db7d9968d8a9c84ffe8d396429b") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i7.2b1150c87b2f7e0338af40875cb176d5ab2ddad7.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=686dc77166b56d1ba1b1a92cad4fbbc5eab7c89e3449d0825d4941ec14237eba") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n4.5460e0463a398b1075386f51084d8aa756bafb17.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=291aa5ee7c8b2d397c6257cb36133b0031f9756d3a2b7d484224c7b46a723fa5") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n4.8512334118d0e9cf94c4626d298dba1c9f12a294.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=e7f47ce583980cc15a303fdb5846b04702bf922022a423cd29d99884c134173f") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n7.8bfd11295a1edbb769a778900a2afc48b16848e7.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=8bf86864d3ca87b2d709480bae362558f1a01260cf8455d7aa658ef92b5db658") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_n7.4e2eb03bfa5cdc209fbd1b7b5ee863b8032f4b36.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=22dfaac042815d5139880bf20dc5cf9076b6f2dcdc9c5890de05b946b31c935b") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i4.3854a246d5acf17aab4c771d3d4542818d3a46a8.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=438f79b303599b53e74d40f55a14066935d2b70e91ffc810fb75bbbeb6675ca4") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i4.1cb364a3d4a7a0305132a25a76ac8fa7d381d3c6.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=39c7cd6d44de9d339d1cd119fb67eb2520d625bea54c140ff2128a2e0a7c7428") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: italic;
  src: url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i7.f2dd6989e403681b1042ba33de0a0ae8062b7ecb.woff2?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5e4c84ca15f41ba070638f028b55d5fafd186db7d9968d8a9c84ffe8d396429b") format("woff2"),
       url("//www.ergonomicsnow.com.au/cdn/fonts/open_sans/opensans_i7.2b1150c87b2f7e0338af40875cb176d5ab2ddad7.woff?h1=ZXJnb25vbWljc25vdy5jb20uYXU&h2=ZXJnb25vbWljcy1ub3cuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=686dc77166b56d1ba1b1a92cad4fbbc5eab7c89e3449d0825d4941ec14237eba") format("woff");
}

/* #Basic Styles
================================================== */
  body {
    background-color: #ffffff;
    

    font-family: Helvetica, sans-serif;
    font-weight: 300;
    font-size: 15px;
    text-transform: none;
    color: #545454;
    line-height: 1.8em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}
::-moz-selection {
       background-color: #B3C945;
       color: #fff;
}
::selection {
  background: #B3C945;
  color: #fff;
}
abbr {
  border-bottom: 1px dotted #d8d8d8;
}

.text-align--left { text-align: left; }
.text-align--center { text-align: center; }
.text-align--right { text-align: right; }

/* #Typography
================================================== */

  .logo {
    font-family: Cachet;
    font-weight: 400;
    font-size: 26px;
    text-transform: none;
    color: #040707;
    margin-top: 10px;
  }

  .logo a,
  .logo a:hover,
  .logo a:visited,
  .logo a:active {
    color: #040707;
    line-height: 45px;
    @include respond-to('small') {
      /* padding-bottom: 15px; */
    }
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .collection_title,
  .headline,
  .subtitle {
    font-family: Cachet, sans-serif;
    font-weight: 500;
    text-transform: none;
    color: #a99188;
    display: block;
    letter-spacing: 0px;
    text-rendering: optimizeLegibility;
  }

  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a,
  .collection_title { font-weight: inherit; }

  h1 a,
  h1 a:visited,
  .collection_title a,
  .collection_title a:visited { color: #b3c945 }

  h1 a:hover,
  h1 a:active,
  .collection_title a:hover,
  .collection_title a:active { color: #b3c945 }

  h1,
  .h1,
  h1.home,
  .collection_title {
    font-size: 26px;
    line-height: 1.5em;
    margin: 0 auto 20px;
    clear:both;
    font-weight: 500;
  }

  h1.home {
    margin: 0 auto 15px;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    padding: 12px 0;
  }

  h1.product_name {
    margin-bottom: 15px;
  }

  a.product_collection {
    padding-bottom: 0;
    display: inline-block;
  }

  h1.article_name {
    margin-bottom: 5px;
  }

  h2,
  .h2 {
    font-size: 26px;
    margin-bottom: 0.75em
  }

  h2.center {
    margin: 15px 0;
  }

  h2.title,
  h2.title a {
    text-align: center;
    margin: 15px 0;
    color: #a19182;
  }

  h2.product_name a {
    color: #b3c945;
  }

  h2.article_title {
    margin: 5px 0;
    font-size: 22px;
    min-height: 56px;
  }

  h2.article_title a {
    color: #b3c945;
  }

  h3,
  .h3,
  h1.blog_title {
    font-size: 24px;
    line-height: 35px;
    margin: 0 auto 15px 0;
    text-align: left;
  }

  h1.collection_title,
  div.collection_title {
    margin-bottom: 0;
    margin-top: 10px;
    display: inline;
  }

  h1.collection_title_tags,
  div.collection_title_tags {
    padding-right: 25px;
    border-right: solid 1px #d8d8d8;
  }

  h4,
  .h4,
  h4.title a {
    font-size: 20px;
    line-height: 32px;
    margin: 15px 0;
    text-align: left;
    padding: 0;
/*     border-bottom: 1px solid #d8d8d8; */
    padding-bottom: 8px;
  }

  h4.title a { border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    color: #b3c945;
  }

  h4.product_name {
    border: 0;
    padding: 0;
  }

  h5,
  .h5 {
    font-size: 18px;
    padding-bottom: 1em;
  }

  h5.sub_title {
    padding-bottom: 0;
  }

  h6,
  .h6 {
    font-size: 18px;
    padding-bottom: 1em;
  }

  .footer h6 {
    color: white;
  }

 .info.text-align--left h2 {
    color: #a19182 !important;
  }

  .headline {
    font-size: 26px;
  }

  .subheader {
    color: #777;
  }

  p {
    margin: 0 0 15px;
    font-style: normal;
    line-height: 1.8em;
  }

  p img {
    margin: 0;
  }

  sub {
    font-size: 60%;
  }

  em,
  i {
    font-style: italic;
  }

  strong,
  b {
    font-weight: bold;
  }

  small {
    font-size: 90%;
  }

  .index {
    h2.title,
    .title a,
    h2.title a {
      font-size: 26px;
      line-height: 1.5;
    }
  }

  /* Promo banner */

  .promo_banner-show .promo_banner {
    transition: all 0s linear;
    height: auto;
    line-height: inherit;
    padding: 2px 0;
    opacity: 1;
    font-weight: normal;
  }

  div.promo_banner {
    padding: 0;
    text-align: center;
    font-size: 13px;
    opacity: 0;
    height: 0;
    line-height: 0;
    z-index: 5000;
    top: 0;
    transition: all 0.3s linear;
    overflow: hidden;
    p,
    span {
      width: 90%;
      margin: 0 auto;
    }
    .promo_banner-close {
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      overflow: visible;
      width: 35px;
      height: 35px;
      margin: 0;
      padding: 0;
      cursor: pointer;
      text-decoration: none;
      border: 0;
      outline: 0;
      background: transparent;
      z-index: 1000;
      &:before {
        font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
        font-size: 20px;
        line-height: 26px;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 35px;
        content: "\00d7";
        text-align: center;
      }
    }
  }

  .feature_divider {
    display: block;
    margin: 25px auto 25px auto;
    background-color: #b3c945;

    
      height: 3px;
      width: 30px;
    
  }

/*  Blockquotes  */
  blockquote, blockquote p { font-size: 17px; line-height: 24px; font-style: italic; }
  blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 1px solid #d8d8d8; }
  blockquote cite { display: block; font-size: 12px; color: #555; }
  blockquote cite:before { content: "\2014 \0020"; }
  blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }
  hr { border: solid #d8d8d8; border-width: 1px 0 0; clear: both; margin: 12px 0; height: 0; }
  .quote {
     font-size: 16px;
     line-height: 22px;
     text-align: center;
     margin: 0 0 20px 0;
     font-style: italic;
    }
/* #Links
================================================== */
  a, a:visited { color: #b3c945; text-decoration: none; outline: 0; -webkit-transition: color .1s linear; -moz-transition: color .1s linear; -o-transition: color .1s linear; -ms-transition: color .1s linear; transition: color .1s linear; }
  a:hover, a:focus { color: #080809; }
  a, button, input, select, textarea, label, summary { touch-action: manipulation; }
/* #Lists
================================================== */
  ul, ol { margin-bottom: 20px; }
  ul { list-style: none; }
  ol { list-style: decimal; }
  ul, ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
  ul.square { list-style: square outside; }
  ul.circle { list-style: circle outside; }
  ul.disc { list-style: disc outside; }
  ul ul, ul ol,
  ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 95%;  }
  li { line-height: 22px; padding-bottom: 12px; }
  ul.large li { line-height: 21px; }
  ul.none { list-style: none outside; margin-left: 0;}
  ul.border {
    list-style: none outside;
    line-height: 26px;
  }
  ul.border li {
    border-bottom: 1px solid #d8d8d8;
    list-style: none outside none;
    padding: 12px 0;
    margin-bottom: 0;
  }

/* #Menu
================================================== */

.header {
  background-color: #ffffff;
  border-top: 3px solid #B3C945;
}

.header_border {
  /* border-bottom: solid 1px #d8d8d8; */
  padding-bottom: 5px;
}

.homepage {
  padding-bottom: 5px;
}

.nav {
  text-align:right;
}

.nav ul {
  margin: 0 auto;
  border: none;
  padding: 0;
  margin: 0;
}

.nav ul li {
  display: inline-block;
  padding: 0 0 0 16px;
  position: relative;
  margin: 0;
  border: 0;
}

.nav ul li a,
.nav ul li a:visited,
.promo_banner,
#currencies,
a.product_collection {
  font-family: Cachet, sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
  color: #a19182;
  position: relative;
  display:block;
  letter-spacing: 0px;
  padding-bottom: 10px;
  cursor: pointer;
}

// Target Currency Dropdown in Edge
@supports (-ms-ime-align: auto) {
  select#currencies.currencies option {
    color: black;
  }
}

.nav ul li a.active,
nav ul li a.active:visited,
nav ul li a.active:active {
  color: #b3c945;
}

.nav ul li a:hover,
nav ul li a:focus,
a.product_collection:hover {
  color: #b3c945;
}

.nav ul li.current_page_item a {
  color: #b3c945;
}

.nav ul li.current_page_ancestor a {
  color: #b3c945;
}

.nav ul.menu {
  display: inline;
}

.mobile_menu ul { display: none; }
.nav ul li a.cart_button,
.nav ul li a.navicon,
input[type="submit"].guest_button {
  padding: 5px 10px 5px 10px;
  border: solid 1px #d8d8d8;
  
    border-radius: 4px;
  
}

.nav ul li a.cart_button {
  background-color: #b3c945;
  border: 1px solid #b3c945;
  color: #ffffff !important;
}


ul.nav_buttons .button_label { margin-left: 5px; }
input[type="submit"].guest_button,
input[type="submit"].guest_button:hover {
  background: none;
  color: #b3c945;
  padding: 8px 20px 8px 10px;
}

.nav ul li a.cart_button.active {
  color: #b3c945;
  border-color: #b3c945;
}

.nav ul li a.cart_button:hover, .nav ul li a.cart_button.active:hover {
  background-position: 9px -41px;
  background-color: transparent !important;
  color: #b3c945 !important;
  border-color: #b3c945;
}

ul.menu li.navicon_button {
  display: none;
}

/* sub-levels link */
.menu ul a, .menu li:hover > ul a  {
  padding: 10px 0 10px 15px;
  background: none;
  text-align: left;
}

/* sub-level ul */
.menu ul {
  position: absolute;
  left: 0;
  top: 28px;
  background-color: #ffffff;
  border: solid 1px #efefef;
  box-shadow: 0 5px 20px 0 #00000014;
  z-index: 1000;
  display: none;
  width: 215px;
  -webkit-animation-duration:0.5s;
  animation-duration:0.5s;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

ul.menu ul li {
  display: block;
/*   border-bottom: solid 1px #d8d8d8; */
  text-align:left;
  margin: 0 15px;
  padding: 5px 0;
}

ul.menu ul li:last-child {
  border-bottom: 0;
}

.menu ul li a {
  display:block;
}

/* sub-sub-level dropdown */
.menu ul ul {
  left: 185px;
  top: -1px;
}

.menu li.dropdown_left ul ul {
  left: -215px;
}

/* show dropdown ul on hover */
.menu li:hover > ul {
  display: block;
}

.toggle_menu {
  position: relative;
  overflow: hidden;
  display: none;
  top: -16px;

  @include respond-to('largerm') {
    display: none !important;
  }
}



ul.top_menu {
  margin-bottom: 20px;
  @include flexbox();
  @include align-items(center);
  @include justify-content(flex-end);
  li a {
    padding-bottom: 0;
  }
  form.search {
    margin-bottom: 0;
  }
}

ul.top_menu li a, ul.top_menu li a:visited, ul.top_menu li a:active, select#currencies {
  font-size: 13px;
  color: #828181;
}

ul.top_menu li a:hover {
  color: #b3c945;
}

#currencies {
  width: inherit;
  padding: 10px 35px 10px 0;
  font-size: 15px;
  margin-bottom: 0;
  border: 0;
}

.mobile_menu {

  .search_box{
    width:100% !important;
    border:none;
  }

  .currency-container {

    #currencies {
      width:100%;
      border:none;
      color: #9DA0A4;
      text-decoration: none;
      -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
      -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
      box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
      text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
      display: block;
      padding: 10px 20px;
      background-color:transparent;
      background-position: 98.5% 50%;
      &:hover{
        color:#FFF;
      }
    }
  }
}

.mobile_menu_container {
  display: inline;
}

.nav ul.mobile_menu {
  background-color: #687065;
  margin-bottom: 1em;
  clear: both;
  margin-top: 5px;
}

.nav ul.mobile_menu li {
  border: none;
  text-align: left;
  display: block;
  border-top: 1px solid #ccc;
  padding-left: 0
}

.nav ul.mobile_menu .search_box {
  width: 100%;
  box-sizing: border-box;
}

.nav ul.mobile_menu form.search {
  margin: 10px 20px;
}

.nav ul.mobile_menu li a {
  color: #fff;
  text-decoration: none;
  /* box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); */
  display: inline-block;
  padding: 10px 20px;
}

.nav ul.mobile_menu li ul li a {
  padding-left: 40px;
}

.nav ul.mobile_menu li ul ul li a {
  padding-left: 60px;
}

.nav ul.mobile_menu li.active, .mobile_menu li:hover{
  background-color: #4d544b;
}

.nav ul.mobile_menu li.active a, .nav ul.mobile_menu li a:hover {
  color: #fff;
}

.header-section {
  padding-bottom: 0px;
}

.index .header-section {
  padding-bottom: 0;
}

.container div.collection_nav {
  /* border-bottom: solid 1px #d8d8d8; */
  padding-bottom: 10px;
  /* margin-bottom: 1.5em; */
}

.container div.feature_banner {
  margin-bottom: 0;
  border-bottom: 0;
}

.collection_menu, .collection_menu li {
  display: inline;
  list-style: none;
  border: none;
  position: relative;
  top: -2px;
  margin: 0;
}

.collection_menu li {
  padding-left: 20px;
}

.collection_menu li a, .sidebar a {
  color: #545454;
}

.collection_menu li a span.active, .sidebar li.active a, ul.blog_list a.active, ul.blog_list a.active--default {
  color: #040707;
  font-weight: bold;
}

.collection_menu a li a:hover, .collection_menu li span.active:hover, .sidebar a:hover {
  color: #b3c945;
}

ul.blog_list li ul {
  display: none;
  margin: 15px 0 0 15px;
  padding-bottom: 15px;

  &.active {
    display: block;
  }

  &:last-child {
    padding-bottom: 0;
  }
}

ul.blog_list li ul li {
  margin-bottom: 0;
  padding-bottom: 15px;

  &:last-child {
    padding-bottom: 0;
  }
}

/* #Images
================================================== */
/*
  The purpose of the below declaration is to make sure images don't
  exceed the width of columns they are put into when resizing window.
  Unfortunately, this declaration breaks certain lightbox, slider or other plugins,
  so the best solution is to individually call these properties on images that
  are children of the grid that you want to resize with grid.
*/

.product_row img, .product_image_col img, .article img, .article_image img, .section img, .thumbnail img, .logo img, .page img, .sidebar img, #target img {
  max-width: 100%;
  height: auto;
  margin-right: 10px; }
.zoomImg {
  max-width: inherit !important;
  cursor: pointer;
}

.description_wide img {
  width: 100%;
}

.full-width-image {
  width: 100%;
}

.lazyload--fade-in {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.lazyload--fade-in.lazyloaded {
  opacity: 1;
  max-width: 100%;
  height: fit-content;
}

img[data-sizes="auto"] {
  display: block;
  width: 100%;
/*   margin-left: auto; */
  margin-right: auto;
}

//Ensures that small images are not stretched larger
.image__container {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* #Placeholders
================================================== */

  $color-blankstate: rgba(#b3c945, 0.3);
  $color-blankstate-background: rgba(#b3c945, 0.4);

  .placeholder-svg {
    fill: $color-blankstate;
    background-color: $color-blankstate-background;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    display: block;
  }

  .placeholder-svg--banner,
  .placeholder-svg--slideshow,
  .placeholder-svg--video {
    max-height: 600px;
  }

  .placeholder-instagram .instas:nth-child(even) .placeholder-svg--instagram,
  .featured-promotions-section .feature-section:nth-child(even) .placeholder-svg--promotions,
  .image-with-text-section .featured-link--image:nth-child(odd) .placeholder-svg--promotions,
  .gallery-section .gallery_image:nth-child(even) .placeholder-svg,
  .logo-bar-section .logo-bar__item:nth-child(even) .placeholder-svg {
    background-color: rgba(#b3c945, 0.35);
  }

/* #Videos
================================================== */
/*
  For YouTube and Vimeo videos, wrap the embedded code snippet
  in a <div class="video-container"> tag to allow it to resize.
  To restrict the width, wrap with an additional <div class="video-wrapper">
*/
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    overflow: hidden;
  }
  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .video-wrapper {
    width: 600px;
    max-width: 100%;
  }
  video {
    display: block;
    width: 100%;
    height: auto;
  }

  /* #Home page - video */

  .homepage-video {
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    img {
      width: 100%;
      display: block;
    }
    iframe {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
    }
    .homepage-video--media {
      cursor: pointer;
      width: 100%;
      height: auto;
      padding-top: 0;
    }
    .flex-caption {
      z-index: 10;
    }
    .caption.text-on-video {
      z-index: 3;
      pointer-events: none;
    }
    .mediaWrapper {
      position: absolute !important;
      top: 0;
      left: 0;
      
    }
    .first_button {
      pointer-events: true;
    }
  }

  .homepage-video__placeholder {
    position: relative;
  }

  .homepage-video.darken-video-true::after {
    content: '';
    display: block;
    background: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    pointer-events: none;
  }

  .caption {
    color: #ffffff;
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    pointer-events: none;
    text-align: center;
    width: 100%;
    a {
      pointer-events: all;

      &.action_button {
        padding: 12px 35px;
      }
    }
  }

/* #Page Details
================================================== */
.page-details {
  .header-section {
    padding-bottom: 0;
  }
  .homepage_content .action_button {
    width: auto;
  }
  .page-divider {
    opacity: 0;
    border-color: #d8d8d8;
  }
  .active-divider {
    opacity: 1;
  }
  .maps iframe {
    pointer-events: none;
    display: block;
  }
  .gallery--thumbnail.column {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .gallery--thumbnail a img,
  .gallery--thumbnail a svg{
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .page-quote {
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 7px 0px;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    p {
      margin: 0;
    }
  }
}

.details-section > div:not(.block__image_with_text_overlay):not(.block__featured_video) {
  padding-top: 20px;
}

.contact_form {
  padding-top: 2em;
  padding-bottom: 2em;
  @include flexbox();
  @include align-items(center);
  @include justify-content(space-between);
  @include respond-to('medium'){
    display: block;
  }
  h3 {
    text-align: inherit;
  }
  img {
    @include respond-to('small') {
      margin-bottom: 20px;
    }
  }
  input.action_button[type="submit"] {
    width: initial;
    padding: 12px 30px;
  }
}
.contact_text_position--left {
  @include flex-direction(row-reverse);
}
.contact_text_position--right {
  @include flex-direction(row);
}
.contact_text_position--center {
  @include flex-direction(column);
  @include align-items(center);
}
.contact_text_alignment--right .contact_content {
  text-align: right;
}
.contact_text_alignment--center .contact_content {
  text-align: center;
}
.contact-template_contact_form {
  margin-bottom: 50px;
}

/* #Home page - featured promotions
================================================== */

.featured-promotions {
  h2.title {
    padding: 0 20px 0;
    margin-bottom: 10px;
    @include respond-to('small') {
      font-size: 14px;
    }
  }
  .description {
    padding: 0 20px;
  }
  .feature-section {
    text-align: center;
    float: left;
    margin: 0 10px 20px;
    position: relative;
    .link-promo {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
    }
    .feature-inner {
      display: block;
      position: relative;
    }
    .feature-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0);
      transition: background-color 0.25s linear;
      @include respond-to('medium') {
        background-color: rgba(0,0,0,0.5);
      }
    }
    .feature-wrap {
      @include vertical-alignment;
      position: absolute;
      width: 80%;
      margin: 0 auto;
      left: 0;
      right: 0;
      pointer-events: none;
    }
    .feature-details {
      opacity: 0;
      transition: opacity 0.3s linear;
      @include respond-to('medium'){
        opacity: 1;
      }
    }
    .feature-details h2.title, .feature-details h2.title a {
      color: #FFFFFF;
      padding: 0;
    }
    .feature-details .description, .feature-details .description a {
      color: #FFFFFF;
    }
    .description a {
      pointer-events: auto;
    }
    .action_button {
      width: auto;
      margin-bottom: 10px;
      pointer-events: all;
      &:hover {
        background-color: #9bae3c;
      }
    }
    &:hover .feature-overlay {
      background-color: rgba(0, 0, 0, 0.5);
    }
    &:hover .feature-details {
      opacity: 1;
    }
    img {
      width: 100%;
      display: block;
      box-shadow: #000 0em 0em 0em;
    }
  }
}

.feature-section:hover a[href] img {
  opacity: 0.8;
}

.feature-section:hover a[href] h2.title {
  color: #b3c945;
}

$i: 1;
$delay: 0;
@while $i < 8 {
  .promo-#{$i} {
    -webkit-animation-delay: $delay + s;
    animation-delay: $delay + s;
  }
  $i: $i + 1;
  $delay: $delay + 0.3;
}

.featured-promotions.promo-per-row-2 {
  .feature-section {
    width: calc(50% - 20px);
    @include respond-to('medium') {
      width: 100%;
      margin: 0 0 10px;
    }
    &:nth-child(2n+1){
      clear: both;
    }
  }
}

.featured-promotions.promo-per-row-3 {
  .feature-section {
    width: calc(33.3333% - 20px);
    @include respond-to('medium'){
      width: 100%;
      margin: 0 0 10px;
    }
    &:nth-child(3n+1){
      clear: both;
    }
  }
}

.featured-promotions.promo-per-row-4 {
  .feature-section {
    width: calc(25% - 20px);
    &:nth-child(4n+1){
      clear: both;
    }
    @include respond-to('medium'){
      width: calc(50% - 20px);
      &:nth-child(2n+1){
        clear: both;
      }
    }
    @include respond-to('small'){
      width: 100%;
      margin: 0 0 10px;
    }
  }
}

.container.promotions-grid-full_width {
  width: 100%;
  padding-top: 0;
  .featured-promotions.promo-per-row-2 {
    .feature-section {
      width: 50%;
      margin: 0;
      @include respond-to('small'){
        width: 100%;
      }
    }
  }
  .featured-promotions.promo-per-row-3 {
    .feature-section {
      width: 33.333333%;
      margin: 0;
      @include respond-to('medium'){
        width: 100%;
      }
    }
  }
  .featured-promotions.promo-per-row-4 {
    .feature-section {
      width: 25%;
      margin: 0;
      @include respond-to('medium'){
        width: 50%;
      }
      @include respond-to('small'){
        width: 100%;
      }
    }
  }
}

/* #Home page - featured collection
================================================== */

.featured-collection--placeholder .eight {
  &:nth-child(2n+2){
    margin-right: 0;
  }
  &:nth-child(2n+1){
    margin-left: 0;
  }
}

.featured-collection--placeholder .one-third {
  &:nth-child(3n+3){
    margin-right: 0;
  }
  &:nth-child(3n+1){
    margin-left: 0;
  }
}

.featured-collection--placeholder .four {
  &:nth-child(4n+4){
    margin-right: 0;
  }
  &:nth-child(4n+1){
    margin-left: 0;
  }
}

/* Home page - image with text
================================================== */

.featured_collections .featured-link--half a[href] img {
  box-shadow: #000 0em 0em 0em;
  transition: opacity 0.2s linear;
}

.featured_collections .featured-link--half:hover a[href] img {
  opacity: 0.8;
}

.featured-link--section {
  box-sizing: border-box;
  float: left;
  width: 100%;
  min-height: 100px;
  @include flexbox();
  @include flex-wrap(wrap);
  &:nth-child(odd) {
   @include flex-direction(row-reverse);
    .featured-link--half {
      float: right;
    }
  }
}

.featured-link--half.featured-link--image {
  background-color: transparent;
  text-align: center;
}

.featured-link--half {
  box-sizing: border-box;
  float: left;
  width: 50%;
  position: relative;
  text-align: center;
  display: table;
  @include flex(1 0 auto);
  @include flexbox();
  @include align-items(center);
  @include justify-content(space-between);
  background-color: #ffffff;
  @include respond-to('small'){
    width: 100%;
    @include flex(1 0 100%);
  }
  .featured-link--wrap {
    width: 100%;
    @include flex(0 0 auto);
  }
  img, svg {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    @include respond-to('small'){
      width: 100%;
      max-width: auto;
    }
  }
  .info {
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    &.text-align--right {
      text-align: right;
      .description:before {
        margin-right: 0;
      }
    }
    &.text-align--left {
      text-align: left;
      .description:before {
        margin-left: 0;
      }
    }
    @include respond-to('small'){
      position: static;
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      padding: 2em 0;
    }
  }
  .collection_title {
    font-size: 2vw;
    margin-bottom: 0.3em;
    display: block;
    color: #b3c945;
    @include respond-to('medium') {
      font-size: inherit;
    }
  }
  .description {
    position: relative;
    font-size: 1.6vw;
    line-height: 1.5;
    margin-bottom: 20px;
    @include respond-to('medium'){
     font-size: 2vw;
    }
    @include respond-to('small'){
     font-size: inherit;
    }
    @include respond-to('xlarge'){
      font-size: inherit;
    }
  }
  .action_button {
    width: auto;

    @include respond-to('medium'){
      padding: 10px 20px;
      font-size: 13px;
    }
    @include respond-to('mobile'){
      padding: 7px 15px;
    }
  }
}

.featured_collections.across-2 {
  .featured-link--section.featured-link--no-image {
    width: 100%;
  }
  .featured-link--section:nth-child(odd) .featured-link--half {
    float: left;
  }
}

.featured-link--section.featured-link--no-image {
  > img {
    display: none;
  }
  .featured-link--half {
    width: 100%;
  }
  .info {
    position: static;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    text-align: center;
    padding: 2em;
    &.text-align--left {
      text-align: center;
    }
    &.text-align--right {
      text-align: center;
    }
  }
  .description, .collection_title {
    display: none;
  }
}

.featured_collections.across-2 {
  @include flexbox();
  @include flex-wrap(wrap);
  .featured-link--image:nth-of-type(4n+3) {
    @include flex-direction(row-reverse);
    @include respond-to('medium'){
      @include flex-direction(row);
    }
  }
  .featured-link--image:nth-of-type(4n+4) {
    @include flex-direction(row-reverse);
  }
}

.featured_collections.across-2 {
  .featured-link--section.featured-link--no-image {
    .featured-link--half {
      width: 100%;
    }
  }
  .featured-link--section {
    width: 50%;
    @include flex-direction(row);
    @include respond-to('medium'){
      width: 100%;
      &:nth-of-type(2n){
        @include flex-direction(row-reverse);
      }
    }
    .featured-link--half {
      @include respond-to('medium'){
        width: 50%;
      }
      @include respond-to('small'){
        width: 100%;
      }
    }
    .description {
      font-size: 1.2vw;
      @include respond-to('medium'){
       font-size: inherit;
      }
    }
    .button {
      font-size: 1.2vw;
      @include respond-to('medium'){
        font-size: inherit;
      }
    }
  }
  .featured-link--image:nth-of-type(2n+1) {
    clear: both;
  }
  .featured-link--image:nth-of-type(2n+2) .featured-link--half {
    float: left;
    @include respond-to('medium'){
      float: right;
    }
  }
  .featured-link--image:nth-of-type(3n+3) .featured-link--half {
    float: right;
    @include respond-to('medium'){
      float: left;
    }
  }
  .featured-link--image:nth-of-type(4n+4) .featured-link--half {
    float: right;
  }
}

/* Home page - featured product
================================================== */

.grid_text_position--left {
  @include respond-to('medium') {
    @include flexbox();
    @include flex-direction(column-reverse);
  }
}

.featured-product-section form a.size_chart {
  display: none; 
}



/* #Buttons
================================================== */

a.button,
  button,
  input[type="submit"],
  input[type="reset"],
  input[type="button"],
  .action_button,
  a.action_button,
  input.action_button[type="submit"],
  input.action_button[type="button"],
  button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    background-color: #b3c945;
    color: #ffffff;
    border: 1px solid #b3c945;
    padding: 12px;
    width: 100%;
    margin: 0;
    cursor: pointer;
    text-align: center;
    text-shadow: none;
    font-family: Cachet, sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0px;
    display: inline-block;
    transition: all 0.2s linear;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    box-sizing: border-box;
    
      border-radius: 4px;
    
  }

  a.button, a.action_button {
    cursor: default;
    &[href] {
      cursor: pointer;
    }
  }

  a.button:hover,
  button:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  .action_button:hover,
  input.action_button[type="submit"]:hover,
  input.action_button[type="button"]:hover,
  button.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover {
/*     background-color: /* #9bae3c transparent; */
/*     color: #b3c945; */
    border: 1px solid #b3c945;
  }

  a.button:active,
    button:active,
    input[type="submit"]:active,
    input[type="reset"]:active,
    input[type="button"]:active {
      box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
      outline: 0;
    }

  .disabled {
    pointer-events: none;
    opacity: 0.8;
  }

  .add_to_cart {
    padding: 12px 30px;
    margin-top: 10px;
    min-height: 48px;
    line-height: 50%;
  }

  .action_button.btn { width: auto !important; }

  .amazon-payments-pay-button {
    display: block !important;
    text-align: center;
  }

  //Shopify smart payment buttons
  .add_to_cart.action_button {
    line-height: initial;
    min-height: 44px;
    margin-bottom: 0;
  }

  .action_button.action_button--secondary {
    background-color: transparent;
    border: 1px solid #b3c945;
    color: #b3c945;
    margin-bottom: 8px;
    box-shadow: none;
    line-height: 1.2;
    padding: 10px 0;
    min-height: 44px;
  }

  .shopify-payment-button {
    position: relative;
    height: 44px;
  }

  .shopify-payment-button button {
    line-height: 1.2;
    padding-top: 11px;
    padding-bottom: 11px;
    margin-bottom: 0;
  }

  div.shopify-payment-button__button {
    
      border-radius: 4px;
    
  }

  .shopify-payment-button__button--branded,
  .shopify-payment-button__button--unbranded {
    overflow: hidden;
    min-height: 44px;
  }

  button.shopify-payment-button__more-options {
    color: #545454;
    box-shadow: none;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 0;
    padding: 16px 0 28px;
    max-width: 80%;
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 50%;
    @include prefix(transform, translateX(-50%), ms webkit spec);
    &:hover {
      background-color: transparent;
    }
  }

  .purchase-details {
    @include flexbox();
    @include align-items(center);
    @include respond-to('xlarge'){
      @include align-items(flex-end);
    }
  }

  .purchase-details.smart-payment-button--true {
    padding-bottom: 30px;
    .purchase-details__quantity {
      @include respond-to('xlarge'){
       margin-right: 8px;
      }
    }
  }

  .purchase-details.smart-payment-button--false {
    @include align-items(flex-end);
  }

  .purchase-details__quantity {
    margin-right: 20px;
    input.quantity {
      padding-top: 11px;
      padding-bottom: 11px;
      line-height: 1.4;
      min-height: 44px;
      margin-bottom: 0;
    }
  }

  .purchase-details__buttons {
    margin-top: 20px;
    @include flexbox();
    @include flex(1 0 60%);
    @include align-items(flex-end);
    @include flex-wrap(wrap);
    @include respond-to('xlarge'){
      @include flex(1 0 70%);
      @include flex-wrap(no-wrap);
    }
    .action_button--secondary {
      @include respond-to('xlarge'){
        margin-right: 8px;
      }
    }
    .shopify-payment-button,
    .action_button--secondary {
      @include flex(1 0 100%);
      margin-bottom: 0;
      margin-top: 8px;
      max-width: 100%;
      @include respond-to('xlarge'){
        @include flex(1 0 calc(50% - 4px));
        max-width: calc(50% - 4px);
      }
    }
  }

  .additional-checkout-button.additional-checkout-button--paypal {
    min-width: 100% !important;
  }

  .additional-checkout-button+.additional-checkout-button {
    margin-left: 0 !important;
    max-width: 100% !important;
  }

/* #Tabs
================================================== */
ul.tabs {
    display: block;
    margin: 25px 0;
    border-bottom: solid 1px #d8d8d8;
    border-top: 0;
    list-style: none outside;
    margin-left: 0;
    text-transform: uppercase;
    padding-left:0;
    padding-bottom: 3px;
}
ul.tabs li {
    display: block;
    width: auto;
    height: 30px;
    padding: 0;
    float: left;
    margin-bottom: 0;
    border: 0;
    list-style: none outside;
    margin-left: 0;
    cursor: pointer;
}
ul.tabs li a {
    display: block;
    text-decoration: none;
    width: auto;
    height: 29px;
    line-height: 30px;
    margin-right: 60px;
    font-size: 13px;
    outline: none;
    @media (max-width: 960px) {
      margin-right: 30px
    }
    @include respond-to('medium'){
      font-size: 12px;
    }
    @include respond-to('small'){
      margin-right: 20px;
    }
}
ul.tabs li a.active {
    border-bottom: solid 3px #d8d8d8;
    background-color: #ffffff;
    border-bottom: solid 3px #b3c945;
    height: 31px;
    position: relative;
    border-right-width: 1px;
    color: #545454;
}
ul.tabs li:last-child a {
        margin: 0;
}
ul.tabs-content { margin: 0; display: block; border: 0; padding-left: 0;}
ul.tabs-content > li { display:none; border: 0; line-height: 1.8em; }
ul.tabs-content > li.active { display: block; border: 0; padding-left: 0px;}
ul.tabs-content ul {padding-left: 0;}

/* Clearfixing tabs for beautiful stacking */
ul.tabs:before,
ul.tabs:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }
ul.tabs:after {
  clear: both; }
ul.tabs {
  zoom: 1; }

/* #Forms
================================================== */
  form {
    margin: 20px 0; }
fieldset {
    margin-bottom: 20px; }
input[type="text"],
  input[type="number"],
  input[type="password"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    border: 1px solid #d8d8d8;
    padding: 15px 25px 15px 15px;
    outline: none;
    font: 15px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #51595d;
    margin: 0;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
      border-radius:4px;
    
  }
select {
    background: url(//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/select_arrow.png?v=115686807687498086611624426803) no-repeat 97% 50%;
    background-image: url(//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/select_arrow.svg?v=153876046741008281231624426804), none;
    background-size: 16px 12px;
    cursor: pointer;
    -webkit-padding-end: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    padding: 14px 15px;
}
select::-ms-expand {
  display: none;
}
@-moz-document url-prefix() {
  select {
    background-size: 12px 10px;
    background-position: 95% 50%;
  }
}
input[type="text"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    border: 1px solid #aaa;
    color: #333;
    box-shadow:  0 0 3px rgba(0,0,0,.2); }
label,
  legend {
    display: block;
    font-weight: bold;
    text-align: center;
    font-size: 13px;  }
input[type="checkbox"] {
    display: inline; }
label span,
  legend span {
    font-weight: bold;
    font-size: 13px;
    color: #444; }
textarea {
    width: 100%;
    box-sizing: border-box;
    
      border-radius: 4px;
    
  }

input[type="submit"].sign_up {
  width: inherit;
  margin-left: 10px;
}
.continue_reading .action_button {
  width: auto;
  padding: 8px 20px;
  margin-top: 15px;
}
.continue_shopping {
  display: none;
  position: relative;
  text-align: center;
  margin-top: 20px;
}
.continue_shopping a {
  font-weight: bold;
}

.index div.section.product_section {
  padding: 25px 0;

  .product_info {
    margin-bottom: 2em;
  }
}
div.product_section {
  margin-top: 5px;
}

#target {
  text-align: center;
}
#customer input[type="text"],
#customer input[type="email"],
#customer input[type="password"] {
  width: 100%;
}
#customer_login {
  margin-bottom: 2px;
}

#customer_decline {
  width: auto;
}

#shipping-calculator input {
  width: 100%;
}

.acceptsMarketing {
  @include flexbox();

  label {
    display: inline-block;
    margin-left: 5px;
  }

  input[type="checkbox"] {
    margin-top: 5px;
  }
}

/* #Tables
================================================== */


  table a:link {
    color: #666;
    font-weight: 200;
    text-decoration:none;
  }
  table a:visited {
      color: #999999;
      font-weight:bold;
      text-decoration:none;
    }
  table a:active,
    table a:hover {
      color: #bd5a35;
      text-decoration:underline;
    }
  table {
      color:#666;
      text-shadow: none;
      background:#fff;
      border:none;
      margin-bottom: 20px;
      width: 100%;
      -moz-border-radius: 2px;
      -webkit-border-radius:2px;
      border-radius:2px;
    }
  table img {
      max-width: inherit !important;
    }
  table th {
      font-weight: bold;
      text-align: left;
      padding: 12px;
/*       border-top:1px solid #ccc;
      border-bottom:1px solid #e0e0e0;
      background: #ededed;
      background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
      background: -moz-linear-gradient(top,  #ededed,  #ebebeb); */
    }
  table th:first-child{
      text-align: left;
    }
  table tr:first-child th:first-child{
      -moz-border-radius-topleft:3px;
      -webkit-border-top-left-radius:3px;
      border-top-left-radius:3px;
    }
  table tr:first-child th:last-child{
      -moz-border-radius-topright:3px;
      -webkit-border-top-right-radius:3px;
      border-top-right-radius:3px;
    }
  table tr{
      padding-left:12px;
    }
  table tr td:first-child{
      text-align: left;
      padding-left:12px;
      border-left: 0;
    }
  table tr td {
      padding:12px;
      border-bottom:none;
      border-left:none;
      background: #fff;
    }
  table tr td.value input {
      margin-bottom: 0;
    }
  table tr.even td{
      background: #fff;
    }
  table tr:last-child td:first-child{
      -moz-border-radius-bottomleft:3px;
      -webkit-border-bottom-left-radius:3px;
      border-bottom-left-radius:3px;
    }
  table tr:last-child td:last-child{
      -moz-border-radius-bottomright:3px;
      -webkit-border-bottom-right-radius:3px;
      border-bottom-right-radius:3px;
    }
  table tr:hover td{
      background: #fff;
    }


table tr.order_summary td.label { text-align: right;}

/* #FAQ
================================================== */
$accordionBg: #ffffff;

.faq-accordion {
  padding-top: 0.75em;
  .faq-accordion--heading {
    padding-top: 1.5em;
    margin: 0 0 10px;
    &:first-child { padding-top: 0; }
  }
  & > dt {
    & > .faq-accordion--button {
      background: transparent;
      position: relative;
      padding: 20px 20px 20px 40px;
      color: #b3c945;
      border-bottom: 1px solid #d8d8d8;
      text-align: left;
      display: block;
      cursor: pointer;
      width: 100%;
      outline: none;
      text-transform: initial;
      min-height: auto;
      height: auto;
      line-height: inherit;
      font-weight: normal;
      font-family: Helvetica, sans-serif;
      box-shadow: none;
      border-radius: 0px;
      font-size: 18px;
      &:hover,
      &:focus {
        background: darken($accordionBg, 3%);
        border: none;
        border-bottom: 1px solid #d8d8d8;
        color: #080809;
      }
      &::after {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50.1%);
        -ms-transform: translateY(-50.1%);
        transform: translateY(-50.1%);
        left: 15px;
        font-size: 25px;
        content: "\002b";
        color: inherit;
      }
      &[aria-expanded="true"] {
        &::after {
          content: "\002d";
          font-size: 30px;
        }
      }
    }
    &:first-child {
      & > button {
        border-top: none;
      }
    }
  }
  & > dd {
    color: #545454;
    padding: 20px 0px 20px 0px;
    &[aria-hidden="true"] {
      display: none;
    }
    @include respond-to('medium') {
      margin-left: 15px;
    }
  }
}

/* #Contact form
================================================== */

.quote-container {
  margin: 2em 0;
  p {
    font-style: italic;
    font-weight: bold;
  }
}

.contact_form {
  clear: both;
  padding-top: 0.75em;
  @include flexbox();
  @include align-items('center');
  @include justify-content('space-between');
  @include respond-to('medium'){
    display: block;
  }

  .contact_content .contact_text {
    padding-bottom: 20px;
  }
}

.contact_image--right {
  @include respond-to('medium'){
    padding-bottom: 20px;
  }
  @include respond-to('large'){
    padding-right: 60px;
  }
}

.contact_image--left {
  @include respond-to('medium'){
    padding-bottom: 20px;
  }
  @include respond-to('large'){
    padding-left: 60px;
  }
}

.contact_text_alignment--right .contact_content p,
.contact_text_alignment--right h2 {
  text-align: right;
}

.contact_text_alignment--center .contact_content p,
.contact_text_alignment--center h2 {
  text-align: center;
}

.contact-template_contact_form {
  margin-bottom: 50px;
}

.contact_form.contact_text_position--center .contact_content {
  margin-bottom: 25px;
}

.contact_form .contact_image img {
  width: 100%
}

/* #Home page - newsletter
================================================== */

.newsletter-section {
  .newsletter-wrap {
    margin: 0 auto;
    padding: 40px 0;
    @include flexbox();
    &.newsletter--left {
      @include justify-content(flex-start);
    }
    &.newsletter--right {
      @include justify-content(flex-end);
      form.contact-form {
        float: right;
        @include justify-content(flex-end);
      }
    }
    &.newsletter--center {
      @include justify-content(center);
      form.contact-form {
        margin: 0 auto;
      }
    }
    h2 { margin-bottom: 5px }
    p { margin-bottom: 7px; }
    form.contact-form {
      padding-top: 0;
      input.action_button {
        width: 120px;
        margin-left: 5px;
        @include respond-to('medium'){
          width: 100%;
        }
      }
    }
    @include respond-to('medium'){
      @include justify-content(center);
    }
  }

  .text {
    max-width: 60%;
    @include respond-to('medium'){
      max-width: 100%;
    }
  }
  .fullWidth--false .newsletter-wrap {
    margin: 0 10px;
    padding: 60px 40px;
    @include respond-to('medium'){
      margin: 0;
      padding: 40px 20px;
      .text { padding: 0px 10px; }
    }
  }
}


/* #Home page - Map
================================================== */

.maps iframe {
  pointer-events: none;
  display: block;
}

.page-contact .map--container {
  padding-top: 40px;
}

.map--container {
  svg {
    height: 400px;
    @include respond-to('small'){
      height: 250px;
    }
  }
}

.mapLayout {
  @include flexbox();
  @include respond-to('medium'){
    @include flex-wrap(wrap);
  }
  .placeholder-svg--banner {
    max-height: 400px;
  }
}

.mapLayout.mapLayout--right {
  @include flex-direction(row-reverse);
}

.mapLayout--display {
  width: 75%;
  @include flex(1 0 75%);
  @include respond-to('medium'){
    width: 100%;
  }
  img.lazyloaded {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    @include respond-to('medium'){
      height: auto;
    }
  }
  iframe {
    height: 400px;
  }
}

.mapLayout--display.mapLayout-hours--false {
  width: 100%;
}

.mapLayout--info {
  width: 25%;
  @include flexbox();
  @include align-items(center);
  @include respond-to('medium'){
    width: 100%;
    height: auto;
  }
  .info {
    padding: 1.5rem;
    width: 100%;
    p {
      margin-bottom: 0;
    }
    .action_button {
      margin-top: 20px;
      width: auto;
      padding: 25px 35px;
      line-height: 0;
    }
  }
}

.mapLayout--directions {
  max-width: 90%;
  margin: 20px auto;
}

/* #Blog
================================================== */

.sidebar .sidebar_content {
  .input-row {
    @include flex-direction(column);
    margin-left: 0px;
    margin-right: 0px;

    input {
      margin: 5px 0;
    }

    input.action_button {
      width: 100%;
    }
  }
}

.blog_list {
  margin-left: 0
}

.blog_list li {
  list-style: none;
  padding-left: 0;
}

.recent_articles li {
  padding-bottom: 10px;
}

.recent_articles a {
  font-size: 15px;
  padding-right: 15px;
  display:block;
}

.toggle span,
.mobile_menu span {
  font-weight: bold;
  font-size: larger;
  float: right;
  display: none;
}

.mobile_menu span {
  display: block;
  padding: 8px 20px;
  cursor: pointer;
  color: #fff;
}

.mobile_menu span:hover {
  color: #fff !important;
}

.toggle-all--true {
  h4.toggle {
    cursor: pointer;
  }
  .toggle span {
    display: block;
  }
  .toggle_list {
    display: none;
  }
}

.toggle-all--false {
  @include respond-to('large'){
    .toggle_list {
      display: block !important;
    }
  }
}

.menu-toggle {
  float: right;
  display: inline-block;
  cursor: pointer;
  padding: 1px 6px 0 6px;
  margin-right: 0;
  font-size: 12px;
  font-weight: bold;
  transition: transform 0.3s linear;

  &.active {
    transform: rotate(-90deg);
  }

  @include respond-to('medium'){
    font-size: 14px;
  }
}

.meta .label,
.label {
  color: #adadad;
}

.blog_meta,
.blog_meta a {
  color: #adadad;
}
.blog_meta a:hover {
  color: #080809;
}
.blog_meta p {
  padding-right: 40px;
}
.blog_meta span {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-size: smaller;
  color: #adadad;
}
.blog_meta span:after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  margin: -1px 5px 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #ced3d3;
  box-sizing: border-box;
}
.blog_meta span:last-child:after {
  background-color: transparent;
}
.tags span a {
  font-weight: bold;
  color: #b3c945;
}
.blog_list li {
  list-style: none;
}
.count {
  font-style: normal;
  font-size: 13px;
}

#tag_filter,
#sort-by {
  margin-bottom: 0;
  padding: 10px 30px 10px 12px;
  display: inline-block;
}
.excerpt {
  margin-top: -10px;
  line-height: 1.8em;
  position: relative;
  max-height: 9em; /* exactly five lines */
  margin-bottom: 7px;
  overflow: hidden;
}

.excerpt-length--lg .truncation-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 30px 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.excerpt-length--sm .truncation-fade {
   display: none;
}
.container div.tag_filter {
  display: none;
}

/* #Newsletter
================================================== */
.newsletter {
  margin: 0px auto;
  max-width: 640px;
  .message:empty {
    display: none;
  }
}

.input-row {
  @include flexbox();
  @include flex-wrap(wrap);
  margin-left: -5px;
  margin-right: -5px;
  width: 100%;
  @include respond-to('medium') {
    @include flex-direction(column);
    margin-left: 0px;
    margin-right: 0px;
  }

  input {
    margin: 5px;
    max-height: 51px;
    min-width: 0;
    @include respond-to('medium') {
      margin: 5px 0;
    }
  }

  input[type="text"] {
    @include flex-basis(0);
    @include flex-grow(1);
    @include flex-shrink(1);
  }

  input[type="email"] {
    @include flex-basis(0);
    @include flex-grow(2);
    @include flex-shrink(2);
  }

  input.sign_up {
    display: inline-block;
    margin: 5px;
    @include flex(none);
    max-height: 51px;
    @include respond-to('medium'){
      width: 100%;
    }
  }
}

/* #Image Gallery
================================================== */

.gallery-section {
  text-align: center;

  a{
    display: block;
  }

  img{
    width: 100%;
    height: auto;
    display: block;
  }

  .two-per-row {
    width: 50%;
    @include respond-to('medium') {
      width: 100%;
    }
  }

  .three-per-row {
    width: 33.333%;
    @include respond-to('medium') {
      width: 100%;
    }
  }

  .four-per-row {
    width: 25%;
    @include respond-to('medium') {
      width: 100%;
    }
  }

  .gallery_image {
    display: block;
    float: left;
    margin: 0;
  }

  .add-padding {
    padding: 5px;
  }
}

/* #Testimonials
================================================== */

.testimonial-section {

  .featured-link--section {
    &:nth-child(odd) {
      @include flex-direction(initial);
      .featured-link--half {
        float: initial;
      }
    }
  }

  .featured-link--half {
    background-color: #ffffff;
    h2, p {
      color: #545454;
    }
  }

  .testimonial-image-right {
    @include flex-direction(row-reverse);
    &:nth-child(odd) {
      @include flex-direction(row-reverse);
    }
  }

  .flex-control-nav{
    display:none;
    @include respond-to('medium') {
      display: block;
    }
  }
}

/* #Logo-list
================================================== */

.logo-bar-section {

  h2 {
    padding-bottom: 6px;
  }
}

.logo-bar {
  text-align: left;
  margin-bottom: 20px;
}

.logo-bar__item {
  display: inline-block;
    vertical-align: middle;
    max-width: 200px;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
    border: 1px solid gray;
    padding: 35px;

  @include respond-to('medium') {
    margin-right: 15px;
    margin-left: 15px
  }
}

/* #Rich text
================================================== */
.container img.richtext-logo {
  max-width: 200px;
  margin: 0px auto;
  display: block;
}

/* #Testimonials
================================================== */

.testimonial-section {

  .featured-link--section {
    &:nth-child(odd) {
      @include flex-direction(initial);
      .featured-link--half {
        float: initial;
      }
    }
  }

  .featured-link--half {
    background-color: #ffffff;

    h2, p {
      color: #545454;
    }

    h2{
      padding-bottom: 30px;
    }
  }

  .testimonial-image-right {
    @include flex-direction(row-reverse);
    &:nth-child(odd) {
      @include flex-direction(row-reverse);
    }
  }

  .flex-next, .flex-prev, .flex-control-nav {
    z-index: 101;
  }

  .flex-control-nav {
    display:none;
    bottom: 10px;
    @include respond-to('medium') {
      display: block;
    }

    li a {
      background: #545454;
      border-color: #545454;
    }
  }
}

/* #Misc
================================================== */
.remove{ color: #545454; }
.half-bottom { margin-bottom: 10px !important; }
.add-bottom { margin-bottom: 20px !important; }
.right { float:right; position: relative; }
.left { float: left; }
.center { text-align: center; }
.relative { position: relative; }
.inline { display: inline; }
h2.align_right { text-align:right }
.align_right { text-align:right }
h2.align_left { text-align: left; }
.align_left { text-align: left; }
.align_center { text-align: center; }
.container div.mobile_only { display:none; }
.no_border { border: none !important; }
.extra_padding { padding-top: 4px; }
.hidden { display: none; }
div#gift-card-outer-container { background-color: #eee; }
.warning { clear: both; padding-top: 20px; text-align: center; }
#grid .column,
  #grid .columns {
    background: #ddd;
    height: 25px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #555;
    font-size: 12px;
    font-weight: bold;
     border-radius: 2px;
   }
#grid .column:hover,
  #grid .columns:hover {
    background: #bbb;
    color: #333; }
#grid .example-grid { overflow: hidden; }

.visuallyhidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.image-with-text-section .grid-layout--standard {
  padding: 20px 0px;
}

.banner-option { //Used for inner pages with banner options
  .headline { padding-top: 20px; }
  .header-section { padding-bottom: 0; }
  .wide_display--false { padding-top: 20px; }
  .homepage_slider .flex-caption .container { opacity: 1; }
  .flex-caption .headline { text-align: center; }
}

/* #Site Styles
================================================== */
  div.container {
      margin: 0 auto;
  }
  div.content {
    padding: 20px 0px 0px 0px;
  }
  .logo a {
    margin: 0;
    padding-top: 5px;
    display:block;
  }
  div.section {
     margin: 10px 0;
  }
  div.homepage_content {
    padding: 40px 0;
  }
  .featured-content-section {
    background-color: #ffffff;
  }
  .headline-section {
    background-color: #ffffff;

    .action_button {
      line-height: 18px;
      @media only screen and (min-width: 769px) {
        width: auto;
      }
    }
  }
  div.product_section {
    margin: 5px 0;
    .flexslider .slides .flex-active-slide {
      z-index:100 !important;
    }

    .flexslider .slides li {
      text-align: center;
      position: relative;
      z-index:-100 !important;
    }
  }
  .breadcrumb {
    /* margin-bottom: 1em; */

    .prev, .next {
      border: solid 1px #d8d8d8;
      color: #545454;
      margin: 5px 0 5px 8px;
      padding: 5px 12px;
      font-size: 12px;
      display: inline-block;

      
        border-radius: 4px;
      

      &:before {
        margin-right: 0;
      }

      &:hover, &:active {
        background-color: #f7f7f7;
        color: #b3c945;
      }
    }
    .prev:before {
      right: 1px;
    }
    .next:before {
      right: -1px;
    }
  }
  #category {
    width: 100%;
  }
  .featured_content p {
    margin-bottom: 0;
  }
  .featured_text {
    font-size: 18px;
    line-height: 36px;
  }
  .paginate {
    text-align: center;
  }
  .paginate span,  a.tag {
    border: solid 1px #d8d8d8;
    margin: 10px 5px;
    padding: 5px 10px;
    display: inline-block;
    min-width: 1em;
    
      border-radius: 4px;
    
  }
  a.tag {
    font-size: smaller;
    padding: 4px 6px;
    margin: 5px 2px 5px 0;
  }
  .paginate span:hover, a.tag:hover {
    color: #080809;
  }
  .banner_image, .article img.banner_image {
    width: 100%;
    height: auto;
  }
  .paginate .current {
    background-color: #f2f2f2;
  }
  .paginate .deco {
    border: none;
  }
  .thumbnail {
    position: relative;
    margin-bottom: 1em;
    
  }
  .thumbnail a {
    display: block;
    padding-bottom:0.5em;
    color: #b3c945;
  }
  .thumbnail a:hover {
    color: #b3c945;
  }
  .thumbnail .vendor{
    text-transform:uppercase;
    font-weight:bold;
    font-size:13px;
    letter-spacing:0.5px;
  }
  .new {
    position: relative;
    display: inline;
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
  }
  .thumbnail img {
    @include transition;
  }
  
    .thumbnail:hover img{
      opacity:0.5;
    }
  
  .thumbnail a img, .thumbnail a svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  

  /* Swap to second image on hover */

  

  .thumbnail .price,
  .thumbnail .sold_out,
  .sold_out {
    font-weight: bold;
    color: #545454;
  }

  .thumbnail .sale,
  .sale {
    color: #b3c945;
  }

  .sale_banner,
  .new_banner {
    position: absolute;
    top: 0;
    background: #b3c945;
    padding: 0px 20px;
    text-align: center;
    color: #fff;
    font-family: Cachet, sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0px;
    
      border-radius: 4px;
    
  }
  .new_banner {
    background: #040707;
  }

  
    .thumbnail .info {
     text-align: center;
    }
    .thumbnail .price {
      display: block;
      font-weight: bold;
    }
    .collection_swatches {
      text-align: center;
    }
  

  .checkout_table_header h4 {
    margin-bottom: 12px;
  }

  .cart_price {
    float: right;
    text-align: right;
    padding-left: 20px;
    font-weight: bold;
    display: none;
  }

  label.tos_label {
    display: inline;
    font-weight: normal;
    text-transform: none;
  }

  #estimated-shipping, .excluding_tax {
    display: block;
  }

  a.cart_image {
    display: block;
    max-width: 100px;
  }

  .cart_image img {
    float:left;
    margin-right: 20px;
    max-width: 100px;
  }

  .quantity_label {
    display: none;
  }

  .price_total_text {
    font-weight: bold;
    display: none;
  }

  .was_price {
    text-decoration: line-through;
    color: #adadad;
    font-style: italic;
    text-shadow: none;
    font-weight: normal;
  }

  .thumbnail .quick_shop_container {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width:100%;
    text-align: center;
  }

  .thumbnail .quick_shop {
    display:none;
    background-color: #b3c945;
    color: #fff;
    font-family: Cachet, sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0px;
    padding: 13px 20px;

    &:hover{
      color: #fff;
      background-color: #9eb13f;
      border: 1px solid #9eb13f;
    }
  }

  .thumbnail:hover .quick_shop {
    display:inline;
  }

  .thumbnails a {
    display:block;
    margin-bottom: 1em;
  }

  /* #Instagram Feed
  ================================================== */

  #instafeed .instagram__item {
    position: relative;
    margin-bottom: 20px;
  }

  .instagram__item:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .instagram__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .instagram__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
  }

  .instagram__video-link {
    &:after, &:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
    }
    &:after {
      width: 0;
      height: 0;
      border: 16px solid transparent;
      border-left: 20px solid #fff;
      margin-top: -18px;
      margin-left: -7px;
      -webkit-filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.25));
    }
    &:before {
      margin-top: -34px;
      margin-left: -34px;
      width: 60px;
      height: 60px;
      border: 3px solid #fff;
      border-radius: 50%;
      box-shadow: 0 0 4px rgba(black, 0.18);
      background: rgba(black, 0.42);
      transition: background 0.3s ease;
    }
    &:hover {
      &:before {
        background: rgba(black, 0.7);
      }
    }
  }

  .instas {
    width: 20%;
    float: left;
    position: relative;
  }

  .instas a {
    display: block;
  }
  .instas img, .instas video {
    width: 100%;
    display: block;
  }

  .vidholder {
    position: relative;
    overflow: hidden;
  }

  img.vidplaceholder {
      opacity: 0 !important;
  }

  .instas video {
      object-fit: cover;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      bottom: 0;
      top: 0;
      max-height: 100%;
      max-width: 100%;
  }

  .arrow {
    font-size: smaller;
    position: relative;
    top: -1px;
    left: 2px;
    opacity: 0.6;
  }
  .modal {
    margin: 10px 0;
    display: none;
    background-color: #ffffff;
    color: #545454;
  }
  .modal_product {
    width: auto;
    line-height:0px;
    max-width: 940px;
  }
  .modal_product img {
    cursor: pointer;
  }
  .modal_image {
    text-align: center;
    img {
      max-height: 500px;
    }
  }
  .modal p.modal_price, p.modal_price {
    font-size: 22px;
    margin-bottom: 1em;
    
      margin-top: 10px;
    
  }
  .modal form {
    margin-bottom: 10px;
  }
  .notify_form .submit {
    padding: 8px 8px !important;
  }
  .product_image_col {
    margin-top: 15px;
    text-align:center;
  }
  .product_image {
    text-align: center;
    margin-bottom: 0.75em;
  }
  .meta {
    font-size: 13px;
  }
  .meta p {
    font-size: 13px;
    margin-bottom: 0px;
  }
  p.meta {
    margin-bottom: 10px;
  }
  .comment-body p.meta {
    margin-bottom: 5px;
  }

  /* Sidebar */

  .sidebar_title {
    margin-bottom: 0;
  }

  .sidebar ul > li {
    @include flexbox();
    @include flex-wrap(wrap);
    @include align-items(center);
    @include justify-content(space-between);
    a { max-width: 80%; }
    ul {
      @include flex-basis(100%);
    }
  }

  .content_block {
    padding-right: 15px;
  }

  .sidebar .newsletter {
    margin-bottom: 25px;
  }
  .sidebar .newsletter .sign_up {
    margin-left: 0;
    width: 100%;
  }
  .sidebar p {
    font-size: 15px;
  }
  .sidebar .search {
    padding-top: 8px;
  }
  .sidebar .search input {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .section_select {
    float: right;
    text-align: right;
    margin-left: 15px;

    @include respond-to('medium'){
      width: 100%;
      margin-left: 0;
    }
  }
  .checkout {
    display:block;
    float:right;
    margin-top: 0px;
  }
  .or {
    font-size:smaller;
    font-style: italic;
    padding: 0 10px;
  }
  input.quantity {
    padding: 14px 8px;
    width: 60px;
    display: inline;
    margin-bottom: 1em;
  }
  .inline_purchase {
    display: inline-block;
    margin-left: 20px;
    margin-top: 28px;
  }
  .inline_purchase .add_to_cart {
    float: left;
    margin-top: 0;
  }
/*   .subtotal {
    text-align:right;
  } */
.subtotal {
    text-align: right;
    padding-right: 24px;
    padding-top: 7px;
}

div#footer ul.footer_menu {
    text-align: left;
   
}

/* div#footer h6.social {
    padding-left: 27%;
} */

div#footer ul.social_icons {
    display: flex;
}

div#footer h6 {
    text-align: left;
    padding-left: 28px;
}

  .mobile_left {
    text-align: right;
  }
  .article, .article_image {
    padding-bottom: 15px;
  }
  .article img, .article svg {
    /* margin-bottom: 15px; */
  }
  body.article { padding-bottom: 0 }
  .sidebar_content {
    border-left: solid 1px #d8d8d8;
    padding-left: 20px;
  }
  .sidebar .newsletter {
    margin-bottom: 20px;
  }
  .comment {
    margin-bottom:20px;
  }
  .comment-body h6 {
    padding-bottom: 0.25em;
  }
  .comment-form input {
    width:100%;
  }
  .social_buttons a {
    display: inline-block;
    line-height: 32px;
    padding: 0 12px;
    color: #545454;
    border: 1px solid #d8d8d8;
    margin: 8px 8px 8px 0;
    font-size: 13px;
    
      border-radius: 4px;
    
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    -ms-transition: all .1s linear;
    transition: all .1s linear;
  }

  .items_left p {
    margin-bottom: 10px;
  }
  .gravatar {
    width: 100px !important;
  }
  .gravatar img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    -webkit-border-radius: 40px;
    -khtml-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
  }
  .red {
    color: #C33;
  }
  .address p {
    margin-bottom: 5px;
  }
  div#disqus_thread ul, div#disqus_thread li {
      border: none;
  }

  .search_page {
    padding: 40px 0 60px 0;
  }

  .search_page--no-results {
   .search-field {
    line-height: 1.7;
    @include respond-to('medium'){
      width: 100%;
    }
   }
  }

  .size_chart {
    float: right;
    font-family: Helvetica, sans-serif;
    font-size: smaller;
  }

  .size_chart_content {
    display: none;
    padding: 10px 20px;
  }

/* #Password Page
================================================== */
#password-page-bg {
  background-color: #000000;
  color: #ffffff;
  
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  
}

#password-container {
  margin: 55px auto 0;
  max-width: 100%;
  display: table;
  text-align: center;
  display: table;
}

#password-container h1 {
  color: #b3c945;
}

.password-page-row {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.password-page-col {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px;
  width: 100%;
}

.password-page-name {
  color: #ffffff;
}

.password-page-message {
  margin: 0 auto 25px;
  line-height: initial;
  text-transform:uppercase;
  padding:15px 0px 15px 0px;
  border-top:1px solid #FFF;
  border-bottom:1px solid #FFF;
  font-size: 26px;
  color: #b3c945;
}

.password-page-follow {
  color: #b3c945;
  text-align: center;
  font-size: 18px;
  margin-bottom: 0px;
  margin-top: 20px;
}

.password-logo {
  max-width: 240px;
  margin: 0px auto;
}

.password-message{
  max-width: 600px;
}

.hr-small {
  margin: 20px auto;
  width: 50px;
}

.password_spread{
  padding:0px;
}

.password-social .social_icons li {
  display: inline-block;
}

.password-social .social_icons{
  margin:0px;
}

.password-social .social_icons a, .password-social .social_icons a:visited, .password-social .social_icons a:active, .password-social .social_icons a:hover  {
  color: #ffffff;
  font-size: 17px;
  padding:0px;
  height:42px;
  width:42px;
  line-height:42px;
  text-align:center;
  display:inline-block;
  &:before{
    margin-right:0px;
  }
}

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

#password-page-bg .powered {
  margin-top: 0px;
}

.powered {
  display: block;
  margin-top: 15px;
}

.password-footer a {
  color: #ffffff;
  text-decoration: none;
}

.shopify a {
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0JJREFUeNqMU81vG0UU/83sR73YG+M4xrHj4jj9UCFNSaGlQQUhhFBRpXIo6jEHQFXFAbhy4B/gioTgzgGV7ws5IAoqUgUSoWoIaZJGpGpMHDuptf5a7+fM8nZpJaRy4M0+jd7szO/93u/NsAsX5vFvi6IInHNUq5NnstnsqXp96xur3f392HNlrIcLePHkS8hlTchIJvtVSTOjIaSAwhkiGsXi+BudjjVp28Oj+XzhrPDZh5qqfoIQD5j6wrxHCAJ6UMXVr3pgnB0c9O2843jrE5XMtZER47GTp+bOqfn++d9+Ct5TuLrCGAcjpgnAWEVSdg8HSyWUzTl8v7D08szxSltPB6/OPDWeW/q1caI2O0zfbrThBM7pjdbiz9PG7LsK01epYKiCaMlIQadnHag9UZ2vbuqvl47tVMwcY3fdFjLFCIHksB0bQojCTmfzlWyHf53S0qsyigESMRS0uqtvNbs330nXNHhRAWl3ChnNhLG/jzBy4fg27pGG5TSqWsARV6EGwk+WScgymIQ5auLpyTdRHj2arC//9QXuDpfgeDYkQcgoZixq4DKuAGoo7wEwVg5DD3PVt1EafRzL21/C0HJo9f4gYUO4gZNkFMk5Nkli3wcI4vP7yIvxhsLIIXhBHzfqlzHwWihkDiNjPEwlDJNE/zDABGPQKfR5QAzI8wRU9IWNurWIlJbF+dmP8Ig5ja67Az8cwvWdmCVi4YSMSlTzODjAQxGAvCZkaIpI4MeN97Fc/xbpfXk8WXmNqPcw9C1idR8gKSNN06GYEScZYwZVJ+xj/8hpPJp9HmvNK/Bd6g0zEXfJ9rvEwE0A4qbFLOibimN15RcLR57JVFx7iLGHpvFs9RJ8QZvofmzsXoEXDqAqWiIiyUaAUSIkBTVVY1BuXuth6rhxcaxizDb619EcrGPg7+JG8zJWdj8HZwplk7hTHyDiKrU5BVWXyKT57ncfNz9TRBjxrRWn3/zT2+7seV7DWuabnR+MTrCm6ikNnLLEL3R720dmQkMqFz8dia3rdmvhg8an7MH3hZRhKuVsQTtcPmCcGK+lZvLl1JEdK9T7PW9t75a72L7tXh3sBbdEELXxP00h1//rx98CDACS7p3N/ZPUwQAAAABJRU5ErkJggg==);
    padding-left: 21px;
    color: #ffffff;
    text-decoration: none;
}

/* Password Page Modal CSS */
.controls {
  display: block;
  margin: 1em 2em 1em auto;
  text-align: right;
  text-transform: uppercase;
  position: relative;
}

#open-me a {
  color: #ffffff;
  font-weight:bold;
  font-size:15px;
}

.close-me { z-index: 8000; }
.close-me a { color: #000; }

.modalbox {
  position: absolute;
  height: 100%;
  top: -1em;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index:5000;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  background: rgba(255,255,255,0.95);
}

.overlay-close {
  width: 150px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #000;
  font-size: 14px;
}
.overlay-data {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  visibility: 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
.overlay-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.inputbox {
  margin: 0px auto;
  max-width: 100%;
  display: table;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #000;
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 80%;
  display: inline-block;
}

#owner {
  font-size: 0.9em;
  margin-top: -1em;
  opacity: 0.8;
}

.pass-close {
  color: #000 !important;
  padding: 0 !important;
  margin: 1em !important;
  position: absolute !important;
  top: 0px !important;
  right: 0px !important;
}

@media screen and (min-width: 320px) and (max-width: 440px) and (max-height: 667px){
  .modalbox {
    display: block;
    width: 414px !important;
    max-width: 100%;
    text-align: center;
  }
  .pass-close {
    display: block;
    margin: 0.65em -0.15em 1em 0 !important;
  }
}

/* #Product Details
================================================== */
div.product-details {
  .action_button {
    width: auto;
  }
  img {
    width: 100%;
  }
  img.rich-image {
    width: auto;
    margin-bottom: 20px;
  }
  .product-divider {
    margin: 20px 0px;
    opacity: 0;
    border-color: #d8d8d8;
  }
  .active-divider {
    opacity: 1;
  }
  .feature_divider_left {
    margin: 25px 0px 25px 0px;
  }

  .detail_title {
    line-height: initial;
    font-size: 38px;
    margin-bottom: 0.3em;
    font-family: Cachet, sans-serif;
    font-weight: 500;
    text-transform: none;
    color: #b3c945;
    display:block;
    letter-spacing: 0px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    @include respond-to('medium'){
      font-size: 19px;
    }
  }
  .gallery--thumbnail.column {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* #Swatch Styles
================================================== */

  .swatch_options {
    margin-bottom: 1em;
  }
  .swatch .option_title {
    margin: 0.5em 0;
    font-weight: bold;
  }
  /* Hide radio buttons.*/
  .swatch input {
    display:none;
  }
  .swatch label {
    float:left;
    min-width: 25px;
    height: 35px;
    margin:0;
    font-size:13px;
    text-align:center;
    line-height: 35px;
    white-space:nowrap;
    text-transform:uppercase;
    cursor: pointer;
    padding: 0 10px;
    font-weight: bold;
  }
  .swatch .color label {
    min-width: 34px;
    height: 26px;
    line-height: 26px;
    background-position: center;
    background-size: cover;
  }
  .swatch-element {
    border: #e2e2e2 1px solid;
    
      border-radius: 4px;
    
  }
  .swatch-element.color {
    padding: 5px;
  }
  .swatch-element.color, .swatch-element.color label {
    border: #e2e2e2 1px solid;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .swatch-element.color { border-color: transparent; }
  .color.swatch-element label { padding:0; }

  .swatch_options input:checked + .swatch-element {
    border-color: #666;
  }
  .swatch .swatch-element {
    float:left;
    -webkit-transform:translateZ(0);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0px 10px 15px 0;
    position:relative;
  }
  .crossed-out { position:absolute; width:100%; height:100%; left:0; top:0; }
  .swatch .swatch-element .crossed-out { display:none; }
  .swatch .swatch-element.soldout .crossed-out { display:block; height: 100%; width: 100%; }
  .swatch .swatch-element.soldout label {
    filter: alpha(opacity=60);
    -khtml-opacity: 0.6;
    -moz-opacity: 0.6;
    opacity: 0.6;
  }
  /* Tooltips */
  .swatch .tooltip {
    text-align:center;
    background: #333;
    background: rgba(#333, 0.9);
    color:#fff;
    bottom:100%;
    padding: 5px 10px;
    display:block;
    position:absolute;
    width:120px;
    font-size: 13px;
    left:-35px;
    margin-bottom:15px;
    /* Make it invisible by default */
    filter:alpha(opacity=0);
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity:0;
    visibility:hidden;
    /* Animations */
    -webkit-transform: translateY(10px);
       -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
         -o-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
        -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
         -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    z-index: 10000;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
  }
  .swatch .tooltip:before {
    bottom:-20px;
    content:" ";
    display:block;
    height:20px;
    left:0;
    position:absolute;
    width:100%;
  }
  /* CSS triangle */
  .swatch .tooltip:after {
    border-left:solid transparent 10px;
    border-right:solid transparent 10px;
    border-top:solid rgba(#333, 0.9) 10px;
    bottom:-10px;
    content:" ";
    height:0;
    left:50%;
    margin-left:-13px;
    position:absolute;
    width:0;
  }
  .swatch .swatch-element:hover .tooltip {
    filter:alpha(opacity=100);
    -khtml-opacity:1;
    -moz-opacity:1;
    opacity:1;
    visibility:visible;
    -webkit-transform:translateY(0px);
       -moz-transform:translateY(0px);
        -ms-transform:translateY(0px);
         -o-transform:translateY(0px);
            transform:translateY(0px);
  }




/* #Footer
================================================== */
  div.footer {
    background-color: #a19182;
    
    
      border-top: solid 1px rgba(0,0,0,0);
    

    font-size: 15px;
    line-height: 1.7em;
    color: #ffffff;
    padding: 25px 0;
    margin-top: 2em;
  }
  .index div.footer {
    margin-top: 0;
  }
  .footer p {
    margin-bottom: 10px;
  }
  .footer a {
    color: #ffffff;
  }
  .footer a:hover {
    color: #b3c945;
  }
  .contact-form {
    margin-bottom: 0;
  }
  form.search {
    margin-bottom: 10px;
  }
  input.search_box {
    padding: 10px 15px 10px 35px;
    background: #fff url(//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/search.jpg?v=14535434292738173541624426803) no-repeat 12px 50%;
    border: solid 1px #d8d8d8;
    
      border-radius: 4px;
    
    margin-bottom: 0px;
  }
  .search_box:focus {
    background-color: #fff;
  }

  .payment_methods {
    margin: 4px 0 6px 0;
    filter:alpha(opacity=80);
    opacity: 0.8;
  }

  .payment_methods svg {
    padding-right: 4px;
    height: 30px;
    width: 48px;
  }

  .credits_right {
    text-align: right;
  }
  .icons {
    list-style: none outside;
    margin-left: 0;
    border: 0;
  }
  .footer .social_icons li {
    border: 0;
    float: left;
    padding: 0 0 8px 0;
  }
  .footer .social_icons li a {
    display: inline-block;
    }

  .footer ul {
    list-style: none outside;
    margin-left: 0;
  }
  .footer li {
    padding: 6px 0;
    list-style: none outside none;
    margin-bottom: 0;
  }
  .footer ul.footer_menu li:first-child {
    margin-left: 0;
    padding-top: 0;
  }

/* #FlexSlider v2.6
================================================== */

/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav, .flex-direction-nav li {margin: 0; padding: 0; list-style: none;}
ul.slides li {border:none; padding: 0; margin-bottom: 0; position: relative; line-height: 0;}

/* FlexSlider Necessary Styles
*********************************/
html[xmlns] .slides {display: block;}
.flexslider {margin: 0; padding: 0; z-index: 0;}
.flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block; height: auto; margin: 0 auto;}
.flex-pauseplay span {text-transform: capitalize;}
.banner-flexslider { margin-bottom: 2em; }
.banner-flexslider img { width:100%; margin-bottom: 0 }

.homepage_slider .slides > li:first-of-type {
  display: block
}

.homepage_slider .slides img, .article .slides img {
  width: 100%;
  margin-bottom: 0;
}
.slider.slideshow_article_darken--true {
  background-color: #000;
  img {
    opacity: 0.6;
  }
}

.homepage_slider {
  .flex-control-nav li a.flex-active {
    background: rgba(255,255,255,0.7);
    cursor: default;
    @include respond-to('medium'){
      background: rgba(0,0,0,0.7);
    }
  }

  .flex-control-nav {
    position: absolute;
    bottom: 20px;
    right: 5%;
    width: auto;
    @include respond-to('medium'){
      bottom: auto;
      right: auto;
      position: relative;
      margin: 15px auto;
    }
  }

  .flex-control-nav li a {
    width: 10px;
    height: 10px;
    display: block;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    text-indent: -9999px;
    border-radius: 50%;
    border: 0;
    opacity: 1;
    margin-right: 6px;
    z-index: 10;
    @include respond-to('medium'){
      background: rgba(0,0,0,0.3);
      margin-right: 10px;
    }
  }
  .flex-caption {
    .container {
      opacity: 0;
      &.text-animation--none {
        opacity: 1;
      }
    }
  }
}

.flex-caption {
  pointer-events: none;
  .action_button {
    pointer-events: all;
  }
}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
* html .slides {height: 1%;}

/* FlexSlider Default Theme
*********************************/
.flexslider {position: relative; zoom: 1; clear:both; overflow: hidden; }
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}
.flexslider .slides .flex-active-slide{z-index:100 !important;}
.flexslider .slides li {text-align: center; position: relative; z-index:-100 !important;}
.flexslider-container {position:relative;}
.carousel li {margin-right: 5px;border: 0}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides li {
  text-align: center; position: relative;
}

.carousel li {margin-right: 5px;border: 0}

.flex-caption {
  margin: 0;
  width: 100%;
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0,0,0,0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
 }

.slides .headline,
.caption-content .headline {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #95b301;
  font-size: 30px;
  margin-bottom: 0.2em;
  line-height: 43px;
}

.subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  font-size: 14px;
  line-height: 1.5em;
  position: relative;
  color: rgb(51, 51, 51);
  margin-bottom: 0;
}

.subtitle p a {
  pointer-events: all;
}

.flex-caption .action_button {
  width: auto;
  margin-top: 15px;
  padding: 25px 35px;
}

/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a {width: 60px; height: 60px; font-size: 40px; color: rgba(255, 255, 255, 0.56);; margin: -20px 0 0; display: block; z-index:200 !important; position: absolute; top: 50%; cursor: pointer; opacity: 0; -webkit-transition: all .3s ease; transition: all .3s ease; background-color: rgba(0,0,0,0.4); text-align: center; line-height: 60px; }
.flex-direction-nav a span:before { margin-right: 0; }
.flex-direction-nav .flex-next { right: -60px; }
.flex-direction-nav .flex-prev { left: -60px; }
.flex-direction-nav .flex-next span { position: relative; left: 1px; top: 1px; }
.flex-direction-nav .flex-prev span { position: relative; right: 1px; top: 1px; }
.flexslider:hover .flex-next { right: 20px; opacity: 1; }
.flexslider:hover .flex-prev { left: 20px; opacity: 1; }
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover { background-color: rgba(0,0,0,0.6); }
.flex-direction-nav .flex-disabled {opacity: .3 !important; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {position: absolute; bottom: 40px; text-align:right; width: 100%; z-index: 100;}
.flex-control-nav li {margin: 0 0 0 5px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav li a {
/*   width: 40px; */
  height: 3px;
  display: block;
  opacity: 0.3;
  cursor: pointer;
  text-indent: -9999em;
  border: 3px solid #ccc;
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 1px; -moz-border-radius: 1px; -o-border-radius: 1px; border-radius: 50%;
  margin-right: 15px;
}

.flex-control-nav li a:hover {
  border: 3px solid #fff;  
}

.flex-control-thumbs {width: 100%; position: absolute; bottom: -40px; text-align: left;}
.flex-control-thumbs li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}

.flex-control-thumbs {position: static; overflow: hidden;}
.flex-control-thumbs li, .flex-control-thumbs li:first-child {width: 21%; vertical-align: top; margin: 15px 5% 0 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
.product_slider .flex-active-slide a:hover {cursor: -webkit-zoom-in; cursor: -moz-zoom-in;}
.product_slider, .product_slider .flex-viewport { margin-bottom: 1em }


  .flex-control-thumbs li:nth-child(4n) {margin: 15px 0 0; }


.homepage_content {
  padding: 10px 0;
}

.index-sections .image-with-text-overlay-section:last-child {
  margin-bottom: 0;
}

.product, [class*="product"] {
  .featured-link--half .collection_title {
    font-size: 2vw;
    @include respond-to('medium') {
      font-size: inherit;
    }
  }
  .columns.product-image--align-right {
    float: right;
  }
}

/* #Fancybox
================================================== */
/*! fancyBox v2.1.2 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background-color: #ffffff;
  color: #545454;
  text-shadow: none;
  
    border-radius: 4px;
  
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -306px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  background: #fff url('//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/fancybox_loading.gif?v=38408244440897529091624426766') center center no-repeat;
  background-size: 35px 35px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.fancybox-close {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  z-index: 8040;
  font-size: 18px;
  color: #545454;
  opacity: 0.6;
  transition: all .3s ease;
}
.fancybox-close span:before {
  margin-right: 0;
}
.gallery .fancybox-close {
  color: #fff;
  background-color: rgba(0,0,0,0.4);
  top: 0;
  right: 0;
}

.gallery .fancybox-close:hover {
  background-color: rgba(0,0,0,0.6);
}
.fancybox-close:hover {
  opacity: 0.8;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: #fff;
  display: block;
  opacity: 0;
  transition: all .3s ease;
  background-color: rgba(0,0,0,0.4);
  text-align: center;
  line-height: 60px;
}
.fancybox-nav span:before {
  margin-right: 0;
}
.fancybox-prev span {
  left: 20px;
}
.fancybox-next span:before {
  left: 1px;
}
.fancybox-prev span:before {
  right: 1px;
}
.fancybox-prev span:hover, .fancybox-next span:hover {
  background-color: rgba(0,0,0,0.6);
}

.fancybox-next span {
  right: 20px;
}

.fancybox-nav:hover span {
  visibility: visible;
  opacity: 1;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

/* Overlay helper */

.fancybox-lock {
  overflow: hidden;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background-color: rgba(0,0,0,0.6);
  transition: all .1s linear;
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
  display: none;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent; /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, .8);
}

.newsletter_popup .fancybox-inner {
  overflow-y: auto;
}

/* Newsletter */

#password-page-bg{
  .newsletter{
    margin-bottom: 0px;
  }
}

.newsletter form.contact-form {
  @include flexbox();
  @include align-items(stretch);
  @include justify-content(space-between);
  @include flex-wrap(wrap);
  padding-top: 20px;
  width: auto;
  input.action_button {
    width: 25%;
    @media only screen and (max-width: 959px) {
      width: 100%;
      margin: 5px;
    }
    @include respond-to('small'){
      width: 100%;
      margin: 5px 0;
    }
  }
}

.footer .newsletter .contact-form {
  margin: 0 0 15px;
  width: 95%;
  @include respond-to('medium'){
    width: 100%;
  }
}

.sidebar .newsletter .contact-form {
  width: auto;

  input {
    width: 100%;
  }
}
.newsletter_popup .fancybox-skin, .newsletter_popup .fancybox-skin p.headline,
.newsletter_popup .fancybox-skin a, .newsletter_popup .fancybox-skin a:visited {
  color: #545454;
}
.newsletter_popup .fancybox-skin {
  background-color: #ffffff;
}
.newsletter_popup .fancybox-close {
  color: #545454 !important;
}


//Zoom on image
[data-slideshow-animation="zoom"] img {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor: zoom-in;
}

/*
* Layout
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing
    #Media Queries */
/* #Base 1200 Grid
================================================== */

    .container                                  { position: relative; width: 1200px; margin: 0 auto; padding: 0;}

    .column, .columns                           { float: left; display: inline; }

    .row                                        { margin-bottom: 20px; }


    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column                      { width: 55px;  }
    .container .two.columns                     { width: 130px; }
    .container .three.columns                   { width: 205px; }
    .container .four.columns                    { width: 280px; }
    .container .five.columns                    { width: 355px; }
    .container .six.columns                     { width: 430px; }
    .container .seven.columns                   { width: 505px; }
    .container .eight.columns                   { width: 580px; }
    .container .nine.columns                    { width: 655px; }
    .container .ten.columns                     { width: 730px; }
    .container .eleven.columns                  { width: 805px; }
    .container .twelve.columns                  { width: 880px; }
    .container .thirteen.columns                { width: 955px; }
    .container .fourteen.columns                { width: 1030px; }
    .container .fifteen.columns                 { width: 1105px; }
    .container .sixteen.columns                 { width: 1180px; }

    .container .one-third.column                { width: 380px; }
    .container .two-thirds.column               { width: 780px; }
    .container .one-fifth.column                { width: 220px; }


    /* Offsets */
    .container .offset-by-one                   { padding-left: 75px;  }
    .container .offset-by-two                   { padding-left: 150px; }
    .container .offset-by-three                 { padding-left: 225px; }
    .container .offset-by-four                  { padding-left: 300px; }
    .container .offset-by-five                  { padding-left: 375px; }
    .container .offset-by-six                   { padding-left: 450px; }
    .container .offset-by-seven                 { padding-left: 525px; }
    .container .offset-by-eight                 { padding-left: 600px; }
    .container .offset-by-nine                  { padding-left: 675px; }
    .container .offset-by-ten                   { padding-left: 750px; }
    .container .offset-by-eleven                { padding-left: 825px; }
    .container .offset-by-twelve                { padding-left: 900px; }
    .container .offset-by-thirteen              { padding-left: 975px; }
    .container .offset-by-fourteen              { padding-left: 1050px; }
    .container .offset-by-fifteen               { padding-left: 1125px; }

    .container .alternate         { padding-right: 75px;  }

/* #Base 960 Grid
================================================== */

  @media only screen and (min-width: 960px) and (max-width: 1199px) {
    .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 700px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }
    .container .one-fifth.column                { width: 172px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }

    .container .alternate         { padding-right: 60px;  }
}

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 799px) and (max-width: 959px) {
        .container                                  { width: 768px; }
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }

        .container .one.column,
        .container .one.columns                     { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 748px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }
        .container .one-fifth.column                { width: 133px; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 384px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }

        .container .alternate         { padding-right: 48px;  }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 798px) {
        .container { width: 300px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column,
        .container .one-fifth.column  { width: 300px; }

        

        .container .logo.columns       { width: 100px; }
        .container .nav.columns        { width: 130px; margin-left: 10px; }

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }

        .container .alternate         { padding-right: 0;  }
      
        .product .sidebar,
        .product .columns .breadcrumb { display: none; }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 798px) {
        .container { width: 420px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column,
        .container .one-fifth.column { width: 420px; }

        

        .container .logo.columns       { width: 160px; }
        .container .nav.columns        { width: 230px; margin-left: 10px; }
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
/* #Media Queries
================================================== */
  /* Smaller than standard 960 (devices and browsers) */
  @media only screen and (max-width: 959px) {
    input.contact_email,.footer input[type="text"]{
      width: 100% !important;
    }
    h1.collection_title_tags, div.collection_title_tags {
      border-right: 0;
      margin-right: 0;
      padding-right: 0;
    }
    .cloudzoom-lens {
      width:140px;
      height:120px;
    }
  }

/* Tablet Portrait size to standard 960 (devices and browsers) */
  @media only screen and (min-width: $large) and (max-width: 959px) {
    .nav ul li { padding: 0 0 0 10px; }
    input.search_box { width: inherit !important;}
    input[type="submit"].sign_up { padding: 15px; }
    a.button,
    button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    input[type="email"],
    .action_button,
    a.action_button,
    input.action_button[type="submit"],
    input.action_button[type="button"],
    select.single-option-selector {
      width: 100%;
    }
    input[type="submit"].sign_up { margin-left: 0 }
    input.action_button {
      margin-bottom: 1em !important;
    }
  }
/* All Mobile Sizes (devices and browser) */
  @include respond-to('medium') {
    .homepage_slider .flex-direction-nav {
      display: none;
    }
    
    #currencies {
      padding-right: 25px;
    }
    .article_image {
      padding-bottom: 0;
    }
    .sidebar_content {
      border: 0;
      padding: 0;
    }
    
    .instas { width: 50%; }
    .instas:last-child:nth-child(odd) { width: 100%; }
    .subtotal { text-align: left; }
    .logo a { padding-top: 5px; }
    .header_border { padding-bottom: 0; }
    .toggle_menu { top: 0; }
    .collection_menu { display: none; }
    .container div.tag_filter { display: block; }
    #tag_filter, #sort-by {
      margin: 1.5em 0 0.5em 0;
    }
    .blog_filter {
      display: block !important;
      width: 100%;
    }
    .blog h2 { margin-top: 1.5em }
    .section_select { text-align: center; }
    .or {
      text-align: center;
      width: 100%;
      display: inline-block;
      padding-left: 0;
      padding-bottom: 5px;
    }
    h4.toggle {
      cursor: pointer;
    }
    .toggle span {
      display: block;
    }
    .toggle_list {
      display: none;
    }
    select {
      width:100%;
    }
    .search_page_text {
      text-align: left;
    }
    a.button,
    button,
    .action_button,
    a.action_button,
    textarea {
      width: 100%;
    }

    .flexslider a.action_button {
      width: initial;
      padding: 15px 20px;
    }

    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    input[type="email"],
    input.action_button[type="submit"],
    input.action_button[type="button"],
    .sign_up {
      margin-left: 0 !important;
      width: 100%;
    }

    .cart_icons {
      display: none;
    }
    .credits_right {
      text-align: left;
    }
    .container .column.thumbnail, .container .columns.thumbnail {
      margin-top: 1em;
    }
  .title_column {
      float:left;
    }
  .mobile_left {
      text-align:left;
    }
  .container div.mobile_only {
      display:block;
    }
  .quantity_label {
    display: inline;
  }
  .price_total {
    text-align: right;
  }
  .price_total_text {
    display: inline;
    margin-left: 5px;
  }
  .update_subtotal,
  .price_total,
  .remove_column,
  .checkout_table_header {
    display: none;
  }
  .mobile_right {
      text-align: right;
    }
  .quick_shop {
      display: none !important;
    }
  .cart_price {
    display: block;
    margin-bottom: 0;
  }
  table tr th, table tr td {
      padding: 2px;
    }
  input.action_button {
      margin-bottom: 1em !important;
    }
  .multiple_product_images {
      display: none;
    }
  .flex-caption .headline {
    font-size: 1.5em;
    line-height: 1em;
  }
  .flex-caption .subtitle {
    font-size: 1.2em;
    line-height: 1em;
    margin-bottom: 10px;
  }
  .container .blog_content {
    padding-left: 0;
    border: 0;
  }
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
/* Original
  @include respond-to('medium') {
    .mobile_hidden { display: none !important }
    ul.menu li.navicon_button { display:inline-block }
    ul.menu li { padding: 0 0 0 10px; }
    ul.nav_buttons { position: relative; top: 20px }
  }
*/

  @media only screen and (max-width: 978px) {
    .mobile_hidden { display: none !important }
    ul.menu li.navicon_button { display:inline-block }
    ul.menu li { padding: 0 0 0 10px; }
    ul.nav_buttons { position: relative; top: 20px }
    #shopify-section-header .nav { margin-top: -5px !important; position: relative; z-index: 9999; }
    .toggle_menu { top: 0 !important; }
  }



/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  @include respond-to('small') {
    .mobile_hidden { display: none !important }
    ul.menu li.navicon_button { display:inline-block; }
    ul.menu li { padding: 0 }
    ul.nav_buttons { position: relative; top: 20px; text-align: left }
    ul.nav_buttons .button_label { display: none; }
    ul.menu li a, ul.menu li a:hover, ul.menu li a:active { display: inline-block; }
    span.icon-cart:before, span.icon-bag:before, span.icon-menu:before { margin-right: 0; }
    input.search_box { width: 240px !important;}
    .flex-caption .action_button {
      padding: 4px 15px;
      font-size: 12px;
      margin-top: 5px;
    }
    .flex-direction-nav .flex-prev {display: none;}
    .flex-direction-nav .flex-next {display: none;}

    h1, h2, h1.home, h1.blog_title, h3, h4, h5, h6, .title a {
        font-size: 150%;
      }
    h1, h1.home, h1.blog_title, .title a, h2 {
        padding:0;
      }
}
@media
  (min--moz-device-pixel-ratio: 2),
  (-o-min-device-pixel-ratio: 2/1),
  (-webkit-min-device-pixel-ratio: 2),
  (min-device-pixel-ratio: 2) {
    input.search_box {
      background: #fff url(//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/search2x.jpg?v=83174658983691375601624426803) no-repeat 12px 50%;
      background-size: 14px 14px;
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 1024px) {
   html {
      -webkit-text-size-adjust: 100%;
   }
}
@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width: $medium) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}

/* #Icons
================================================== */
@font-face {
  font-family: 'mobilia';
  src: url('//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/mobilia.eot?v=38776982091349260061624426775');
  src: url('//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/mobilia.eot?%23iefix&v=38776982091349260061624426775') format('embedded-opentype'),
       url('//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/mobilia.woff?v=17499794823148516131624426776') format('woff'),
       url('//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/mobilia.ttf?v=131711431096967232031624426775') format('truetype'),
       url('//www.ergonomicsnow.com.au/cdn/shop/t/2/assets/mobilia.svg?v=40272112643397130361624426775') format('svg');
  font-weight: normal;
  font-style: normal;
}
  [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "mobilia";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1.01em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  position: relative;
  top: 1px;
}
.icon-pinterest:before { content: "\e906"; }
.icon-arrow-up:before { content: "\e900"; }
.icon-check:before { content: "\e901"; }
.icon-close:before { content: "\e902"; }
.icon-arrow-down:before { content: "\e903"; }
.icon-arrow-right:before { content: "\e904"; }
.icon-arrow-left:before { content: "\e90a"; }
.icon-minus:before { content: "\e90c"; }
.icon-menu:before { content: "\e910"; }
.icon-search:before { content: "\e911"; }
.icon-cart:before { content: "\e913"; }
.icon-account:before { content: "\e915"; }
.icon-bag:before { content: "\e916"; }
.icon-plus:before { content: "\e917"; }
.icon-email:before { content: "\e905"; }
.icon-phone:before { content: "\e90e"; }
.icon-youtube:before { content: "\e914"; }
.icon-vimeo:before { content: "\e912"; }
.icon-rss:before { content: "\e908"; }
.icon-houzz:before { content: "\e909"; }
.icon-snapchat:before { content: "\e90b"; }
.icon-instagram:before { content: "\e90f"; }
.icon-facebook:before { content: "\ea90"; }
.icon-twitter:before { content: "\ea96"; }
.icon-tumblr:before { content: "\eab9"; }
.icon-linkedin:before { content: "\eaca"; }


.icon-twitter-share:before { content: "\ea96"; margin-right: 0.6em; color: #09AEEC; }
.icon-twitter-share:hover { background-color: #09AEEC; border-color: #09AEEC;color: #fff; }
.icon-twitter-share:hover:before { color: #fff; }
.icon-facebook-share:before { content: "\ea90"; margin-right: 0.6em; color: #49659D; }
.icon-facebook-share:hover { background-color: #49659D; border-color: #49659D; color: #fff; }
.icon-facebook-share:hover:before { color: #fff; }
.icon-pinterest-share:before { content: "\e906"; margin-right: 0.6em; color: #CB1F2A; }
.icon-pinterest-share:hover { background-color: #CB1F2A; border-color: #CB1F2A; color: #fff; }
.icon-pinterest-share:hover:before { color: #fff; }
.icon-email-share:before { content: "\e905"; margin-right: 0.6em; color: #888; }
.icon-email-share:hover { background-color: #888; border-color: #888; color: #fff; }
.icon-email-share:hover:before { color: #fff; }

.social_icons a {
  font-size: 15px;
  color: #fff;
  background-color: #b3c945;
  border: 1px solid  #b3c945;
  border-radius: 50%;
  padding: 8px;
  margin: 0 8px 5px 0;
  line-height: 1;
  transition: all .1s linear;
  width: 17px;
display: inline-block;
height: 17px;
}
.social_icons a:hover {
  color: #fff;
  background-color: #0a0a0a;
}
.social_icons a span:before {
  margin-right: 0;
}

.top_menu .social_icons a,
.top_menu .social_icons a:visited,
.top_menu .social_icons a:active {
  font-size: 15px;
  padding: 6px;
  color: #fff;
  margin: 0 0 0 5px;
  opacity: 0.8;
}
.top_menu .social_icons a:hover {
  color: #fff;
  opacity: 1;
}
.top_menu .social_icons li {
  padding-left: 0;
}

.remove,
.remove:visited { color: #545454; }
.remove:hover,
.remove:active { color: #b3c945; }

.icon-cart,
.icon-bag, .icon-menu {
  font-size: 16px;
}

.menu .icon-arrow-down,
.menu .icon-arrow-right {
  font-size: 10px;
  margin-left: 5px;
}
.menu .icon-arrow-down,
.menu .icon-arrow-right {
  position: relative;
  top: -2px;
}


.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{animation-duration:.75s}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-name:bounceIn}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-20px,0)}to{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-20px,0,0)}to{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(20px,0,0)}to{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,20px,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:zoomOut}


.article #shopify-section-article-template h6 {
  font-size: 10px;
  color: #9c9c9c;
  margin-top: -25px;
}

.article #shopify-section-article-template .sidebar,
.blog #shopify-section-blog-template .sidebar {
  position: sticky;
  top: 25px;
}

.article #shopify-section-article-template .slider .flex-active-slide img {
  height: 450px;
  object-fit: cover;
  object-position: center;
}

.footer input[type="submit"]:hover, .social_icons a:hover {
  color: #fff !important;
  background-color: #9eb13f !important;
  border: 1px solid #93b13f !important;
}

.product table, .product table tr td, .product table tr:hover td {
  border: 0 !important;
  background: transparent !important;
  text-shadow: none !important;
  margin-bottom: 0 !important;
}

.product table tr td {
  padding: 0 !important;
  line-height: 20px !important;
}

.product .single-option-selector {
  margin-bottom: 0 !important;
}

.product .purchase-details__buttons {
  margin-top: 0 !important;
}

.product h1.product_name {
  margin-bottom: 0 !important;
  font-size: 24px !important;
}

.product .product-header-group {
  margin-bottom: 1em;
}

.product .product-header-group .vendor {
  margin-right: 20px;
}

@media only screen and (max-width: 480px) {
  .index .feature-details .title a, .index .feature-details h2.title a {
    font-size: 20px !important;
  }
  .index .feature-section .feature-overlay .description p {
    line-height: 18px !important;
  }
  .index .feature-section {
    margin-bottom: 5px !important;
  }
  div.homepage_content {
    padding: 10px 0 !important;
  }
  #shopify-section-1481508702376 a.action_button {
    display: none;
  }
  #shopify-section-1481508702376 .headline {
    font-size: 1.3em;
  }
  #shopify-section-1481508702376 .subtitle p {
    font-size: 14px;
    line-height: 16px;
  }
  #shopify-section-1481508702376 .flexslider .slides img {
    height: 200px !important;
    object-fit: cover;
  }
  .testimonial-section .featured-link--half h2 {
    line-height: 26px;
  }
  #shopify-section-1481511153564 h5.sub_title {
    padding-top: 10px;
  }
  .container .six.columns {
    width:100% !important;
  }
}

@media only screen and (min-width: 979px) {
  .mobile-cart {
    display: none !important;
  }
  .mobile_phone_bar {
    display: none !important;
  }
}

@media only screen and (max-width: 798px) {
  #shopify-section-header .nav {
    margin-top: -5px !important;
    position: relative;
    z-index: 9999;
  }
  .header .header-logo.logo a {
    top: 0px !important;
  }
  .cart-items-list .two.columns, .cart-items-list .four.columns {
        width: 30%;
  }
}

@media only screen and (max-width: 959px) { 
  ul.top_menu form.search {
    display: none !important;
  }
  .nav {
    margin-top: -83px !important;
  }
  .header-logo.logo a {
    top: 10px !important;
  }
  .header .tmenu_wrapper .tmenu_app .tmenu_nav .tmenu_item--root>.tmenu_item_link {
    padding-right: 5px !important;
  }
  .checkout_table_header {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  ul.top_menu form.search {
    width: 150px;
  }
  .nav {
    /*
    float: right;
    margin-top: -75px; */
  }
  .header-logo.logo a {
    max-width: 115px !important;
    position: relative;
    top: /*10px;*/ 0;
  }
}

#shopify-section-1481508702376 a.action_button {
  background-color: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}

#shopify-section-1481508702376 a.action_button:hover {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #000 !important;  
}

.logo-bar-section {
  margin-top: 40px !important;
}

.logo-bar-section .feature_divider {
  margin: 25px auto -20px auto !important;
}

a.mobile-number {
  font-size: 15px !important;
  font-weight: bold !important;
}

.mobile_phone_bar {
  text-align: center;
  background-color: #bcc945;
  /* margin-top: -5px; */
}

.mobile_phone_bar a {
  color: #fff !important;
  font-size: 13px !important;
  font-family: Cachet, sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}

body[class*="page-pagefly"] > .container {
  width: 100%;
}

body[class*="page-pagefly"] #shopify-section-header {
	padding-bottom: 0 !important;
}

body[class*="page-pagefly"] .iaugJP {
  padding-bottom: 80px !important;
}

body[class*="page-pagefly"] .footer {
  margin-top: 0 !important;
}

body[class*="page-pagefly"] .header_border {
  padding-bottom: 10px !important;
}

@media only screen and (min-width: 961px) and (max-width: 1199px) {
	body[class*="page-pagefly"] ul.top_menu {
		padding-top: 20px !important;
	}
}

@media only screen and (max-width: 798px) {
	body[class*="page-pagefly"] .header_border {
		padding-bottom: 19px !important;
	}
}

.tmenu_nav .tmenu_item, .tmenu_nav .tmenu_item .tmenu_item_link {
  font-family: Cachet, sans-serif !important;
  font-size: 15px !important;
}

.tmenu_wrapper {
  width: 965px !important;
}

.tmenu_wrapper .tmenu_app .tmenu_nav .tmenu_item--root > .tmenu_item_link {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.tmenu_wrapper .tmenu_app .tmenu_nav .tmenu_item--root:last-child .tmenu_item_link {
  padding-right:0 !important;
}

.tmenu_wrapper .tmenu_navbar .tmenu_item--root > .tmenu_item_link {
  height: 32px !important;
}

.tmenu_wrapper .tmenu_app .tmenu_nav .tmenu_item--root:nth-child(5) .tmenu_item_link {
  padding-right: 10px !important;
}

#shopify-section-header .tmenu_wrapper .tmenu-watermark {
  visibility: hidden !important;
  display: none !important;
}

.tmenu_item--root > .tmenu_submenu {
  margin-top: 9px !important;
  border-top: 3px solid #B3C945 !important;
}

.tmenu_nav .tmenu_submenu_type_mega {
  padding: 15px 30px !important;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 5px 20px 0 #0000001f !important;
}

body.page-pagefly-3548ecd3 .container .sc-gFaPwZ.iaugJP {
  padding-bottom: 0 !important;
}

body.page-pagefly-3548ecd3 .iWWFvE {
  margin: 0 0 -3px !important;
}

#shopify-section-1479351462524 .subtitle p {
  line-height: 24px !important;
}

.footer .credits {
  text-align: center;
}

nav.breadcrumb-inner {
  padding-top: 10px;
  font-size: 12px;
}


@media only screen and (max-width: 1199px) and (min-width: 979px) {
  #shopify-section-header .header.homepage > .container {
    padding: 5px 0 0 0 !important;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 800px) {
  .three.columns.logo.header-logo.alpha {
    position: relative;
    top: /*-15px;*/ 20px;
    }
}

@media only screen and (max-width: 1200px) {
  .slides .headline, .caption-content .headline {
    font-size: 26px !important;
    line-height: 30px !important;
    font-weight: 600 !important;
  }
  
  #shopify-section-1479351462524 .subtitle p {
    line-height: 20px !important;
  }
}

@media only screen and (max-width: 960px) and (min-width: 799px) {  
  .homepage_slider .container .seven.columns {
    width: 400px !important;
  }
  
  .homepage_slider .container .offset-by-eight {
    padding-left: 335px !important;
  }
}

@media only screen and (max-width: 798px) {
  .homepage_slider .container .seven.columns {
    text-align: center !important;
  }
  
    .header > .container, .header > .container .sixteen {
/*         width: calc(100% - 15px);
        padding: 0 10px; */
    }
}

@media only screen and (max-width: 768px) {
  .slides .headline, .caption-content .headline {
    font-size: 20px !important;
  }
  
  #shopify-section-1479351462524 .subtitle p {
    line-height: 18px !important;
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 600px) {  
  #shopify-section-1479351462524 .subtitle p {
    display: none !important;
  }
}

.bold-bundles-widget-item-separator {
  background-color: #d8d8d8 !important;
}

/*Added code by Raecziel S. Shopify Guru | Merch requested | 6.17.29*/
#estimated-shipping, .excluding_tax

{
 font-style: italic;
}

.mobile_menu span {
    z-index: 99;
    position: relative;
    top:0px;
}

ul.mobile_menu.toggle_menu {
    width: 261px !important;
}

[class*="page-pagefly"] .sc-sdtwF {
  box-shadow: none !important;
}
.thumbnail .quick_shop{max-width:118px}
.th_pb_title h4{border: none;}
.th_pb_list_layout_1  ul.th_pb_list_ul li .th_pb_option_label_cls{font-size:13px !important;}



/*Custom CsS*/
.th_pb_addtocart_section .th_pb_add_to_cart span{font-family: Cachet, sans-serif;font-weight: bold;font-size: 15px;}
.th_pb_addtocart_section .th_pb_add_to_cart{border-radius: 4px;}


.tmenu_nav > li > .tmenu_item_link {
    color: #5c5c5c;
}

.tmenu_submenu .tmenu_item_display_header a, 
.tmenu_submenu > .tmenu_item_level_2.tmenu_item_display_header > a,
.tmenu_submenu > .tmenu_item_level_3.tmenu_item_display_header > a  {
    color: #8b8b8b !important;
}

.tmenu_submenu .tmenu_item_level_2 .tmenu_item_link,
.tmenu_submenu .tmenu_item_level_4 .tmenu_item_link {
    color: #6b6b6b !important;
}

@media (min-width: 1201px) {
    .header .container {
        width: calc(100% - 40px);
        padding: 20px 20px 0;
    }

    .header .container .sixteen {
        width: calc(100% - 20px);
    }

    .tmenu--fullwidth.tmenu--wrap {
        float: right;
    }
}






ul.top_menu {
    margin: 0 !important;
    padding: 0 !important;
    order: 2;
    flex: 0 0 auto;
}

.mobile_menu_container {
    display: flex;
}

.tmenu--fullwidth.tmenu--wrap {
    flex: 1 1 auto;
    float: left;
    text-align: left;
}

.tmenu_alignment_end .tmenu_nav {
    justify-content: flex-start !important;
    -webkit-box-pack: start !important;
}

.three.logo.header-logo {
    margin: 0 !important;
}

.thirdteen.nav.omega {
    padding: 20px 0 !important;
}

ul.top_menu a span::before {
    font-size: 16px !important;
}

ul.top_menu a span.icon-bag::before {
    font-size: 18px !important;
}

ul.mobile_menu.toggle_menu {
    width: 100% !important;
    margin-bottom: 0;
}


@media (max-width: 1425px) {
    .three.columns.logo.header-logo.alpha {
        padding-top: 10px;
    }
}

@media (max-width: 1199px) {
    .three.columns.logo.header-logo.alpha {
        padding-top: 0px;
        top: 17px;
    }
}

@media (max-width: 978px) {
    .thirdteen.nav.omega {
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .three.columns.logo.header-logo.alpha {
        top: 0 !important;
    }

    .header > .container.content {
        padding-top: 10px;
    }
}

@media (max-width: 959px) {
    .three.columns.logo.header-logo.alpha {
        top: -7px !important;
    }
}

.columns.eight.offset-by-one.align_left {
    background-color: rgba(255,255,255,0.8);
    border-radius: 0px;
    padding: 20px;
    box-sizing: border-box;
/*     width: 100%; */
    margin: 0 auto;
  border-radius: 0px 90px;
}

ul.top_menu.search_nav {
    width: 20%;
}
body.page-sitemap .col-md-6 {
    width: 50%;
    clear: none;
    max-width: 50%;
    float: left;
}
div#table-company {
    margin-left: 25%;
    width: 605px;
}
.bolg-detail {
    height: 180px;
    overflow: hidden;
}

table#table-company {
    border: 0;
    background-color: #fff !important;
}

table#table-company td {
    border: 0;
  	background: white !important;
}
tbody.tbody td {
    padding: 0px !important;
}
.grid.weight-main {
    display: flex;
    width: 100%;
}

.grid__item.weight-heading {
/*     margin-right: 10%; */
    width: 25%;
}
.link-for-wieght {
    width: 100%;
}

/* .twelve.columns.columns {
    margin-left: 2%;
}
 */
.grid__item.weight-heading ul.side-menu {
    margin-left: 0px;
}

.side-menu li {
    margin: 2px;
}

.flexslider .flex-next, .flexslider .flex-prev {
    background-color: rgba(0, 0, 0, 0.05);
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

ul.side-menu li {
    line-height: 18px;
    padding-bottom: 5px;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.top-menu li a {
    display: block;
    padding: 0px 0px 0px 10px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.top-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
      list-style-type: none;
      margin-right: 55px;
}

.top-menu li {
    padding: 0;
}

.login-content .left {
    width: 50%;
}

.login-content .right {
    width: 40%;
}

@media only screen and (max-width: 767px) {
  
.logo-bar__item{
  max-width: 105px;
  padding: 15px;
  margin-top: 15px;
  margin-right: 5px;
  margin-left: 5px;
}
div#shopify-section-1481508727922 figure {display: block;}
div#shopify-section-1479351462524 .container {width: 94%;}
.twelve.columns.columns {margin-left: 0;}
  
  .top-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin-right: 0;
}
.top-menu li {
    text-align: center;
}
  
.top-menu li a {
    padding: 0px 0px 0px 6px;
}
  
.login-content .right {
    width: 100%;
    margin-top: 20px;
}
  
.login-content .left {
    width: 100%;
}
  
}


@media screen and (max-width: 360px) {
.grid__item.weight-heading h6 {
    font-size: 12px;
}
  
.grid__item.weight-heading {
   font-size: 12px;
}
  
.grid__item.weight-heading h4 {
    font-size: 12px;
}
  
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
  
.feature-inner img.lazyload--fade-in.full-width-image.lazyloaded {
    height: 200px;
}
  
.lazyload--fade-in.lazyloaded {
    opacity: 1;
    max-width: 100%;
    height: auto;
}
  
}
@media screen and (max-width: 320px) {
.container .logo.columns {
    width: 95px;
}
.feature-inner img.lazyload--fade-in.full-width-image.lazyloaded {
    height: 200px;
}
}

.four.columns {
    padding: 7px;
    text-align: left;
}

.container .six.columns {
    width: 389px;
    margin-left: 5px;
}

.three.columns {
    padding: 15px;
}

.image__container {
    max-width: 100% !important;
}

div#shopify-section-side-menu ul.side-menu {
    margin-left: 0px;
    text-align: left;
}

.spf-product__info .h4.spf-product-card__title {
    text-align: center;
}

.h4.spf-product-card__title a {
    color: #b3c945 !important;
    font-family: Helvetica, sans-serif !important;
}

ul.blog_list li ul.active {
    display: block;    
    font-weight: bold;
}
.thumnail_flexxxx {
  visibility: visible !important;
}

#footer{
    background-color: #687065;
    color: white;
}
div#footer h6 { 
  color: #b3c945;
}
div#footer ul li a{
  color: white;
}
#js-featured-promotions {
  display: flex;
  flex-wrap: wrap;
}

#js-featured-promotions .feature-section {
  width: 31%;
}

#js-featured-promotions .feature-section .description p {
    text-align: center;
}

@media screen and (max-width: 767px) {
    #js-featured-promotions .feature-section {
      width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    #js-featured-promotions .feature-section {
      width: 100%;
    }
}