/* ==============================
global.css
---------------
Created By: Bone Digital Pty Ltd
Web: http://bone.digital/
Email: hello@bone.digital
Copyright (c) 2017 Bone Digital Pty Ltd
============================== */
/* Includes
------------------------------ */
/* ==============================
global.css
---------------
Created By: Bone Digital Pty Ltd
Web: http://bone.digital/
Email: hello@bone.digital
Copyright (c) 2017 Bone Digital Pty Ltd
============================== */
/* 
    -----
    Box Sizing
    -----
    @include box-sizing(border-box); 

    -----
    Flexbox
    -----
    @include flexbox
    @include inline-flex
    
    -----
    Flex Direction
    -----
    @include flex-direction($value: row)
    Values: row | row-reverse | column | column-reverse
    Default: row
        
    -----
    Flex Wrap
    -----
    @include flex-wrap($value: nowrap)
    Values: nowrap | wrap | wrap-reverse
    Default: nowrap
    
    -----
    Flex Flow
    -----
    @include flex-flow($values: (row nowrap))
    Values: <flex-direction> | <flex-wrap> 
    Default: row nowrap
    
    -----
    Order
    -----
    @include order($int: 0)
    Default: 0
    
    -----
    Flex Grow
    -----
    @include flex-grow($int: 0)
    Default: 0
    
    -----
    Flex Shrink
    -----
    @include flex-shrink($int: 1)
    Default: 1
    
    -----
    Flex Basis
    -----
    @include flex-basis($value: auto)
    Values: Like "width" 
    Default: auto
    
    -----
    Justify Content
    -----
    @include justify-content($value: flex-start)
    Values: flex-start | flex-end | center | space-between | space-around
    Default: flex-start
    
    -----
    Align Items
    -----
    @include align-items($value: stretch)
    Values: flex-start | flex-end | center | baseline | stretch
    Default: stretch
    
    -----
    Align Self
    -----
    @include align-self($value: auto)
    Values: auto | flex-start | flex-end | center | baseline | stretch
    Default: auto
    
    -----
    Align Content
    -----
    @include align-content($value: stretch)
    Values: flex-start | flex-end | center | space-between | space-around | stretch
    Default: stretch
*/
.gform_wrapper form .gform_body > .gform_fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .gform_wrapper form .gform_body > .gform_fields > li {
    width: 100%;
    margin-bottom: 15px; }
    .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center; }
      .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div .ginput_container {
        width: 31%;
        position: relative; }
        .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div .ginput_container:after {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          right: 20px;
          content: '\f107';
          font-family: "FontAwesome";
          pointer-events: none; }
    .gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      margin-bottom: 5px; }
      .gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li input[type="radio"] {
        margin: 0px;
        -webkit-flex-shrink: 0;
        -moz-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 4px; }
    .gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      margin-bottom: 5px; }
      .gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li input[type="checkbox"] {
        margin: 0px;
        -webkit-flex-shrink: 0;
        -moz-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 4px; }
    .gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
      display: block;
      margin-bottom: 3px; }
    .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select {
      position: relative;
      width: 100%; }
      .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select:after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        right: 20px;
        content: '\f107';
        font-family: "FontAwesome";
        pointer-events: none; }
      .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select select {
        -moz-appearance: none;
        -webkit-appearance: none;
        -ms-progress-appearance: none; }
    .gform_wrapper form .gform_body > .gform_fields > li.hide-label > .gfield_label {
      display: none; }
    .gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
    .gform_wrapper form .gform_body > .gform_fields > li select,
    .gform_wrapper form .gform_body > .gform_fields > li textarea {
      width: 100%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      -moz-appearance: none;
      -webkit-appearance: none;
      -ms-progress-appearance: none; }
      .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus,
      .gform_wrapper form .gform_body > .gform_fields > li select:focus,
      .gform_wrapper form .gform_body > .gform_fields > li textarea:focus {
        outline: 0px; }
    .gform_wrapper form .gform_body > .gform_fields > li.third {
      width: 31%; }
    .gform_wrapper form .gform_body > .gform_fields > li.half {
      width: 48%; }
    .gform_wrapper form .gform_body > .gform_fields > li.two-thirds {
      width: 65.5%; }
.gform_wrapper form .gform_footer .gform_button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  border-radius: 0px;
  border: 0px; }
  .gform_wrapper form .gform_footer .gform_button:focus {
    outline: 0px; }

body img.gform_ajax_spinner {
  display: none !important; }

/* ==============================
_base.css
---------------
Created By: Bone Digital Pty Ltd
Web: http://bone.digital/
Email: hello@bone.digital
Copyright (c) 2017 Bone Digital Pty Ltd
============================== */
/* Text
------------------------------ */
p {
  margin-top: 0px;
  margin-bottom: 15px; }

bold,
strong {
  font-weight: normal; }

/* Links and Buttons
------------------------------ */
a {
  text-decoration: none;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* Layout
------------------------------ */
body {
  margin: 0;
  padding: 0; }

.wrapper {
  width: 100%; }

.inner-wrapper {
  max-width: 1200px;
  margin: 0px auto;
  width: 100%; }

nav ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  nav ul li {
    display: block; }
    nav ul li a {
      text-decoration: none; }

/* Text
------------------------------ */
/* Layout
------------------------------ */
.invisible-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; }

.woocommerce-variation-availability p {
  margin-bottom: 0px; }

body.page-template-magazine > section .listing .item.featured-magazine-item {
  display: none; }
  body.page-template-magazine > section .listing .item.featured-magazine-item.active {
    display: block; }

body.single-magazine > section .hero_post .gradient, body.page-template-magazine > section .hero_post .gradient, body.single-jobs > section .hero_post .gradient, body.page-template-jobs > section .hero_post .gradient {
  pointer-events: none; }

body.single-articles > section > .wrapper .right > .article > .wrapper, body.single-jobs > section > .wrapper .right > .article > .wrapper, body.single-ourstory > section > .wrapper .right > .article > .wrapper, body.single-sustainability > section > .wrapper .right > .article > .wrapper {
  padding: 41px 35px 0 29px;
  margin: 0px; }

.spaces-template-default .filters-panel .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

body.single-spaces .filters-panel .wrapper, body.page-template-spaces .filters-panel .wrapper {
  padding-top: 0px !important; }

body.page-template-materials .filters-panel .wrapper {
  padding: 0px; }

body.page-template-materials .scroll-wrapper {
  padding: 0px; }

body.single-magazine .filters-panel .wrapper .left .mobile-filter-toggle, body.page-template-magazine .filters-panel .wrapper .left .mobile-filter-toggle, body.single-articles .filters-panel .wrapper .left .mobile-filter-toggle, body.page-template-jobs .filters-panel .wrapper .left .mobile-filter-toggle, body.single-jobs .filters-panel .wrapper .left .mobile-filter-toggle {
  position: static; }

body.single-ourstory .filters-panel, body.single-sustainability .filters-panel {
  padding-bottom: 0px; }

body.single-magazine .filters-panel, body.page-template-magazine .filters-panel, body.single-articles .filters-panel, body.page-template-jobs .filters-panel, body.single-jobs .filters-panel {
  padding-bottom: 0px; }

body.single-magazine .filters-panel .wrapper, body.page-template-magazine .filters-panel .wrapper, body.single-articles .filters-panel .wrapper, body.page-template-jobs .filters-panel .wrapper, body.single-jobs .filters-panel .wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

body.single-ourstory .filters-panel .wrapper, body.single-sustainability .filters-panel .wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

body.page-template-materials .filters-panel .wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

body.page-template-materials .filters-panel .wrapper .left .select-wrapper {
  transform: translateY(0px);
  -webkit-transform: translateY(0px); }

body.single-product > section .inner-page .title-container {
  padding-left: 20vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

/*

body.home > .header
{
      opacity: 1;
      background-color: transparent;
}

body.home > section .fixed-elements .logo-top
{
      transform: translateY(0px)!important;
      -webkit-transform: translateY(0px)!important;
}

.home
{
      .header.desktop .top.container .functions a .counter
      {
            color: #fff;
      }

      .header.desktop .top.container .functions a.search .icon
      {
            background-image: url(../images/icons/search-home.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center; 
      }

      .header.desktop .top.container .functions a.account.cartcounter .icon
      {
            background-image: url(../images/icons/cart-home.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center; 
      }

      .header.desktop .top.container .left .hamburger > .icon
      {
            background-image: url(../images/icons/hamburger-home.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
      }

      .header.desktop .top.container .left .hamburger .text
      {
            display: none;
      }
}
*/
.gift-wrapping-wrapper {
  margin-top: -14px; }

.quote-form-submit-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
  .quote-form-submit-wrapper .form_submit {
    width: 48%; }
    .quote-form-submit-wrapper .form_submit .button {
      margin-top: 0px !important; }
  .quote-form-submit-wrapper .button.back {
    width: 48%;
    margin-top: 0px !important; }

body.product-type-enquire .accordion .section[data-type="options"] .content .selected-material {
  position: relative;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  body.product-type-enquire .accordion .section[data-type="options"] .content .selected-material:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: url(../images/loading.svg) no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 50px;
    content: '';
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  body.product-type-enquire .accordion .section[data-type="options"] .content .selected-material.loading {
    opacity: .5; }
    body.product-type-enquire .accordion .section[data-type="options"] .content .selected-material.loading:after {
      opacity: 1; }

body.product-type-enquire .quote_request form .form_field.full {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%; }

body.product-type-enquire .quote_request form .form_field.half {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%; }

.archive-listing-mobile,.archive-listing-tablet {
  display: none; }

.archive-listing-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding: 0px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
.archive-listing-desktop:after {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background: url(../images/loading.svg) no-repeat center center;
  background-size: contain;
  width: 50px;
  height: 50px;
  content: '';
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.archive-listing-desktop .product-archive-column {
  width: 25%; 
  margin-right: 5px; }
.archive-listing-desktop .product-archive-column:nth-child(4) {
  margin-right: 0px !important; }
.loading .archive-listing-desktop:after {
  opacity: 1; }

.scroll-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 14px;
  color: #4A5A5C;
  padding: 10px 0px; }
  .scroll-wrapper a {
    margin-right: 10px;
    opacity: .5; }
    .scroll-wrapper a.active {
      opacity: 1; }

.archive-listing img.lazy-item-img {
  display: none; }
.archive-listing .item {
  width: 100%;
  position: relative;
  margin-bottom: 0px;
  display: block;
  overflow: hidden;
  height: 15vw;
  opacity: 1;
  margin-bottom: 5px;
  background: #fff;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: .3s;
  -webkit-transition-delay: .3s; }
  .archive-listing .item.layout-double_height {
    height: calc((15vw * 2) + 5px); }
  .archive-listing .item.loading {
    opacity: 0; }
  .archive-listing .item img {
    width: 100%;
    height: auto; }
  .archive-listing .item img.h100 {
    width: auto !important;
    height: 100% !important; }
  .archive-listing .item img.bottom {
    position: absolute;
    bottom: 0;
  }
  .archive-listing .item img.left {
    position: absolute;
    left: 0;
  }
  .archive-listing .item img.right {
    position: absolute;
    right: 0;
  }
  .archive-listing .item img.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: auto;
  }
  .archive-listing .item:hover .info {
    opacity: 1;
    z-index: 4;
    pointer-events: auto;
    transform: translateY(0px);
    -webkit-transform: translateY(0px); }
  .archive-listing .item img.image-sizer {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .archive-listing .item a.link-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    line-height: 0px; }
  .archive-listing .item .featured_image {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: background 0.45s ease; }
  .archive-listing .item .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    padding: 13px 0 12px;
    box-sizing: border-box;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    z-index: 2;
    pointer-events: none; }
    .archive-listing .item .info .line {
      display: flex;
      align-self: stretch;
      height: auto;
      width: 3px;
      background-color: #4A5A5C;
      margin: 5px 9px 1px;
      opacity: 0.5; }
    .archive-listing .item .info .description, .archive-listing .item .info .price, .archive-listing .item .info .text {
      /*font-size: 11px;*/font-size: 16px;
      line-height: 13px;
      letter-spacing: 0.03em;
      opacity: 1;
      color: #000; }
    .archive-listing .item .info .detail {
      display: flex;
      flex-direction: column; }
      .archive-listing .item .info .detail h3 {
        margin-bottom: 8px; }
    .archive-listing .item .info .buy-now-button {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      z-index: 3;
      cursor: pointer;
      pointer-events: all; }
      .archive-listing .item .info .buy-now-button .icon {
        background: url("../images/icons/cart.svg") no-repeat;
        width: 21px;
        height: 18px;
        background-size: contain;
        margin-left: 9px;
        opacity: 0.5; }

#materials-slider {
  background-color: #E5ECE9;
  border: 0;
  height: 3px; }
  #materials-slider .ui-slider-range-min {
    background-color: #4A5A5C !important; }
  #materials-slider .ui-slider-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #4A5A5C !important;
    border: 0;
    margin-left: -3px;
    top: -7px;
    cursor: pointer;
    cursor: grab; }
    #materials-slider .ui-slider-handle .colour-preview {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      width: 154px;
      height: 150px;
      overflow: visible;
      display: none; }
      #materials-slider .ui-slider-handle .colour-preview .content {
        width: 154px;
        height: 150px;
        background-color: white;
        box-shadow: 0px 2px 4px 0px rgba(74, 90, 92, 0.05), 0px 14px 65px 0px rgba(74, 90, 92, 0.2);
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        overflow: hidden; }
        #materials-slider .ui-slider-handle .colour-preview .content .image {
          flex: 1;
          background-color: white;
          z-index: 1;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center center;
          transition: background-image 0.5s ease; }
        #materials-slider .ui-slider-handle .colour-preview .content .info {
          flex: 0 1 40px;
          box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
          z-index: 2;
          display: flex;
          justify-content: center;
          align-items: center; }
          #materials-slider .ui-slider-handle .colour-preview .content .info .label {
            font-family: 'GT-Walsheim-Light', Arial;
            -webkit-font-smoothing: antialiased;
            font-size: 14px;
            color: #4A5A5C;
            letter-spacing: 0.1px; }
      #materials-slider .ui-slider-handle .colour-preview:after {
        top: 158px;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(136, 183, 213, 0);
        border-top-color: white;
        border-width: 9px;
        margin-left: -9px;
        overflow: visible; }
      #materials-slider .ui-slider-handle .colour-preview.right {
        left: auto;
        right: -16px;
        transform: none; }
        #materials-slider .ui-slider-handle .colour-preview.right:after {
          left: auto;
          right: 16px; }
      #materials-slider .ui-slider-handle .colour-preview.left {
        right: auto;
        left: -16px;
        transform: none; }
        #materials-slider .ui-slider-handle .colour-preview.left:after {
          right: auto;
          left: 24px; }
    #materials-slider .ui-slider-handle:focus {
      outline: 0; }

.button-load-more-products {
  display: none; }

@media screen and (max-width: 1500px) {
  .archive-listing .item.layout-double_height {
    height: calc((15vw * 2) + 5px); }
}
@media (max-height: 890px) and (min-height: 620px) {
  body.product-type-enquire .overview-panel .content > .title,
  body.single-product > section .overview-panel .wrapper > .content {
    display: block;
    margin-top: 20px; }
    body.product-type-enquire .overview-panel .content > .title h1,
    body.single-product > section .overview-panel .wrapper > .content h1 {
      font-size: 30px; }

  body.product-type-enquire .accordion .section[data-type="details"] .content .specs .intro {
    padding-bottom: 14px; }

  .enquiry-selection {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }

  body.product-type-enquire .enquiry-selection .request-a-quotation {
    width: 48%;
    margin-top: 10px;
    margin-bottom: 0px; }

  body.product-type-enquire .enquiry-selection .add-to-wishlist {
    width: 48%;
    margin-top: 10px;
    margin-bottom: 0px; }

  body.product-type-enquire .enquiry-selection .selection-summary {
    width: 100%; }

  body.product-type-enquire .accordion .section[data-type="details"] .content .specs .spec {
    margin-bottom: 0px; }

  body.product-type-enquire .overview-panel .wrapper > .content .accordion[data-state='active'] {
    margin-top: 10px; }

  body.single-product > section .overview-panel .wrapper > .content .title .line {
    margin-bottom: 8px; } }
@media screen and (max-width: 767px) {
  .enquiry-selection {
    display: block; }

  body.product-type-enquire .enquiry-selection .request-a-quotation {
    width: 100%; }

  body.product-type-enquire .enquiry-selection .add-to-wishlist {
    width: 100%; }

  body.product-type-enquire > section #fsvs-body .inner-page#enquire .image {
    height: 71vw; }

  body.single-product > section .inner-page .title-container {
    padding-left: 0px; }

  body.page-template-materials .filters-panel .wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }

  body.page-template-materials .filters-panel .wrapper .right {
    margin-bottom: 15px; }

  body.page-template-materials .filters-panel .wrapper .left .select-wrapper {
    min-width: auto; }

  /*
  
        body.home .container
        {
              padding: 0px 28px;
        }
  
        body.home .header.desktop .top.container .left .hamburger > .icon
        {
              opacity: 1;
        }
  */
  .archive-listing-desktop,.archive-listing-tablet {
    display: none; }

  .archive-listing-mobile {
    display: block;
    padding: 0px 15px 15px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }

  .archive-listing .item {
    height: 58vw;
    margin-bottom: 30px;
    background: none; }

  .archive-listing .item.layout-double_height {
    height: calc((58vw * 2) + 5px); }

  .scroll-wrapper {
    font-size: 11px; }

  .archive-listing .item .info {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    padding: 5px 0 10px 0;
    background-color: #fff;
    position: relative; }

  .archive-listing .item .info .buy-now-button {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%); }

  .archive-listing .item .info .detail h3 {
    font-size: 16px; } 
}
@media (min-width:768px) and (max-width:1199px) {
  .archive-listing-desktop,.archive-listing-mobile {
    display: none; }
  .archive-listing-tablet .product-archive-column {
    width: 50%; 
    margin-right: 5px; }
  .archive-listing-tablet .product-archive-column:nth-child(2) {
    margin-right: 0px !important; }
  .archive-listing-tablet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    padding: 0px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
  .archive-listing .item {
    width: 100%;
    position: relative;
    margin-bottom: 0px;
    display: block;
    overflow: hidden;
    height: 31vw;
    opacity: 1;
    margin-bottom: 5px;
    background: #c3c3c3;
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: .3s;
    -webkit-transition-delay: .3s; }
  .archive-listing .item.layout-double_height {
    height: calc((31vw * 2) + 5px); }
  /*.archive-listing-desktop .product-archive-column {
    width: 50%; 
    margin-right: 5px; }
  .archive-listing-desktop .product-archive-column:nth-child(2),.archive-listing-desktop .product-archive-column:nth-child(4) {
    margin-right: 0px !important; }*/
}

/*@media (min-width:992px) and (max-width:1199px) {
  .archive-listing-desktop .product-archive-column {
    width: 33.33%; 
    margin-right: 5px; }
  .archive-listing-desktop .product-archive-column:nth-child(2),.archive-listing-desktop .product-archive-column:nth-child(4) {
    margin-right: 0px !important; }
}
*/
/*# sourceMappingURL=bone-global.css.map */
