	/*============================================================================
  Debut | Built with Shopify Slate

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
	/*================ SASS HELPERS ================*/
	/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
	/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
	/*============================================================================
  Return a color based on the brightness of an existing color.
  Need to pass in brightness because it is calculated with Liquid.
  @param {Number} $brightness
  @param {String} $color
  @example scss - Usage
    $focusColor: adaptiveColor(#000, 0);
  @example css - CSS Output
    $focusColor: #404040;
  @return {String}
==============================================================================*/
	/*================ #Mixins ================*/
	/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
	/*================ Media Query Mixin ================*/
	/*================ Responsive Show/Hide Helper ================*/
	/*================ Responsive Text Alignment Helper ================*/
	/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
	/*================ VARIABLES ================*/
	/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
    - $grid-narrowscreen is based on a Shopify breakpoint for checkout buttons
==============================================================================*/
	/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
	/*================ Color Variables ================*/
	/*================ Sizing Variables ================*/
	/*================ Footer Variables ================*/
	/*================ Z-Index ================*/
	/*================ SVG ================*/
	/*================ Drawers ================*/
	/*================ Hero Slider ================*/
	/*================ Typography ================*/
	/*================ Gift Cards ================*/
	/*================ Z-index ================*/
	/*================ VENDOR ================*/
	/*============================================================================
  Slick Slider 1.6.0

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually.
  - Remove `outline: none` from `.slick-dots li button`
==============================================================================*/
	/*================ Slick Slider SCSS ================*/

	.slick-slider {
	    position: relative;
	    display: block;
	    box-sizing: border-box;
	    -webkit-touch-callout: none;
	    -webkit-user-select: none;
	    -khtml-user-select: none;
	    -moz-user-select: none;
	    -ms-user-select: none;
	    user-select: none;
	    -ms-touch-action: pan-y;
	    touch-action: pan-y;
	    -webkit-tap-highlight-color: transparent;
	}

	.slick-list {
	    position: relative;
	    overflow: hidden;
	    display: block;
	    margin: 0;
	    padding: 0;
	}

	.slick-list:focus {
	    outline: none;
	}

	.slick-list.dragging {
	    cursor: pointer;
	    cursor: hand;
	}

	.slick-slider .slick-track,
	.slick-slider .slick-list {
	    -ms-transform: translate3d(0, 0, 0);
	    -webkit-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	}

	.slick-track {
	    position: relative;
	    left: 0;
	    top: 0;
	    display: block;
	}

	.slick-track:before,
	.slick-track:after {
	    content: "";
	    display: table;
	}

	.slick-track:after {
	    clear: both;
	}

	.slick-loading .slick-track {
	    visibility: hidden;
	}

	.slick-slide {
	    float: left;
	    height: 100%;
	    min-height: 1px;
	    display: none;
	}

	[dir="rtl"] .slick-slide {
	    float: right;
	}

	.slick-slide img {
	    display: block;
	}

	.slick-slide.slick-loading img {
	    display: none;
	}

	.slick-slide.dragging img {
	    pointer-events: none;
	}

	.slick-initialized .slick-slide {
	    display: block;
	}

	.slick-loading .slick-slide {
	    visibility: hidden;
	}

	.slick-vertical .slick-slide {
	    display: block;
	    height: auto;
	    border: 1px solid transparent;
	}

	.slick-arrow.slick-hidden {
	    display: none;
	}

	/*================ Slick Slider Theme ================*/
	.slick-loading .slick-list {
	    background: white url(//cdn.shopify.com/s/files/1/0155/2957/4454/t/2/assets/ajax-loader.gif?v=4135686330247201572) center center no-repeat;
	}

	/* Icons */
	/* Arrows */
	.slick-prev,
	.slick-next {
	    position: absolute;
	    display: block;
	    height: 20px;
	    width: 20px;
	    line-height: 0px;
	    font-size: 0px;
	    cursor: pointer;
	    background: transparent;
	    color: transparent;
	    top: 50%;
	    -webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	    transform: translate(0, -50%);
	    padding: 0;
	    border: none;
	}

	.slick-prev:hover,
	.slick-prev:focus,
	.slick-next:hover,
	.slick-next:focus {
	    background: transparent;
	    color: transparent;
	}

	.slick-prev:hover:before,
	.slick-prev:focus:before,
	.slick-next:hover:before,
	.slick-next:focus:before {
	    opacity: 1;
	}

	.slick-prev.slick-disabled:before,
	.slick-next.slick-disabled:before {
	    opacity: 0.25;
	}

	.slick-prev:before,
	.slick-next:before {
	    display: inline-block;
	    vertical-align: middle;
	    font-family: "slick-icons, sans-serif";
	    font-size: 17px;
	    padding: 9px;
	    line-height: 1;
	    color: black;
	    opacity: 0.75;
	    -webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
	}

	.slick-prev {
	    left: -25px;
	}

	[dir="rtl"] .slick-prev {
	    left: auto;
	    right: -25px;
	}

	.slick-prev:before {
	    content: "\2190";
	}

	[dir="rtl"] .slick-prev:before {
	    content: "\2192";
	}

	.slick-next {
	    right: -25px;
	}

	[dir="rtl"] .slick-next {
	    left: -25px;
	    right: auto;
	}

	.slick-next:before {
	    content: "\2192";
	}

	[dir="rtl"] .slick-next:before {
	    content: "\2190";
	}

	/* Dots */
	.slick-dotted.slick-slider {
	    margin-bottom: 30px;
	}

	.slick-dots {
	    position: absolute;
	    bottom: -25px;
	    list-style: none;
	    display: block;
	    text-align: center;
	    padding: 0;
	    margin: 0;
	    width: 100%;
	}

	.slick-dots li {
	    position: relative;
	    display: inline-block;
	    height: 20px;
	    width: 20px;
	    margin: 0 5px;
	    padding: 0;
	    cursor: pointer;
	}

	.slick-dots li button {
	    border: 0;
	    background: transparent;
	    display: block;
	    height: 20px;
	    width: 20px;
	    line-height: 0px;
	    font-size: 0px;
	    color: transparent;
	    padding: 5px;
	    cursor: pointer;
	}

	.slick-dots li button:hover:before,
	.slick-dots li button:focus:before {
	    opacity: 1;
	}

	.slick-dots li button:before {
	    position: absolute;
	    top: 0;
	    left: 0;
	    content: "\2022";
	    width: 20px;
	    height: 20px;
	    font-family: "slick-icons, sans-serif";
	    font-size: 6px;
	    line-height: 20px;
	    text-align: center;
	    color: #af996b;
	    opacity: 0.25;
	    -webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
	}

	.slick-dots li.slick-active button:before {
	    color: #af996b;
	    opacity: 0.75;
	}

	/*================ GLOBAL ================*/
	/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
	*,
	*::before,
	*::after {
	    box-sizing: border-box;
	}

	body {
	    margin: 0;
	}

	article,
	aside,
	details,
	figcaption,
	figure,
	footer,
	header,
	hgroup,
	main,
	menu,
	nav,
	section,
	summary {
	    display: block;
	}

	body,
	input,
	textarea,
	button,
	select {
	    -webkit-font-smoothing: antialiased;
	    -webkit-text-size-adjust: 100%;
	}

	a {
	    background-color: transparent;
	}

	b,
	strong {
	    font-weight: 700;
	}

	em {
	    font-style: italic;
	}

	small {
	    font-size: 80%;
	}

	sub,
	sup {
	    font-size: 75%;
	    line-height: 0;
	    position: relative;
	    vertical-align: baseline;
	}

	sup {
	    top: -0.5em;
	}

	sub {
	    bottom: -0.25em;
	}

	img {
	    max-width: 100%;
	    border: 0;
	}

	button,
	input,
	optgroup,
	select,
	textarea {
	    color: inherit;
	    font: inherit;
	    margin: 0;
	}

	button[disabled],
	html input[disabled] {
	    cursor: default;
	}

	button::-moz-focus-inner,
	[type="button"]::-moz-focus-inner,
	[type="reset"]::-moz-focus-inner,
	[type="submit"]::-moz-focus-inner {
	    border-style: none;
	    padding: 0;
	}

	button:-moz-focusring,
	[type="button"]:-moz-focusring,
	[type="reset"]:-moz-focusring,
	[type="submit"]:-moz-focusring {
	    outline: 1px dotted ButtonText;
	}

	input[type="search"],
	input[type="number"],
	input[type="email"],
	input[type="password"] {
	    -webkit-appearance: none;
	    -moz-appearance: none;
	}

	table {
	    width: 100%;
	    border-collapse: collapse !important;
	    border-spacing: 0;
	}

	td,
	th {
	    padding: 0;
	}

	textarea {
	    overflow: auto;
	    -webkit-appearance: none;
	    -moz-appearance: none;
	}

	/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
	a,
	button,
	[role="button"],
	input,
	label,
	select,
	textarea {
	    touch-action: manipulation;
	}

	/*============================================================================
  #Grid
==============================================================================*/
	/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
	.grid {
	    *zoom: 1;
	    list-style: none;
	    margin: 0;
	    padding: 0;
	}

	.grid::after {
	    content: '';
	    display: table;
	    clear: both;
	}

	.grid__item {
	    float: left;
	    padding-left: 0;
	    width: 100%;
	    /*   @include media-query($small) {
      padding-left: $grid-gutter-mobile;
    } */
	}

	.grid__item[class*="--push"] {
	    position: relative;
	    /*     width: 100% !important;
        left: 0;
        padding: 0; */
	}

	.grid__item.myaccount__order-history,
	.grid__item.myaccount__account-details {
	    width: auto;
	}

	.grid__item.myaccount__order-history h2,
	.grid__item.myaccount__order-history .h2,
	.grid__item.myaccount__account-details h2,
	.grid__item.myaccount__account-details .h2 {
	    font-size: 16px;
	    font-weight: 500;
	    letter-spacing: 0.5px;
	    color: black;
	}

	.grid__item.myaccount__order-history h3,
	.grid__item.myaccount__order-history .h3,
	.grid__item.myaccount__account-details h3,
	.grid__item.myaccount__account-details .h3 {
	    font-size: 18px;
	    font-weight: 500;
	    letter-spacing: 0.5px;
	    color: black;
	}

	@media only screen and (max-width: 1269px) {

	    .grid__item.myaccount__order-history,
	    .grid__item.myaccount__account-details {
	        width: 100%;
	        text-align: center;
	    }
	}

	.grid__item.myaccount__order-history {
	    float: left;
	}

	.grid__item.myaccount__order-history .responsive-table th {
	    font-weight: 500;
	    color: black;
	    font-size: 13px;
	    letter-spacing: 0.4px;
	    padding: 13px 20px 10px;
	    text-align: center;
	}

	.grid__item.myaccount__order-history .responsive-table td {
	    text-align: center;
	    padding: 13px 20px 10px;
	}

	.grid__item.myaccount__account-details {
	    float: right;
	}

	.grid__item.myaccount__account-details p.label strong {
	    color: black;
	    font-weight: 500;
	}

	@media only screen and (max-width: 1269px) {
	    .grid__item.myaccount__account-details {
	        border-left: none;
	        padding: 30px 0 0;
	        text-align: left;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .grid__item.myaccount__account-details {
	        padding: 30px 0 0 0;
	        text-align: left;
	        border-top: 1px solid #e8e9eb;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .grid__item.myaccount__account-details {
	        padding: 30px 0 0 0;
	    }
	}

	.grid__item.myaccount__account-details>li {
	    padding-left: 60px;
	    padding-bottom: 30px;
	    padding-top: 30px;
	    border-left: 1px solid #e8e9eb;
	    border-bottom: 1px solid #e8e9eb;
	}

	.grid__item.myaccount__account-details>li:first-child {
	    padding-top: 0;
	}

	.grid__item.myaccount__account-details>li:last-child {
	    padding-bottom: 0;
	    border-bottom: none;
	}

	@media only screen and (max-width: 1439px) {
	    .grid__item.myaccount__account-details>li {
	        padding-left: 40px;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .grid__item.myaccount__account-details>li {
	        border-left: none;
	        padding-left: 0;
	    }
	}

	/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
	.grid--rev {
	    direction: rtl;
	    text-align: left;
	}

	.grid--rev>.grid__item {
	    direction: ltr;
	    text-align: left;
	    float: right;
	}

	/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
	/*================ Grid push classes ================*/
	/*================ Clearfix helper on uniform grids ================*/
	/*================ Build Base Grid Classes ================*/
	/* Whole */
	.one-whole {
	    width: 100%;
	}

	/* Halves */
	.one-half {
	    width: 50%;
	}

	/* Thirds */
	.one-third {
	    width: 33.33333%;
	}

	.two-thirds {
	    width: 66.66667%;
	}

	/* Quarters */
	.one-quarter {
	    width: 25%;
	}

	.two-quarters {
	    width: 50%;
	}

	.three-quarters {
	    width: 75%;
	}

	/* Fifths */
	.one-fifth {
	    width: 20%;
	}

	.two-fifths {
	    width: 40%;
	}

	.three-fifths {
	    width: 60%;
	}

	.four-fifths {
	    width: 80%;
	}

	/* Sixths */
	.one-sixth {
	    width: 16.66667%;
	}

	.two-sixths {
	    width: 33.33333%;
	}

	.three-sixths {
	    width: 50%;
	}

	.four-sixths {
	    width: 66.66667%;
	}

	.five-sixths {
	    width: 83.33333%;
	}

	/* Eighths */
	.one-eighth {
	    width: 12.5%;
	}

	.two-eighths {
	    width: 25%;
	}

	.three-eighths {
	    width: 37.5%;
	}

	.four-eighths {
	    width: 50%;
	}

	.five-eighths {
	    width: 62.5%;
	}

	.six-eighths {
	    width: 75%;
	}

	.seven-eighths {
	    width: 87.5%;
	}

	/* Tenths */
	.one-tenth {
	    width: 10%;
	}

	.two-tenths {
	    width: 20%;
	}

	.three-tenths {
	    width: 30%;
	}

	.four-tenths {
	    width: 40%;
	}

	.five-tenths {
	    width: 50%;
	}

	.six-tenths {
	    width: 60%;
	}

	.seven-tenths {
	    width: 70%;
	}

	.eight-tenths {
	    width: 80%;
	}

	.nine-tenths {
	    width: 90%;
	}

	/* Twelfths */
	.one-twelfth {
	    width: 8.33333%;
	}

	.two-twelfths {
	    width: 16.66667%;
	}

	.three-twelfths {
	    width: 25%;
	}

	.four-twelfths {
	    width: 33.33333%;
	}

	.five-twelfths {
	    width: 41.66667%;
	}

	.six-twelfths {
	    width: 50%;
	}

	.seven-twelfths {
	    width: 58.33333%;
	}

	.eight-twelfths {
	    width: 66.66667%;
	}

	.nine-twelfths {
	    width: 75%;
	}

	.ten-twelfths {
	    width: 83.33333%;
	}

	.eleven-twelfths {
	    width: 91.66667%;
	}

	.show {
	    display: block !important;
	}

	.hide {
	    display: none !important;
	}

	.text-left {
	    text-align: left !important;
	}

	.text-right {
	    text-align: right !important;
	}

	.text-center {
	    text-align: center !important;
	}

	/*================ Build Responsive Grid Classes ================*/
	@media only screen and (max-width: 749px) {

	    /* Whole */
	    .small--one-whole {
	        width: 100%;
	    }

	    /* Halves */
	    .small--one-half {
	        width: 50%;
	    }

	    /* Thirds */
	    .small--one-third {
	        width: 33.33333%;
	    }

	    .small--two-thirds {
	        width: 66.66667%;
	    }

	    /* Quarters */
	    .small--one-quarter {
	        width: 25%;
	    }

	    .small--two-quarters {
	        width: 50%;
	    }

	    .small--three-quarters {
	        width: 75%;
	    }

	    /* Fifths */
	    .small--one-fifth {
	        width: 20%;
	    }

	    .small--two-fifths {
	        width: 40%;
	    }

	    .small--three-fifths {
	        width: 60%;
	    }

	    .small--four-fifths {
	        width: 80%;
	    }

	    /* Sixths */
	    .small--one-sixth {
	        width: 16.66667%;
	    }

	    .small--two-sixths {
	        width: 33.33333%;
	    }

	    .small--three-sixths {
	        width: 50%;
	    }

	    .small--four-sixths {
	        width: 66.66667%;
	    }

	    .small--five-sixths {
	        width: 83.33333%;
	    }

	    /* Eighths */
	    .small--one-eighth {
	        width: 12.5%;
	    }

	    .small--two-eighths {
	        width: 25%;
	    }

	    .small--three-eighths {
	        width: 37.5%;
	    }

	    .small--four-eighths {
	        width: 50%;
	    }

	    .small--five-eighths {
	        width: 62.5%;
	    }

	    .small--six-eighths {
	        width: 75%;
	    }

	    .small--seven-eighths {
	        width: 87.5%;
	    }

	    /* Tenths */
	    .small--one-tenth {
	        width: 10%;
	    }

	    .small--two-tenths {
	        width: 20%;
	    }

	    .small--three-tenths {
	        width: 30%;
	    }

	    .small--four-tenths {
	        width: 40%;
	    }

	    .small--five-tenths {
	        width: 50%;
	    }

	    .small--six-tenths {
	        width: 60%;
	    }

	    .small--seven-tenths {
	        width: 70%;
	    }

	    .small--eight-tenths {
	        width: 80%;
	    }

	    .small--nine-tenths {
	        width: 90%;
	    }

	    /* Twelfths */
	    .small--one-twelfth {
	        width: 8.33333%;
	    }

	    .small--two-twelfths {
	        width: 16.66667%;
	    }

	    .small--three-twelfths {
	        width: 25%;
	    }

	    .small--four-twelfths {
	        width: 33.33333%;
	    }

	    .small--five-twelfths {
	        width: 41.66667%;
	    }

	    .small--six-twelfths {
	        width: 50%;
	    }

	    .small--seven-twelfths {
	        width: 58.33333%;
	    }

	    .small--eight-twelfths {
	        width: 66.66667%;
	    }

	    .small--nine-twelfths {
	        width: 75%;
	    }

	    .small--ten-twelfths {
	        width: 83.33333%;
	    }

	    .small--eleven-twelfths {
	        width: 91.66667%;
	    }

	    .grid--uniform .small--one-half:nth-child(2n+1),
	    .grid--uniform .small--one-third:nth-child(3n+1),
	    .grid--uniform .small--one-quarter:nth-child(4n+1),
	    .grid--uniform .small--one-fifth:nth-child(5n+1),
	    .grid--uniform .small--one-sixth:nth-child(6n+1),
	    .grid--uniform .small--two-sixths:nth-child(3n+1),
	    .grid--uniform .small--three-sixths:nth-child(2n+1),
	    .grid--uniform .small--one-eighth:nth-child(8n+1),
	    .grid--uniform .small--two-eighths:nth-child(4n+1),
	    .grid--uniform .small--four-eighths:nth-child(2n+1),
	    .grid--uniform .small--five-tenths:nth-child(2n+1),
	    .grid--uniform .small--one-twelfth:nth-child(12n+1),
	    .grid--uniform .small--two-twelfths:nth-child(6n+1),
	    .grid--uniform .small--three-twelfths:nth-child(4n+1),
	    .grid--uniform .small--four-twelfths:nth-child(3n+1),
	    .grid--uniform .small--six-twelfths:nth-child(2n+1) {
	        clear: both;
	    }

	    .small--show {
	        display: block !important;
	    }

	    .small--hide {
	        display: none !important;
	    }

	    .small--text-left {
	        text-align: left !important;
	    }

	    .small--text-right {
	        text-align: right !important;
	    }

	    .small--text-center {
	        text-align: center !important;
	    }
	}

	@media only screen and (min-width: 750px) {

	    /* Whole */
	    .medium-up--one-whole {
	        width: 100%;
	    }

	    /* Halves */
	    .medium-up--one-half {
	        width: 50%;
	    }

	    /* Thirds */
	    .medium-up--one-third {
	        width: 33.33333%;
	    }

	    .medium-up--two-thirds {
	        width: 66.66667%;
	    }

	    /* Quarters */
	    .medium-up--one-quarter {
	        width: 25%;
	    }

	    .medium-up--two-quarters {
	        width: 50%;
	    }

	    .medium-up--three-quarters {
	        width: 75%;
	    }

	    /* Fifths */
	    .medium-up--one-fifth {
	        width: 20%;
	    }

	    .medium-up--two-fifths {
	        width: 40%;
	    }

	    .medium-up--three-fifths {
	        width: 60%;
	    }

	    .medium-up--four-fifths {
	        width: 80%;
	    }

	    /* Sixths */
	    .medium-up--one-sixth {
	        width: 16.66667%;
	    }

	    .medium-up--two-sixths {
	        width: 33.33333%;
	    }

	    .medium-up--three-sixths {
	        width: 50%;
	    }

	    .medium-up--four-sixths {
	        width: 66.66667%;
	    }

	    .medium-up--five-sixths {
	        width: 83.33333%;
	    }

	    /* Eighths */
	    .medium-up--one-eighth {
	        width: 12.5%;
	    }

	    .medium-up--two-eighths {
	        width: 25%;
	    }

	    .medium-up--three-eighths {
	        width: 37.5%;
	    }

	    .medium-up--four-eighths {
	        width: 50%;
	    }

	    .medium-up--five-eighths {
	        width: 62.5%;
	    }

	    .medium-up--six-eighths {
	        width: 75%;
	    }

	    .medium-up--seven-eighths {
	        width: 87.5%;
	    }

	    /* Tenths */
	    .medium-up--one-tenth {
	        width: 10%;
	    }

	    .medium-up--two-tenths {
	        width: 20%;
	    }

	    .medium-up--three-tenths {
	        width: 30%;
	    }

	    .medium-up--four-tenths {
	        width: 40%;
	    }

	    .medium-up--five-tenths {
	        width: 50%;
	    }

	    .medium-up--six-tenths {
	        width: 60%;
	    }

	    .medium-up--seven-tenths {
	        width: 70%;
	    }

	    .medium-up--eight-tenths {
	        width: 80%;
	    }

	    .medium-up--nine-tenths {
	        width: 90%;
	    }

	    /* Twelfths */
	    .medium-up--one-twelfth {
	        width: 8.33333%;
	    }

	    .medium-up--two-twelfths {
	        width: 16.66667%;
	    }

	    .medium-up--three-twelfths {
	        width: 25%;
	    }

	    .medium-up--four-twelfths {
	        width: 33.33333%;
	    }

	    .medium-up--five-twelfths {
	        width: 41.66667%;
	    }

	    .medium-up--six-twelfths {
	        width: 50%;
	    }

	    .medium-up--seven-twelfths {
	        width: 58.33333%;
	    }

	    .medium-up--eight-twelfths {
	        width: 66.66667%;
	    }

	    .medium-up--nine-twelfths {
	        width: 75%;
	    }

	    .medium-up--ten-twelfths {
	        width: 83.33333%;
	    }

	    .medium-up--eleven-twelfths {
	        width: 91.66667%;
	    }

	    .grid--uniform .medium-up--one-half:nth-child(2n+1),
	    .grid--uniform .medium-up--one-third:nth-child(3n+1),
	    .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
	    .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
	    .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
	    .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
	    .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
	    .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
	    .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
	    .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
	    .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
	    .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
	    .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
	    .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
	    .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
	    .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
	        clear: both;
	    }

	    .medium-up--show {
	        display: block !important;
	    }

	    .medium-up--hide {
	        display: none !important;
	    }

	    .medium-up--text-left {
	        text-align: left !important;
	    }

	    .medium-up--text-right {
	        text-align: right !important;
	    }

	    .medium-up--text-center {
	        text-align: center !important;
	    }
	}

	/*================ Build Grid Push Classes ================*/
	@media only screen and (max-width: 749px) {

	    /* Halves */
	    .small--push-one-half {
	        left: 50%;
	    }

	    /* Thirds */
	    .small--push-one-third {
	        left: 33.33333%;
	    }

	    .small--push-two-thirds {
	        left: 66.66667%;
	    }

	    /* Quarters */
	    .small--push-one-quarter {
	        left: 25%;
	    }

	    .small--push-two-quarters {
	        left: 50%;
	    }

	    .small--push-three-quarters {
	        left: 75%;
	    }

	    /* Fifths */
	    .small--push-one-fifth {
	        left: 20%;
	    }

	    .small--push-two-fifths {
	        left: 40%;
	    }

	    .small--push-three-fifths {
	        left: 60%;
	    }

	    .small--push-four-fifths {
	        left: 80%;
	    }

	    /* Sixths */
	    .small--push-one-sixth {
	        left: 16.66667%;
	    }

	    .small--push-two-sixths {
	        left: 33.33333%;
	    }

	    .small--push-three-sixths {
	        left: 50%;
	    }

	    .small--push-four-sixths {
	        left: 66.66667%;
	    }

	    .small--push-five-sixths {
	        left: 83.33333%;
	    }

	    /* Eighths */
	    .small--push-one-eighth {
	        left: 12.5%;
	    }

	    .small--push-two-eighths {
	        left: 25%;
	    }

	    .small--push-three-eighths {
	        left: 37.5%;
	    }

	    .small--push-four-eighths {
	        left: 50%;
	    }

	    .small--push-five-eighths {
	        left: 62.5%;
	    }

	    .small--push-six-eighths {
	        left: 75%;
	    }

	    .small--push-seven-eighths {
	        left: 87.5%;
	    }

	    /* Tenths */
	    .small--push-one-tenth {
	        left: 10%;
	    }

	    .small--push-two-tenths {
	        left: 20%;
	    }

	    .small--push-three-tenths {
	        left: 30%;
	    }

	    .small--push-four-tenths {
	        left: 40%;
	    }

	    .small--push-five-tenths {
	        left: 50%;
	    }

	    .small--push-six-tenths {
	        left: 60%;
	    }

	    .small--push-seven-tenths {
	        left: 70%;
	    }

	    .small--push-eight-tenths {
	        left: 80%;
	    }

	    .small--push-nine-tenths {
	        left: 90%;
	    }

	    /* Twelfths */
	    .small--push-one-twelfth {
	        left: 8.33333%;
	    }

	    .small--push-two-twelfths {
	        left: 16.66667%;
	    }

	    .small--push-three-twelfths {
	        left: 25%;
	    }

	    .small--push-four-twelfths {
	        left: 33.33333%;
	    }

	    .small--push-five-twelfths {
	        left: 41.66667%;
	    }

	    .small--push-six-twelfths {
	        left: 50%;
	    }

	    .small--push-seven-twelfths {
	        left: 58.33333%;
	    }

	    .small--push-eight-twelfths {
	        left: 66.66667%;
	    }

	    .small--push-nine-twelfths {
	        left: 75%;
	    }

	    .small--push-ten-twelfths {
	        left: 83.33333%;
	    }

	    .small--push-eleven-twelfths {
	        left: 91.66667%;
	    }
	}

	@media only screen and (min-width: 750px) {

	    /* Halves */
	    .medium-up--push-one-half {
	        left: 50%;
	    }

	    /* Thirds */
	    .medium-up--push-one-third {
	        left: 33.33333%;
	    }

	    .medium-up--push-two-thirds {
	        left: 66.66667%;
	    }

	    /* Quarters */
	    .medium-up--push-one-quarter {
	        left: 25%;
	    }

	    .medium-up--push-two-quarters {
	        left: 50%;
	    }

	    .medium-up--push-three-quarters {
	        left: 75%;
	    }

	    /* Fifths */
	    .medium-up--push-one-fifth {
	        left: 20%;
	    }

	    .medium-up--push-two-fifths {
	        left: 40%;
	    }

	    .medium-up--push-three-fifths {
	        left: 60%;
	    }

	    .medium-up--push-four-fifths {
	        left: 80%;
	    }

	    /* Sixths */
	    .medium-up--push-one-sixth {
	        left: 16.66667%;
	    }

	    .medium-up--push-two-sixths {
	        left: 33.33333%;
	    }

	    .medium-up--push-three-sixths {
	        left: 50%;
	    }

	    .medium-up--push-four-sixths {
	        left: 66.66667%;
	    }

	    .medium-up--push-five-sixths {
	        left: 83.33333%;
	    }

	    /* Eighths */
	    .medium-up--push-one-eighth {
	        left: 12.5%;
	    }

	    .medium-up--push-two-eighths {
	        left: 25%;
	    }

	    .medium-up--push-three-eighths {
	        left: 37.5%;
	    }

	    .medium-up--push-four-eighths {
	        left: 50%;
	    }

	    .medium-up--push-five-eighths {
	        left: 62.5%;
	    }

	    .medium-up--push-six-eighths {
	        left: 75%;
	    }

	    .medium-up--push-seven-eighths {
	        left: 87.5%;
	    }

	    /* Tenths */
	    .medium-up--push-one-tenth {
	        left: 10%;
	    }

	    .medium-up--push-two-tenths {
	        left: 20%;
	    }

	    .medium-up--push-three-tenths {
	        left: 30%;
	    }

	    .medium-up--push-four-tenths {
	        left: 40%;
	    }

	    .medium-up--push-five-tenths {
	        left: 50%;
	    }

	    .medium-up--push-six-tenths {
	        left: 60%;
	    }

	    .medium-up--push-seven-tenths {
	        left: 70%;
	    }

	    .medium-up--push-eight-tenths {
	        left: 80%;
	    }

	    .medium-up--push-nine-tenths {
	        left: 90%;
	    }

	    /* Twelfths */
	    .medium-up--push-one-twelfth {
	        left: 8.33333%;
	    }

	    .medium-up--push-two-twelfths {
	        left: 16.66667%;
	    }

	    .medium-up--push-three-twelfths {
	        left: 25%;
	    }

	    .medium-up--push-four-twelfths {
	        left: 33.33333%;
	    }

	    .medium-up--push-five-twelfths {
	        left: 41.66667%;
	    }

	    .medium-up--push-six-twelfths {
	        left: 50%;
	    }

	    .medium-up--push-seven-twelfths {
	        left: 58.33333%;
	    }

	    .medium-up--push-eight-twelfths {
	        left: 66.66667%;
	    }

	    .medium-up--push-nine-twelfths {
	        left: 75%;
	    }

	    .medium-up--push-ten-twelfths {
	        left: 83.33333%;
	    }

	    .medium-up--push-eleven-twelfths {
	        left: 91.66667%;
	    }
	}

	/*================ #Helper Classes ================*/
	.clearfix {
	    *zoom: 1;
	}

	.clearfix::after {
	    content: '';
	    display: table;
	    clear: both;
	}

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

	.visibility-hidden {
	    visibility: hidden;
	}

	.visually-hidden--inline {
	    margin: 0;
	    height: 1em;
	}

	.visually-hidden--static {
	    position: static !important;
	}

	.js-focus-hidden:focus {
	    outline: none;
	}

	.no-js:not(html) {
	    display: none;
	}

	.no-js .no-js:not(html) {
	    display: block;
	}

	.no-js .js {
	    display: none;
	}

	.hide {
	    display: none !important;
	}

	/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
	.skip-link:focus {
	    clip: auto;
	    width: auto;
	    height: auto;
	    margin: 0;
	    color: black;
	    background-color: white;
	    padding: 10px;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    z-index: 10000;
	    transition: none;
	    -webkit-transition: none;
	    -moz-transition: none;
	    -ms-transition: none;
	    -o-transition: none;
	}

	/*=============== Lazy loading ===================*/
	.box {
	    background: no-repeat;
	    background-color: #f7f7f7;
	    background-size: contain;
	}

	.ratio-container {
	    position: relative;
	}

	.ratio-container:after {
	    content: '';
	    display: block;
	    height: 0;
	    width: 100%;
	    /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
	    padding-bottom: 50%;
	    content: "";
	}

	.ratio-container>* {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	}

	/*================ #Basic Styles ================*/
	html {
	    padding-bottom: 0 !important;
	}

	body {
	    width: 100%;
	    float: left;
	    background-color: white;
	}

	.ttloader {
	    background-color: #ffffff;
	    height: 100%;
	    left: 0;
	    position: fixed;
	    top: 0;
	    width: 100%;
	    z-index: 999999;
	}

	.rotating {
	    background-position: center center;
	    background-repeat: no-repeat;
	    bottom: 0;
	    height: auto;
	    left: 0;
	    margin: auto;
	    position: absolute;
	    right: 0;
	    top: 0;
	    width: 100%;
	}

	/* body,
html {
  background-color: transparent;
} */
	.page-width {
	    *zoom: 1;
	    max-width: 1430px;
	    margin: 0 auto;
	}

	.page-width::after {
	    content: '';
	    display: table;
	    clear: both;
	}

	@media only screen and (max-width: 1439px) {
	    .page-width {
	        max-width: 1240px;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .page-width {
	        max-width: 960px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .page-width {
	        max-width: 740px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .page-width {
	        max-width: none;
	    }
	}

	.main-content {
	    display: block;
	    padding-top: 0;
	}

	@media only screen and (min-width: 750px) {
	    .main-content {
	        padding-top: 0;
	    }
	}

	.section-header {
	    margin-bottom: 30px;
	    padding-bottom: 15px;
	    border-bottom: 2px solid #f0f0f0;
	    float: left;
	    width: 100%;
	}

	.section-header>h1,
	.section-header>.h1 {
	    font-size: 15px;
	    color: black;
	    font-weight: bold;
	    letter-spacing: 1px;
	    line-height: 24px;
	    text-transform: uppercase;
	}

	.section-header h2,
	.section-header .h2 {
	    font-size: 20px;
	    color: black;
	    font-weight: 500;
	    text-align: left;
	    line-height: 30px;
	    text-transform: capitalize;
	    margin-bottom: 0;
	    float: left;
	    letter-spacing: 1px;
	}

	@media only screen and (max-width: 749px) {

	    .section-header h2,
	    .section-header .h2 {
	        font-size: 20px;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .section-header h2,
	    .section-header .h2 {
	        font-size: 20px;
	        margin-bottom: 10px;
	    }
	}

	.section-header.page-address {
	    padding-bottom: 30px !important;
	}

	@media only screen and (max-width: 749px) {
	    .section-header {
	        padding-bottom: 0;
	        margin-bottom: 15px;
	    }
	}

	.page-width h1,
	.page-width .h1 {
	    font-size: 21px;
	    text-transform: uppercase;
	    letter-spacing: 0.8px;
	    font-weight: 400;
	    text-align: center;
	    color: #848484;
	}

	/*================ Typography ================*/
	blockquote {
	    font-size: 1.38462em;
	    font-style: normal;
	    text-align: center;
	    padding: 0 30px;
	    margin: 0;
	}

	.rte blockquote {
	    border-color: #e8e9eb;
	    border-width: 1px 0;
	    border-style: solid;
	    padding: 30px 0;
	    margin-bottom: 7.5px;
	}

	blockquote p+cite {
	    margin-top: 7.5px;
	}

	blockquote cite {
	    display: block;
	    font-size: 0.85em;
	}

	blockquote cite::before {
	    content: '\2014 \0020';
	}

	code,
	pre {
	    font-family: Consolas, monospace;
	    font-size: 1em;
	}

	pre {
	    overflow: auto;
	}

	body,
	input,
	textarea,
	button,
	select {
	    font-size: 13px;
	    font-family: "poppins", "HelveticaNeue", "Helvetica Neue", sans-serif;
	    font-weight: 400;
	    color: #707070;
	    line-height: 24px;
	    letter-spacing: 0.5px;
	    outline: none;
	}

	/* @include media-query($medium-down) {
  input,
  textarea,
  select,
  button {
    font-size: $font-size-mobile-input;
  }
} */
	/*================ Headings ================*/
	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6 {
	    margin: 0 0 17.5px;
	    font-family: "poppins", "HelveticaNeue", "Helvetica Neue", sans-serif;
	    font-weight: 400;
	    line-height: 1.2;
	    overflow-wrap: break-word;
	    word-wrap: break-word;
	}

	h1 a,
	.h1 a,
	h2 a,
	.h2 a,
	h3 a,
	.h3 a,
	h4 a,
	.h4 a,
	h5 a,
	.h5 a,
	h6 a,
	.h6 a {
	    color: inherit;
	    text-decoration: none;
	    font-weight: inherit;
	}

	h1,
	.h1 {
	    font-size: 2.69231em;
	    text-transform: none;
	    letter-spacing: 0;
	}

	@media only screen and (max-width: 749px) {

	    h1,
	    .h1 {
	        font-size: 2.46154em;
	    }
	}

	h2,
	.h2 {
	    font-size: 1.23077em;
	    text-transform: capitalize;
	    letter-spacing: 0;
	    font-weight: 500;
	    color: black;
	}

	@media only screen and (max-width: 749px) {

	    h2,
	    .h2 {
	        font-size: 1.38462em;
	    }
	}

	h3,
	.h3 {
	    font-size: 2em;
	    text-transform: none;
	    letter-spacing: 0;
	}

	@media only screen and (max-width: 749px) {

	    h3,
	    .h3 {
	        font-size: 1.53846em;
	    }
	}

	h4,
	.h4 {
	    font-size: 1.30769em;
	}

	@media only screen and (max-width: 749px) {

	    h4,
	    .h4 {
	        font-size: 1.15385em;
	    }
	}

	h5,
	.h5 {
	    font-size: 1.15385em;
	}

	@media only screen and (max-width: 749px) {

	    h5,
	    .h5 {
	        font-size: 1em;
	    }
	}

	h6,
	.h6 {
	    font-size: 1.07692em;
	}

	@media only screen and (max-width: 749px) {

	    h6,
	    .h6 {
	        font-size: 0.92308em;
	    }
	}

	/*================ RTE headings ================*/
	.rte {
	    color: #707070;
	    margin-bottom: 35px;
	}

	.rte:last-child {
	    margin-bottom: 0;
	}

	.rte h1,
	.rte .h1,
	.rte h2,
	.rte .h2,
	.rte h3,
	.rte .h3,
	.rte h4,
	.rte .h4,
	.rte h5,
	.rte .h5,
	.rte h6,
	.rte .h6 {
	    margin-top: 15px;
	    margin-bottom: 7.5px;
	}

	.rte h1:first-child,
	.rte .h1:first-child,
	.rte h2:first-child,
	.rte .h2:first-child,
	.rte h3:first-child,
	.rte .h3:first-child,
	.rte h4:first-child,
	.rte .h4:first-child,
	.rte h5:first-child,
	.rte .h5:first-child,
	.rte h6:first-child,
	.rte .h6:first-child {
	    margin-top: 0;
	}

	.rte li {
	    margin-bottom: 4px;
	    list-style: inherit;
	}

	.rte li:last-child {
	    margin-bottom: 0;
	}

	.rte-setting {
	    margin-bottom: 19.44444px;
	}

	.rte-setting:last-child {
	    margin-bottom: 0;
	}

	/*================ Paragraph styles ================*/
	p {
	    color: #707070;
	    margin: 0 0 19.44444px;
	}

	@media only screen and (max-width: 749px) {
	    p {
	        font-size: 0.92308em;
	    }
	}

	p:last-child {
	    margin-bottom: 0;
	}

	/*================ Lists ================*/
	li {
	    list-style: none;
	}

	/*================ Misc styles ================*/
	.fine-print {
	    font-size: 1.07692em;
	    font-style: italic;
	}

	.txt--minor {
	    font-size: 80%;
	}

	.txt--emphasis {
	    font-style: italic;
	}

	/* .address {
  margin-bottom: $gutter-site;
} */
	/*================ Hero and slideshow headers ================*/
	.hero .mega-title {
	    font-size: 28px;
	    line-height: 35px;
	    color: white;
	    font-weight: 700;
	    text-transform: capitalize;
	    letter-spacing: 0;
	    text-align: left;
	}

	@media only screen and (max-width: 989px) {
	    .hero .mega-title {
	        font-size: 20px;
	        line-height: 26px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .hero .mega-title {
	        font-size: 14px;
	    }
	}

	.hero .mega-subtitle {
	    margin: 10px auto 10px;
	    font-size: 14px;
	    line-height: 22px;
	    max-width: 100%;
	    letter-spacing: 0.4px;
	}

	@media only screen and (max-width: 989px) {
	    .hero .mega-subtitle {
	        font-size: 12px;
	        line-height: 18px;
	        margin: 10px auto 10px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .hero .mega-subtitle {
	        margin: 5px auto;
	    }
	}

	.mega-title,
	.mega-subtitle {
	    color: white;
	}

	.hero .mega-title,
	.hero .mega-subtitle {
	    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
	}

	@media only screen and (min-width: 750px) {

	    .mega-title,
	    .mega-subtitle {
	        text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
	    }
	}

	.mega-title {
	    margin-bottom: 8px;
	}

	.mega-title--large {
	    font-size: 2.61538em;
	}

	@media only screen and (min-width: 750px) {
	    .mega-title--large {
	        font-size: 5em;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .mega-subtitle {
	        font-size: 1.30769em;
	        margin: 0 auto;
	        max-width: 75%;
	    }
	}

	.mega-subtitle p {
	    color: white;
	}

	@media only screen and (max-width: 749px) {
	    .mega-subtitle p {
	        display: none;
	    }
	}

	.mega-subtitle a {
	    color: white;
	    border-bottom: 1px solid currentColor;
	}

	.mega-subtitle a:hover,
	.mega-subtitle a:focus {
	    color: #e6e6e6;
	}

	.mega-subtitle--large {
	    font-size: 1.15385em;
	    font-weight: 400;
	}

	@media only screen and (min-width: 750px) {
	    .mega-subtitle--large {
	        font-size: 1.61538em;
	    }
	}

	/*================ #Icons ================*/
	.icon {
	    display: inline-block;
	    width: 16px;
	    height: 16px;
	    vertical-align: top;
	    fill: currentColor;
	}

	.no-svg .icon {
	    display: none;
	}

	svg.icon:not(.icon--full-color) circle,
	svg.icon:not(.icon--full-color) ellipse,
	svg.icon:not(.icon--full-color) g,
	svg.icon:not(.icon--full-color) line,
	svg.icon:not(.icon--full-color) path,
	svg.icon:not(.icon--full-color) polygon,
	svg.icon:not(.icon--full-color) polyline,
	svg.icon:not(.icon--full-color) rect,
	symbol.icon:not(.icon--full-color) circle,
	symbol.icon:not(.icon--full-color) ellipse,
	symbol.icon:not(.icon--full-color) g,
	symbol.icon:not(.icon--full-color) line,
	symbol.icon:not(.icon--full-color) path,
	symbol.icon:not(.icon--full-color) polygon,
	symbol.icon:not(.icon--full-color) polyline,
	symbol.icon:not(.icon--full-color) rect {
	    fill: inherit;
	    stroke: inherit;
	}

	/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
	.no-svg .icon__fallback-text {
	    position: static !important;
	    overflow: inherit;
	    clip: none;
	    height: auto;
	    width: auto;
	    margin: 0;
	}

	/*================ Payment Icons ================*/
	.payment-icons {
	    -moz-user-select: none;
	    -ms-user-select: none;
	    -webkit-user-select: none;
	    user-select: none;
	    cursor: default;
	    text-align: right;
	}

	.payment-icons .icon {
	    width: 38px;
	    height: 24px;
	    fill: inherit;
	}

	@media only screen and (max-width: 989px) {
	    .payment-icons {
	        text-align: right;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .payment-icons {
	        text-align: center;
	    }
	}

	/*================ Social Icons ================*/
	.social-icons .icon {
	    width: 15px;
	    height: 15px;
	}

	.social-icons .icon.icon--wide {
	    width: 40px;
	}

	/*================ #Lists ================*/
	ul,
	ol {
	    margin: 0;
	    padding: 0;
	}

	ol {
	    list-style: decimal;
	}

	.list--inline {
	    padding: 0;
	    margin: 0;
	}

	.list--inline>li {
	    display: inline-block;
	    margin-bottom: 0;
	    vertical-align: middle;
	}

	.list--inline.article__meta-buttons {
	    display: inline-block;
	    float: none;
	    vertical-align: top;
	}

	/*================ #Rich Text Editor ================*/
	.rte img {
	    height: auto;
	}

	.rte table {
	    table-layout: fixed;
	}

	.rte ul,
	.rte ol {
	    margin: 0 0 17.5px 35px;
	}

	.rte ul.list--inline,
	.rte ol.list--inline {
	    margin-left: 0;
	}

	.rte ul {
	    list-style: disc outside;
	}

	.rte ul ul {
	    list-style: circle outside;
	}

	.rte ul ul ul {
	    list-style: square outside;
	}

	.rte a:not(.btn) {
	    border-bottom: 1px solid currentColor;
	    padding-bottom: 1px;
	}

	.text-center.rte ul,
	.text-center.rte ol,
	.text-center .rte ul,
	.text-center .rte ol {
	    margin-left: 0;
	    list-style-position: inside;
	}

	.text-center.address h4.heading,
	.text-center.address .heading.h4 {
	    color: black;
	    letter-spacing: 0.4px;
	    text-transform: capitalize;
	}

	.scrollable-wrapper {
	    max-width: 100%;
	    overflow: auto;
	    -webkit-overflow-scrolling: touch;
	}

	/*================ #Links and Buttons ================*/
	a {
	    color: black;
	    text-decoration: none;
	}

	a:not([disabled]):hover,
	a:focus {
	    color: #6c9228;
	}

	a.classic-link {
	    text-decoration: underline;
	}

	a[href^="tel"] {
	    color: inherit;
	}

	/*================ Buttons ================*/
	.btn,
	.shopify-payment-button .shopify-payment-button__button--unbranded {
	    -moz-user-select: none;
	    -ms-user-select: none;
	    -webkit-user-select: none;
	    user-select: none;
	    -webkit-appearance: none;
	    -moz-appearance: none;
	    appearance: none;
	    display: inline-block;
	    width: auto;
	    text-decoration: none;
	    text-align: center;
	    vertical-align: middle;
	    cursor: pointer;
	    border: none;
	    background-color: #0083d0;
	    color: white;
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	    font-family: "poppins", "HelveticaNeue", "Helvetica Neue", sans-serif;
	    font-weight: 400;
	    outline: none;
	    text-transform: capitalize;
	    letter-spacing: 1px;
	    white-space: normal;
	    line-height: 24px;
	    font-size: 13px;
	}

	@media only screen and (min-width: 750px) {

	    .btn,
	    .shopify-payment-button .shopify-payment-button__button--unbranded {
	        padding: 10px 20px 6px;
	    }
	}

	.btn:not([disabled]):hover,
	.shopify-payment-button .shopify-payment-button__button--unbranded:not([disabled]):hover,
	.btn:focus,
	.shopify-payment-button .shopify-payment-button__button--unbranded:focus {
	    color: #0083d0;
	    background-color: #6c9228;
	}

	.btn .icon-arrow-right,
	.shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-right,
	.btn .icon-arrow-left,
	.shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-left {
	    height: 21px;
	}

	.btn[disabled],
	.shopify-payment-button [disabled].shopify-payment-button__button--unbranded {
	    cursor: default;
	    opacity: 0.5;
	    -khtml-opacity: 0.5;
	    -webkit-opacity: 0.5;
	    -moz-opacity: 0.5;
	}

	.btn--secondary {
	    background-color: #000;
	    color: white;
	    border-color: #000;
	}

	.btn--secondary:not([disabled]):hover,
	.btn--secondary:focus {
	    background-color: #6c9228;
	    color: black;
	    border-color: black;
	}

	.btn--secondary-accent {
	    background-color: #000;
	    color: white;
	    border-color: #000;
	}

	.btn--secondary-accent:not([disabled]):hover,
	.btn--secondary-accent:focus {
	    background-color: #6c9228;
	    border-color: #6c9228;
	}

	.btn--small {
	    padding: 11px 20px 8px;
	    font-size: 12px;
	    line-height: 1;
	}

	.btn--tertiary {
	    background-color: #000;
	    color: white;
	}

	.btn--tertiary:not([disabled]):hover,
	.btn--tertiary:focus {
	    background-color: #6c9228;
	}

	/*================ Button variations ================*/
	@media only screen and (max-width: 749px) {
	    .btn--small-wide {
	        padding-left: 50px;
	        padding-right: 50px;
	    }
	}

	.btn--link {
	    background-color: transparent;
	    border: 0;
	    margin: 0;
	    color: black;
	    text-align: left;
	    outline: none;
	}

	.btn--link:not([disabled]):hover,
	.btn--link:focus {
	    color: #6c9228;
	}

	.btn--link .icon {
	    vertical-align: middle;
	}

	.btn--narrow {
	    padding-left: 15px;
	    padding-right: 15px;
	}

	.btn--has-icon-after .icon {
	    margin-left: 10px;
	}

	.btn--has-icon-before .icon {
	    margin-right: 10px;
	}

	/*================ Force an input/button to look like a text link ================*/
	.text-link {
	    display: inline;
	    border: 0 none;
	    background: none;
	    padding: 0;
	    margin: 0;
	}

	/*================ Return to collection/blog links ================*/
	.return-link-wrapper {
	    margin: 22.5px 0 0;
	    padding: 30px 0 0;
	}

	@media only screen and (max-width: 749px) {
	    .return-link-wrapper {
	        padding: 20px 0 0;
	    }

	    .return-link-wrapper .btn,
	    .return-link-wrapper .shopify-payment-button .shopify-payment-button__button--unbranded,
	    .shopify-payment-button .return-link-wrapper .shopify-payment-button__button--unbranded {
	        display: inline-block;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .return-link-wrapper {
	        padding: 10px 0;
	    }
	}

	.return-link-wrapper .btn.return-link,
	.return-link-wrapper .shopify-payment-button .return-link.shopify-payment-button__button--unbranded,
	.shopify-payment-button .return-link-wrapper .return-link.shopify-payment-button__button--unbranded {
	    color: white;
	    background-color: #000;
	    padding: 12px 20px 7px;
	}

	.return-link-wrapper .btn.return-link:hover,
	.return-link-wrapper .shopify-payment-button .return-link.shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .return-link-wrapper .return-link.shopify-payment-button__button--unbranded:hover,
	.return-link-wrapper .btn.return-link:focus,
	.return-link-wrapper .shopify-payment-button .return-link.shopify-payment-button__button--unbranded:focus,
	.shopify-payment-button .return-link-wrapper .return-link.shopify-payment-button__button--unbranded:focus {
	    background-color: #6c9228;
	    color: black;
	}

	.return-link-wrapper .btn.return-link .btn--has-icon-before .icon,
	.return-link-wrapper .shopify-payment-button .return-link.shopify-payment-button__button--unbranded .btn--has-icon-before .icon,
	.shopify-payment-button .return-link-wrapper .return-link.shopify-payment-button__button--unbranded .btn--has-icon-before .icon {
	    position: relative;
	    top: -1px;
	}

	.full-width-link {
	    position: relative;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    border-right: 1px solid #f0f0f0;
	    z-index: 2;
	}

	/*================ #Tables ================*/
	table {
	    margin-bottom: 7.5px;
	}

	th {
	    font-family: "poppins", "HelveticaNeue", "Helvetica Neue", sans-serif;
	}

	th,
	td {
	    text-align: left;
	    border: 1px solid #e8e9eb;
	    padding: 10px 14px;
	}

	/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
	@media only screen and (max-width: 749px) {
	    .responsive-table thead {
	        display: none;
	    }

	    .responsive-table tr {
	        display: block;
	    }

	    .responsive-table tr,
	    .responsive-table td {
	        float: left;
	        clear: both;
	        width: 100%;
	    }

	    .responsive-table th,
	    .responsive-table td {
	        display: block;
	        text-align: right;
	        padding: 7.5px;
	        border: 0;
	        margin: 0;
	    }

	    .responsive-table td::before {
	        content: attr(data-label);
	        float: left;
	        text-align: left;
	        font-size: 13px;
	        padding-right: 10px;
	        width: 50%;
	        font-weight: 500;
	        color: #000;
	    }

	    .responsive-table tbody {
	        border: 1px solid #e8e9eb;
	        width: 100%;
	        float: left;
	    }

	    .responsive-table tbody td {
	        border-top: 1px solid #e8e9eb;
	        position: relative;
	    }

	    .responsive-table tbody td:after {
	        content: '';
	        position: absolute;
	        width: 1px;
	        height: 100%;
	        background: #e8e9eb;
	        top: 0;
	        left: 50%;
	    }

	    .responsive-table tbody th {
	        border: none;
	        display: inline-block;
	        vertical-align: top;
	    }

	    .responsive-table__row+.responsive-table__row,
	    tfoot>.responsive-table__row:first-child {
	        position: relative;
	        margin-top: 10px;
	        padding-top: 15px;
	    }

	    .responsive-table__row+.responsive-table__row::after,
	    tfoot>.responsive-table__row:first-child::after {
	        content: '';
	        display: block;
	        position: absolute;
	        top: 0;
	        left: 7.5px;
	        right: 7.5px;
	        border-bottom: 1px solid #e8e9eb;
	    }
	}

	@media only screen and (max-width: 749px) and (max-width: 749px) {

	    .responsive-table__row+.responsive-table__row::after,
	    tfoot>.responsive-table__row:first-child::after {
	        border-bottom: none;
	    }
	}

	/*================ #Images and Iframes ================*/
	svg:not(:root) {
	    overflow: hidden;
	}

	.video-wrapper {
	    position: relative;
	    overflow: hidden;
	    max-width: 100%;
	    padding-bottom: 56.25%;
	    height: 0;
	    height: auto;
	}

	.video-wrapper iframe {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	}

	/*================ Forms ================*/
	form {
	    margin: 0;
	}

	fieldset {
	    border: none;
	    margin: 0;
	    padding: 0;
	}

	legend {
	    border: 0;
	    padding: 0;
	}

	button {
	    cursor: pointer;
	}

	input[type="submit"] {
	    cursor: pointer;
	}

	label {
	    display: block;
	    margin-bottom: 5px;
	    color: #848484;
	}

	[type="radio"]+label,
	[type="checkbox"]+label {
	    display: inline-block;
	    margin-bottom: 0;
	}

	label[for] {
	    cursor: pointer;
	}

	input,
	textarea,
	select {
	    border: 1px solid #e8e9eb;
	    background-color: white;
	    color: black;
	    max-width: 100%;
	    line-height: 1.2;
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	}

	input:focus,
	textarea:focus,
	select:focus {
	    border-color: #cdcfd3;
	}

	input[disabled],
	textarea[disabled],
	select[disabled] {
	    cursor: default;
	    background-color: #f4f4f4;
	    border-color: #f4f4f4;
	}


	textarea {
	    min-height: 100px;
	}

	/*================ Error styles ================*/
	input.input--error,
	select.input--error,
	textarea.input--error {
	    border-color: #d20000;
	    background-color: #fff8f8;
	    color: #d20000;
	    margin-bottom: 11.66667px;
	}

	input.input--error+.input-error-message,
	select.input--error+.input-error-message,
	textarea.input--error+.input-error-message {
	    display: block;
	}

	.input-error-message {
	    display: none;
	    color: #d20000;
	    font-size: 0.84615em;
	    margin-bottom: 11.66667px;
	}

	@media only screen and (max-width: 749px) {
	    .input-error-message {
	        margin-bottom: 19.44444px;
	    }
	}

	.input-error-message .icon {
	    width: 1em;
	    height: 1em;
	    margin-top: -0.3em;
	}

	select {
	    -webkit-appearance: none;
	    -moz-appearance: none;
	    appearance: none;
	    background-position: right center;
	    background-image: url(//cdn.shopify.com/s/files/1/0155/2957/4454/t/2/assets/ico-select.svg?v=8068170112914963158);
	    background-repeat: no-repeat;
	    background-position: right 10px center;
	    line-height: 1.2;
	    padding-right: 28px;
	    text-indent: 0.01px;
	    text-overflow: '';
	    cursor: pointer;
	    padding-top: 8px;
	    padding-left: 15px;
	    padding-bottom: 8px;
	}

	@media only screen and (min-width: 750px) {
	    select {
	        padding-top: 10px;
	        padding-left: 18px;
	        padding-bottom: 10px;
	    }
	}

	.select-group {
	    position: relative;
	    z-index: 2;
	}

	.select-group select {
	    background-image: none;
	    background-color: transparent;
	}

	.select-group .icon {
	    height: calc(8em / 16);
	    position: absolute;
	    right: 15px;
	    top: 50%;
	    transform: translateY(-50%);
	    width: calc(8em / 16);
	    z-index: -1;
	}

	.select-label {
	    font-size: 0.92308em;
	    text-transform: uppercase;
	}

	option {
	    color: black;
	    background-color: white;
	}

	select::-ms-expand {
	    display: none;
	}

	/*================ Form labels ================*/
	.label--hidden {
	    position: absolute;
	    height: 0;
	    width: 0;
	    margin-bottom: 0;
	    overflow: hidden;
	    clip: rect(1px, 1px, 1px, 1px);
	}


	/*================ Labels ================*/
	.label--error {
	    color: #d20000;
	}

	input,
	textarea {
	    padding: 8px 15px;
	}

	@media only screen and (min-width: 750px) {

	    input,
	    textarea {
	        padding: 10px 18px;
	    }
	}

	/*================ Vertical forms ================*/
	.form-vertical input,
	.form-vertical select,
	.form-vertical textarea {
	    display: block;
	    width: 100%;
	    margin-bottom: 19.44444px;
	}

	.form-vertical input.input--error,
	.form-vertical select.input--error,
	.form-vertical textarea.input--error {
	    margin-bottom: 5px;
	}

	.form-vertical [type="radio"],
	.form-vertical [type="checkbox"] {
	    display: inline-block;
	    width: auto;
	    margin-right: 5px;
	}

	.form-vertical [type="submit"],
	.form-vertical .btn,
	.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
	    display: inline-block;
	    width: auto;
	}

	.address-list>li {
	    margin-bottom: 30px;
	    float: left;
	    width: 100%;
	    padding: 0 50px 30px 50px;
	}

	.address-list>li:last-child {
	    border-bottom: none;
	}

	@media only screen and (max-width: 989px) {
	    .address-list>li {
	        padding: 0 30px 30px 30px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .address-list>li {
	        padding: 0 20px 20px 20px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .address-list>li {
	        width: 100%;
	        border-right: none;
	        border-bottom: 1px solid #e8e9eb;
	        padding: 20px 0;
	        margin-bottom: 0;
	    }

	    .address-list>li:last-child {
	        border-bottom: none;
	        padding-bottom: 0;
	    }

	    .address-list>li:first-child {
	        padding-top: 0;
	    }
	}

	.address-list>li p {
	    text-transform: capitalize;
	    font-size: 13px;
	}

	.address-list>li .form-vertical {
	    padding-bottom: 20px;
	    border-bottom: 1px solid #e8e9eb;
	}

	/*================ Single field forms ================*/
	.form-single-field {
	    margin: 0 auto 15px;
	    max-width: 35rem;
	}

	.form-single-field .input--error {
	    margin-bottom: 0;
	}

	/*================ Form feedback messages ================*/
	.note,
	.form-message {
	    padding: 8px;
	    margin: 0 0 7.5px;
	}

	@media only screen and (min-width: 750px) {

	    .note,
	    .form-message {
	        padding: 10px;
	    }
	}

	.note {
	    border: 1px solid #e8e9eb;
	}

	.form-message--success {
	    border: 1px solid #1f873d;
	    background-color: #f8fff9;
	    color: #1f873d;
	    display: block;
	    width: 100%;
	}

	.form-message--error {
	    border: 1px solid #d20000;
	    background-color: #fff8f8;
	    padding: 1rem 1.3rem;
	    text-align: left;
	    width: 100%;
	}

	.form-message--error li {
	    list-style-type: disc;
	    list-style-position: inside;
	}

	.form-message--error .form-message__link {
	    display: inline-block;
	    text-decoration: underline;
	    text-decoration-skip-ink: auto;
	    color: black;
	}

	.form-message--error .form-message__link:hover {
	    text-decoration: none;
	    color: black;
	}

	/*================ Input Groups ================*/
	.input-group {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -webkit-justify-content: center;
	    -ms-justify-content: center;
	    justify-content: center;
	}

	.form-vertical .input-group {
	    margin-bottom: 15px;
	}

	.input-error-message {
	    width: 100%;
	}

	.input-group--error {
	    margin-bottom: 11.66667px;
	}

	.input-group__field,
	.input-group__field input,
	.input-group__btn .btn,
	.input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
	    min-height: 42px;
	}

	@media only screen and (min-width: 750px) {

	    .input-group__field,
	    .input-group__field input,
	    .input-group__btn .btn,
	    .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
	    .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
	        min-height: 46px;
	    }
	}

	.input-group__field {
	    -ms-flex-preferred-size: 15rem;
	    -webkit-flex-basis: 15rem;
	    -moz-flex-basis: 15rem;
	    flex-basis: 15rem;
	    flex-grow: 9999;
	    margin-bottom: 1rem;
	    border-radius: 4px 0 0 4px;
	    -webkit-border-radius: 4px 0 0 4px;
	    -khtml-border-radius: 4px 0 0 4px;
	    -moz-border-radius: 4px 0 0 4px;
	    text-align: left;
	}

	.input-group__field input {
	    width: 100%;
	}

	.form-vertical .input-group__field {
	    margin: 0;
	}

	.input-group__btn {
	    flex-grow: 1;
	}

	.input-group__btn .btn,
	.input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
	    width: 100%;
	}

	/*================ #Site Nav and Dropdowns ================*/
	#AccessibleNav {
	    border: 0px !important;
	}

	.site-header__logo img {
	    display: block;
	}

	.site-nav {
	    position: relative;
	    padding: 0;
	    text-align: center;
	    margin: 5x 0 0 0;
	}

	@media only screen and (max-width: 1269px) {
	    .site-nav {
	        position: unset;
	    }
	}

	.site-nav a {
	    padding: 20px 15px 12px 15px;
	    color: white;
	    font-size: 13px;
	    letter-spacing: 0.7px;
	    text-transform: capitalize;
	}

	.site-nav a:hover {
	    color: black;
	}

	.site-nav li.more-site-nav.site-nav--active a.site-nav__link--main {
	    position: relative;
	}

	.site-nav li.more-site-nav {
	    position: relative;
	}

	.site-nav li.more-site-nav a.site-nav__link--main {
	    position: relative;
	    font-weight: 500;
	}

	.site-nav li.more-site-nav:hover a:before {
	    opacity: 1;
	    -moz-opacity: 1;
	    -webkit-opacity: 1;
	    -khtml-opacity: 1;
	    -ms-transform: translateX(0px);
	    -webkit-transform: translateX(0px);
	    transform: translateX(0px);
	    width: 100%;
	    z-index: 1000;
	}

	.site-nav li.more-site-nav:hover .site-nav__dropdown {
	    visibility: visible;
	    opacity: 1;
	    -moz-opacity: 1;
	    -webkit-opacity: 1;
	    -khtml-opacity: 1;
	    -ms-transform: rotateX(0deg);
	    -webkit-transform: rotateX(0deg);
	    transform: rotateX(0deg);
	}

	.site-nav li.more-site-nav:hover .site-nav__dropdown a:hover {
	    color: #6c9228;
	}

	.site-nav li.more-site-nav.hiden_menu .site-nav__dropdown li.more-site-nav .site-nav__dropdown {
	    visibility: hidden;
	    opacity: 0;
	}

	.site-nav li.more-site-nav.hiden_menu .site-nav__dropdown li.more-site-nav:hover .site-nav__dropdown {
	    visibility: hidden;
	    opacity: 0;
	}

	.site-nav li.more-site-nav.site-nav--has-centered-dropdown {
	    position: static;
	}

	.site-nav li.more-site-nav.hiden_menu:hover li.more-site-nav a:before {
	    width: 0;
	}

	.site-nav li.more-site-nav.hiden_menu .site-nav__dropdown li.more-site-nav a.site-nav__link--main {
	    font-weight: normal;
	    text-transform: capitalize;
	}

	/*================ Site Nav Links ================*/
	.site-nav__link {
	    display: block;
	}

	.site-nav__link .icon-chevron-down {
	    width: calc(8em / 16);
	    height: calc(8em / 16);
	    margin-left: calc(2em / 16);
	}

	.site-nav__link.site-nav--active-dropdown {
	    border: 1px solid #e8e9eb;
	    border-bottom: 1px solid transparent;
	    z-index: 2;
	}

	.site-nav__link--button {
	    border: none;
	    background-color: transparent;
	    padding: 3px 10px;
	}

	@media only screen and (max-width: 989px) {
	    .site-nav__link--button {
	        font-size: 13px;
	    }
	}

	.site-nav__link--button:focus,
	.site-nav__link--button:hover {
	    color: #6c9228;
	}

	/*================ Dropdowns ================*/
	.site-nav--has-dropdown {
	    position: relative;
	}

	.site-nav__dropdown {
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    visibility: hidden;
	    position: absolute;
	    left: 0;
	    padding: 20px 10px;
	    margin: 0;
	    z-index: 7;
	    text-align: left;
	    border-radius: 0 0 4px 4px;
	    background: white;
	    left: 0;
	    top: 100% !important;
	    min-width: 190px;
	    transform-origin: center top 0;
	    -ms-transform: rotateX(90deg);
	    -webkit-transform: rotateX(90deg);
	    transform: rotateX(90deg);
	    -ms-transition: all 0.4s ease-in-out 0s;
	    -webkit-transition: all 0.4s ease-in-out 0s;
	    transition: all 0.4s ease-in-out 0s;
	    box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -moz-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -webkit-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	}

	.site-nav__dropdown .site-nav__link {
	    color: black;
	    padding: 4px 15px;
	}

	.site-nav--active-dropdown .site-nav__dropdown {
	    display: block;
	}

	.site-nav__dropdown li {
	    display: block;
	}

	.site-nav__dropdown li a.second-nav {
	    text-transform: capitalize;
	}

	.site-nav__dropdown--centered {
	    width: 100%;
	    border: 0;
	    background: none;
	    padding: 0;
	    text-align: center;
	    box-shadow: none;
	    -moz-box-shadow: none;
	    -webkit-box-shadow: none;
	}

	/*================ Child list ================*/
	.site-nav__childlist {
	    background: white;
	    padding: 30px 0;
	    text-align: left;
	    display: inline-block;
	    box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -moz-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -webkit-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    border-radius: 0 0 4px 4px;
	}

	@media only screen and (max-width: 1269px) {
	    .site-nav__childlist {
	        padding: 15px;
	    }
	}

	.site-nav__childlist-grid {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    width: auto;
	    margin-bottom: -15px;
	}

	.site-nav__childlist-grid ul a.site-nav__link {
	    text-transform: capitalize;
	    padding: 4px 0;
	}

	.site-nav__childlist-item {
	    margin-bottom: 15px;
	    padding: 0 30px;
	    display: inline-block;
	    vertical-align: top;
	    width: auto;
	}

	.site-nav__childlist-item:last-child {
	    border-right: none;
	}

	.site-nav__childlist-item a.site-nav__child-link--parent {
	    padding: 4px 0;
	}

	.site-nav__child-link--parent {
	    font-weight: 400;
	    margin: 4px 0;
	}

	@media only screen and (min-width: 990px) {
	    .site-nav__child-link--parent {
	        font-weight: 600;
	    }
	}

	.page-width {
	    padding-left: 15px;
	    padding-right: 15px;
	}

	@media only screen and (max-width: 749px) {
	    .page-width {
	        padding-left: 15px;
	        padding-right: 15px;
	    }
	}

	.page-container {
	    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -moz-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -o-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    position: relative;
	    overflow: hidden;
	    float: left;
	    width: 100%;
	    background-color: white;
	    -ms-transform: translate3d(0, 0, 0) !important;
	    -webkit-transform: translate3d(0, 0, 0) !important;
	    transform: translate3d(0, 0, 0) !important;
	}

	hr {
	    margin: 15px 0;
	    border: 0;
	    border-bottom: 1px solid #e8e9eb;
	}

	.hr--small {
	    padding: 10px 0;
	    margin: 0;
	}

	.hr--invisible {
	    border-bottom: 0;
	}

	.empty-page-content {
	    padding: 0;
	}

	@media only screen and (max-width: 749px) {
	    .empty-page-content {
	        padding-left: 15px;
	        padding-right: 15px;
	    }
	}

	.grid--table {
	    display: table;
	    table-layout: fixed;
	    width: 100%;
	}

	.grid--table>.grid__item {
	    float: none;
	    display: table-cell;
	    vertical-align: middle;
	}

	.grid--no-gutters {
	    margin-left: 0;
	}

	.grid--no-gutters .grid__item {
	    padding-left: 0;
	}

	.grid--half-gutters {
	    margin-left: -15px;
	}

	.grid--half-gutters>.grid__item {
	    padding-left: 15px;
	}

	.grid--double-gutters {
	    margin-left: -60px;
	}

	.grid--double-gutters>.grid__item {
	    padding-left: 60px;
	}

	.grid--flush-bottom {
	    margin-bottom: -55px;
	    overflow: auto;
	}

	.grid--flush-bottom>.grid__item {
	    margin-bottom: 55px;
	}

	/*============================================================================
  Animation Classes and Keyframes
==============================================================================*/
	.is-transitioning {
	    display: block !important;
	    visibility: visible !important;
	}

	@-webkit-keyframes spin {
	    0% {
	        -ms-transform: rotate(0deg);
	        -webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	    }

	    100% {
	        -ms-transform: rotate(360deg);
	        -webkit-transform: rotate(360deg);
	        transform: rotate(360deg);
	    }
	}

	@-moz-keyframes spin {
	    0% {
	        -ms-transform: rotate(0deg);
	        -webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	    }

	    100% {
	        -ms-transform: rotate(360deg);
	        -webkit-transform: rotate(360deg);
	        transform: rotate(360deg);
	    }
	}

	@-ms-keyframes spin {
	    0% {
	        -ms-transform: rotate(0deg);
	        -webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	    }

	    100% {
	        -ms-transform: rotate(360deg);
	        -webkit-transform: rotate(360deg);
	        transform: rotate(360deg);
	    }
	}

	@keyframes spin {
	    0% {
	        -ms-transform: rotate(0deg);
	        -webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	    }

	    100% {
	        -ms-transform: rotate(360deg);
	        -webkit-transform: rotate(360deg);
	        transform: rotate(360deg);
	    }
	}

	.drawer {
	    display: none;
	    position: absolute;
	    overflow: hidden;
	    -webkit-overflow-scrolling: touch;
	    z-index: 9;
	    background-color: white;
	    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    left: 0;
	}

	.drawer input[type="text"],
	.drawer textarea {
	    background-color: white;
	    color: black;
	}

	.js-drawer-open {
	    overflow: hidden;
	}

	.js-drawer-open-top .drawer--top {
	    -ms-transform: translateY(100%);
	    -webkit-transform: translateY(100%);
	    transform: translateY(100%);
	    display: block;
	}

	.drawer-page-content::after {
	    visibility: hidden;
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    content: '';
	    display: block;
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0, 0, 0.6);
	    z-index: 8;
	    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -moz-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -o-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	}

	.js-drawer-open .drawer-page-content::after {
	    visibility: visible;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.drawer__title,
	.drawer__close {
	    display: table-cell;
	    vertical-align: middle;
	}

	.drawer__close-button {
	    background: none;
	    border: 0 none;
	    position: relative;
	    right: -15px;
	    height: 100%;
	    width: 60px;
	    padding: 0 20px;
	    color: inherit;
	    font-size: 1.38462em;
	}

	.drawer__close-button:active,
	.drawer__close-button:focus {
	    background-color: rgba(0, 0, 0, 0.6);
	}

	.grid-view-item {
	    margin: 0;
	}

	.custom__item .grid-view-item {
	    margin-bottom: 0;
	}

	.grid-view-item__title {
	    margin: 0 0 7px 0 !important;
	    font-size: 12px !important;
	    line-height: 16px !important;
	    letter-spacing: 0.6px;
	    text-transform: capitalize;
	    font-weight: 400 !important;
	    -ms-transition: all 0.2s ease-in-out 0s;
	    -webkit-transition: all 0.2s ease-in-out 0s;
	    transition: all 0.2s ease-in-out 0s;
	    float: left;
	    width: 100%;
	}

	.grid-view-item__title a {
	    color: black;
	}

	.grid-view-item__title a:hover {
	    color: #6c9228;
	}

	@media only screen and (max-width: 749px) {
	    .grid-view-item__title {
	        margin: 0 0 10px 0;
	    }
	}

	span.product-price__price.original {
	    display: inline-block;
	    width: auto;
	    font-size: 12px;
	    font-weight: 500;
	    color: #bcbcbc;
	    line-height: 24px;
	    letter-spacing: 0.8px;
	    margin-right: 10px;
	}

	@media only screen and (max-width: 479px) {
	    span.product-price__price.original {
	        margin-right: 7px;
	    }
	}

	span.product-price__price.product-price__sale,
	span.product-price__price {
	    display: inline-block;
	    width: auto;
	    font-size: 12px;
	    line-height: 24px;
	    font-weight: 500;
	    color: #6c9228;
	}

	.grid-view-item__meta {
	    width: 100%;
	    float: left;
	}

	.grid-view-item__link {
	    display: block;
	}

	.grid-view-item__vendor {
	    margin: 3px 0 0;
	    color: #707070;
	    font-size: 11px;
	    text-transform: capitalize;
	    letter-spacing: 0.6px;
	}

	.grid-view-item__image-wrapper {
	    margin: 0 auto;
	    position: relative;
	    width: 100%;
	    max-width: 100% !important;
	    max-height: 100% !important;
	}

	.grid-view-item__image {
	    display: block;
	    margin: 0 auto;
	    width: 100%;
	}

	.grid-view-item__image-wrapper .grid-view-item__image {
	    position: absolute;
	    top: 0;
	    max-width: 100% !important;
	    max-height: 100% !important;
	}

	.grid-view-item--sold-out .grid-view-item__image {
	    opacity: 0.5;
	    -khtml-opacity: 0.5;
	    -webkit-opacity: 0.5;
	    -moz-opacity: 0.5;
	}

	.grid-view-item__image.lazyload {
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	}

	.ie9 .grid-view-item__image {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.list-view-item .sca-qv-button {
	    position: absolute !important;
	    top: 0;
	}

	.list-view-item {
	    margin-bottom: 30px;
	    border-bottom: 1px solid #e8e9eb;
	    padding-bottom: 25px;
	}

	.list-view-item:last-child {
	    margin-bottom: 0;
	    border-bottom: 0;
	}

	.list-view-item .product-detail-wrapper {
	    float: right;
	    width: 77%;
	}

	@media only screen and (max-width: 1439px) {
	    .list-view-item .product-detail-wrapper {
	        width: 69%;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .list-view-item .product-detail-wrapper {
	        width: 61%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .list-view-item .product-detail-wrapper {
	        width: 100%;
	        float: left;
	        margin: 20px 0 0;
	    }
	}

	.list-view-item .product_desc_trunc {
	    margin: 15px 0;
	    float: left;
	    width: 100%;
	}

	@media only screen and (max-width: 1269px) {
	    .list-view-item .product_desc_trunc {
	        margin: 10px 0;
	    }
	}

	.list-view-item .product-card .product-block-hover {
	    left: auto;
	    transform: none;
	    -webkit-transform: none;
	    -ms-transform: none;
	    -o-transform: none;
	    -moz-transform: none;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    bottom: 20px;
	}

	@media only screen and (max-width: 989px) {
	    .list-view-item .product-card .product-block-hover {
	        opacity: 1 !important;
	        -khtml-opacity: 1 !important;
	        -webkit-opacity: 1 !important;
	        -moz-opacity: 1 !important;
	    }
	}

	.list-view-item .product-card .product-block-hover .btn.add-to-cart,
	.list-view-item .product-card .product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded,
	.shopify-payment-button .list-view-item .product-card .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded,
	.list-view-item .product-card .product-block-hover a.selectoption-button {
	    width: 35px;
	    height: 35px;
	    padding: 8px;
	    display: inline-block !important;
	    vertical-align: middle;
	    box-sizing: border-box;
	    border-radius: 5px !important;
	    text-align: center;
	    line-height: 35px;
	    font-size: 0 !important;
	    background: #000;
	    color: #fff;
	    position: relative !important;
	    border: none;
	    z-index: 70999 !important;
	    float: none;
	}

	.list-view-item .product-card .product-block-hover .btn.add-to-cart:hover,
	.list-view-item .product-card .product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .list-view-item .product-card .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded:hover,
	.list-view-item .product-card .product-block-hover a.selectoption-button:hover {
	    background-color: #6c9228;
	}

	.list-view-item .product-card .product-block-hover .btn.add-to-cart:hover:before,
	.list-view-item .product-card .product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded:hover:before,
	.shopify-payment-button .list-view-item .product-card .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded:hover:before,
	.list-view-item .product-card .product-block-hover a.selectoption-button:hover:before {
	    color: black;
	}

	@media only screen and (max-width: 749px) {

	    .list-view-item .product-card .product-block-hover .btn.add-to-cart,
	    .list-view-item .product-card .product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .list-view-item .product-card .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded,
	    .list-view-item .product-card .product-block-hover a.selectoption-button {
	        left: 0;
	        padding: 7px 10px 3px;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .list-view-item .product-card .product-block-hover .btn.add-to-cart,
	    .list-view-item .product-card .product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .list-view-item .product-card .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded,
	    .list-view-item .product-card .product-block-hover a.selectoption-button {
	        font-size: 0;
	        padding: 0;
	        width: 30px;
	        height: 30px;
	        position: relative;
	    }
	}

	.list-view-item .product-card .product-block-hover form.cartableProduct {
	    float: left;
	    width: auto;
	}

	.list-view-item .shopify-product-quickshop-wrap {
	    width: 40px;
	    height: 40px;
	    left: 10px;
	}

	@media only screen and (max-width: 989px) {
	    .list-view-item .shopify-product-quickshop-wrap {
	        display: none !important;
	    }
	}

	.list-view-item .shopify-product-quickshop-wrap .shopify-product-quickshop-button {
	    width: 40px;
	    height: 40px;
	    border-radius: 50% !important;
	    -webkit-border-radius: 50% !important;
	    -khtml-border-radius: 50% !important;
	    -moz-border-radius: 50% !important;
	    background: #000 url(icon.png) no-repeat scroll 9px 12px;
	    font-size: 0;
	    box-shadow: none !important;
	    -moz-box-shadow: none !important;
	    -webkit-box-shadow: none !important;
	    background-color: #000 !important;
	    animation-duration: 0.4s;
	    transition: all 0.3s ease-in-out 0s;
	    -moz-transition: all 0.3s ease-in-out 0s;
	    -webkit-transition: all 0.3s ease-in-out 0s;
	    -o-transition: all 0.3s ease-in-out 0s;
	    -ms-transition: all 0.3s ease-in-out 0s;
	}

	.list-view-item .shopify-product-quickshop-wrap .shopify-product-quickshop-button:hover {
	    background-color: #6c9228 !important;
	    border-radius: 50%;
	}

	.list-view-item .shopify-product-quickshop-wrap .shopify-product-quickshop-button:before {
	    content: "";
	    display: none;
	}

	.list-view-item:hover .product-block-hover {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.list-view-item__link {
	    display: table;
	    table-layout: fixed;
	    width: 100%;
	}

	.list-view-item__link:hover .product-block-hover {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    transform: translateX(0px);
	    -webkit-transform: translateX(0px);
	    -ms-transform: translateX(0px);
	    -o-transform: translateX(0px);
	    -moz-transform: translateX(0px);
	}

	@media only screen and (max-width: 749px) {
	    .list-view-item__link:hover .product-block-hover {
	        transform: none;
	    }
	}

	.list-view-item__link.sca-qv-image .sca-qv-button {
	    position: absolute !important;
	}

	.list-view-item__image-column {
	    margin-right: 30px;
	    width: 20%;
	    float: left;
	    overflow: hidden;
	}

	@media only screen and (max-width: 1439px) {
	    .list-view-item__image-column {
	        width: 27%;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .list-view-item__image-column {
	        width: 33%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .list-view-item__image-column {
	        text-align: center;
	        margin-right: 0;
	    }
	}

	.list-view-item__image-wrapper {
	    position: relative;
	}

	.list-view-item__image-wrapper .product-price__sale-label,
	.list-view-item__image-wrapper .grid-product__on-sale {
	    right: 10px;
	    top: 10px;
	    left: auto;
	}

	.list-view-item__review-column {
	    float: left;
	    width: 100%;
	    margin: 15px 0;
	}

	@media only screen and (max-width: 1269px) {
	    .list-view-item__review-column {
	        margin: 10px 0;
	    }
	}

	.list-view-item__review-column .spr-badge-starrating {
	    margin: 0 20px 0 0 !important;
	    display: inline-block;
	    vertical-align: top;
	}

	.list-view-item__review-column .spr-icon.spr-icon-star,
	.list-view-item__review-column .spr-icon.spr-icon-star-empty {
	    font-size: 13px !important;
	    width: 20px;
	}

	.list-view-item__title-column {
	    width: 77%;
	    float: right;
	}

	.list-view-item__title-column .description-text {
	    margin-top: 15px;
	}

	.product-detail-wrapper .list-view-item__title-column {
	    display: table-cell;
	    vertical-align: middle;
	    float: left;
	}

	.list-view-item__title {
	    color: black;
	    font-size: 13px;
	    line-height: 24px;
	    font-weight: 500;
	    letter-spacing: 0.6px;
	    text-transform: capitalize;
	}

	.list-view-item__sold-out {
	    font-size: 0.92308em;
	}

	.list-view-item__on-sale {
	    color: black;
	    font-size: 0.92308em;
	}

	@media only screen and (max-width: 749px) {
	    .list-view-item__on-sale {
	        display: none;
	    }
	}

	.list-view-item__vendor-column {
	    display: inline-block;
	    vertical-align: middle;
	    width: 100%;
	    float: left;
	    display: block !important;
	}

	.list-view-item__vendor {
	    font-size: 11px;
	    text-transform: capitalize;
	    letter-spacing: 0.6px;
	    color: #707070;
	}

	.list-view-item__price-column {
	    display: inline-block;
	    text-align: left;
	    vertical-align: middle;
	    width: 100%;
	}

	@media only screen and (max-width: 749px) {
	    .list-view-item__price-column {
	        font-size: 0.92308em;
	    }
	}

	.list-view-item__price-column .price__vendor,
	.list-view-item__price-column .price-item__label {
	    display: none;
	}

	.list-view-item__price {
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	}

	.list-view-item__price--reg {
	    color: black;
	}

	@media only screen and (max-width: 749px) {
	    .list-view-item__price--reg {
	        display: block;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .list-view-item__price--sale {
	        display: block;
	    }
	}

	/*============================================================================
  Slick slider overrides
==============================================================================*/
	.slick-dotted.slick-slider {
	    margin-bottom: 0;
	}

	/*================ Slick dots and prev/next pagination ================*/
	.slick-slider .slick-dots {
	    margin: 0;
	    width: auto;
	}

	.slick-slider .slick-dots li {
	    margin: 0;
	    vertical-align: middle;
	    width: 10px;
	    height: 10px;
	    margin-left: 6px;
	}

	.slick-slider .slick-dots li:first-of-type {
	    margin-left: 0;
	}

	@media only screen and (min-width: 750px) {
	    .slick-slider .slick-dots li {
	        width: 12px;
	        height: 12px;
	        margin-left: 8px;
	    }
	}

	.slick-slider .slick-dots li button {
	    position: relative;
	    padding: 0;
	    width: 10px;
	    height: 10px;
	}

	@media only screen and (min-width: 750px) {
	    .slick-slider .slick-dots li button {
	        width: 12px;
	        height: 12px;
	    }
	}

	.slick-slider .slick-dots li button::before {
	    text-indent: -9999px;
	    background-color: transparent;
	    border-radius: 100%;
	    -webkit-border-radius: 100%;
	    -khtml-border-radius: 100%;
	    -moz-border-radius: 100%;
	    background-color: currentColor;
	    width: 10px;
	    height: 10px;
	    opacity: 0.4;
	    -khtml-opacity: 0.4;
	    -webkit-opacity: 0.4;
	    -moz-opacity: 0.4;
	    -ms-transition: all 0.2s;
	    -webkit-transition: all 0.2s;
	    transition: all 0.2s;
	}

	@media only screen and (min-width: 750px) {
	    .slick-slider .slick-dots li button::before {
	        width: 12px;
	        height: 12px;
	    }
	}

	.slick-slider .slick-dots li.slick-active button::before {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.slick-slider .slick-dots li button:active::before {
	    opacity: 0.7;
	    -khtml-opacity: 0.7;
	    -webkit-opacity: 0.7;
	    -moz-opacity: 0.7;
	}

	/*================ Index sections ================*/
	.index-section {
	    padding-top: 15px;
	    padding-bottom: 15px;
	    float: left;
	    width: 100%;
	}

	@media only screen and (min-width: 750px) {
	    .index-section {
	        padding-top: 30px;
	        padding-bottom: 30px;
	    }
	}

	.index-section:first-child {
	    padding-top: 0;
	    border-top: 0;
	}

	.index-section:last-child {
	    padding-bottom: 0;
	}

	.index-section--flush+.index-section--flush {
	    margin-top: -70px;
	}

	@media only screen and (min-width: 750px) {
	    [class*="index-section--flush"]+[class*="index-section--flush"] {
	        margin-top: -110px;
	    }
	}

	.index-section--flush:first-child {
	    margin-top: -35px;
	}

	@media only screen and (min-width: 750px) {
	    [class*="index-section--flush"]:first-child {
	        margin-top: -55px;
	    }
	}

	.index-section--flush:last-child {
	    margin-bottom: -35px;
	}

	@media only screen and (min-width: 750px) {
	    [class*="index-section--flush"]:last-child {
	        margin-bottom: -55px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .index-section--featured-product:first-child {
	        margin-top: -12px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .index-section--slideshow+.index-section--flush {
	        margin-top: 0.4rem;
	    }
	}

	.placeholder-svg {
	    display: block;
	    fill: rgba(112, 112, 112, 0.35);
	    background-color: rgba(112, 112, 112, 0.1);
	    width: 100%;
	    height: 100%;
	    max-width: 100%;
	    max-height: 100%;
	    border: 1px solid rgba(112, 112, 112, 0.2);
	}

	.placeholder-noblocks {
	    padding: 40px;
	    text-align: center;
	}

	.placeholder-background {
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	}

	.placeholder-background .icon {
	    border: 0;
	}

	.image-bar__content .placeholder-svg {
	    position: absolute;
	    top: 0;
	    left: 0;
	}

	/*================ TEMPLATES ================*/
	/*============= Templates | Password =============*/
	.password-page {
	    display: table;
	    height: 100%;
	    width: 100%;
	    color: #707070;
	    background-color: white;
	    background-size: cover;
	}

	.password-form-message {
	    max-width: 500px;
	    margin-left: auto;
	    margin-right: auto;
	}

	.password-header {
	    height: 85px;
	    display: table-row;
	}

	.password-header__inner {
	    display: table-cell;
	    vertical-align: middle;
	}

	.password-login {
	    padding: 0 30px;
	    text-align: right;
	}

	.password-logo .logo {
	    color: black;
	    max-width: 100%;
	}

	.password-content {
	    text-align: center;
	}

	.password-content--rte {
	    margin-bottom: 35px;
	}

	.password-content__title {
	    display: block;
	    margin-bottom: 22.5px;
	}

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

	.password-main__inner {
	    display: table-cell;
	    vertical-align: middle;
	    padding: 7.5px 15px;
	}

	.password-message {
	    max-width: 500px;
	    margin: 22.5px auto 7.5px;
	}

	.password__form-heading {
	    margin-bottom: 15px;
	}

	.password-powered-by {
	    margin-top: 22.5px;
	}

	.password-social-sharing {
	    margin-top: 22.5px;
	}

	.product-single {
	    overflow-anchor: none;
	}

	.product-single__title {
	    margin-bottom: 0;
	}

	.product__price,
	.featured-product__price {
	    font-size: 1.25em;
	}

	.product__policies {
	    margin: 0.4rem 0 1rem 0;
	    font-size: 0.92308em;
	}

	/*================ Add to cart form ================*/
	.product-form {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -ms-flex-align: end;
	    -webkit-align-items: flex-end;
	    -moz-align-items: flex-end;
	    -ms-align-items: flex-end;
	    -o-align-items: flex-end;
	    align-items: flex-end;
	    width: auto;
	}

	.product-form--payment-button-no-variants {
	    max-width: 100%;
	}

	.product-form__item {
	    margin-bottom: 10px;
	    padding: 0 5px;
	}

	.product-form__item label {
	    display: block;
	}

	.product-form--hide-variant-labels .product-form__item label {
	    position: absolute !important;
	    overflow: hidden;
	    clip: rect(0 0 0 0);
	    height: 1px;
	    width: 1px;
	    margin: -1px;
	    padding: 0;
	    border: 0;
	}

	.product-form__item--submit {
	    -webkit-flex: 1 1 300px;
	    -moz-flex: 1 1 300px;
	    -ms-flex: 1 1 300px;
	    flex: 1 1 300px;
	}

	.product-form__item--no-variants {
	    max-width: 100%;
	}

	.product-form__item--payment-button {
	    -ms-flex-preferred-size: 100%;
	    -webkit-flex-basis: 100%;
	    -moz-flex-basis: 100%;
	    flex-basis: 100%;
	}

	@media only screen and (min-width: 990px) {

	    .product-single--small-image .product-form__item--payment-button,
	    .product-single--full-image .product-form__item--payment-button {
	        display: inline-flex;
	        -webkit-flex-direction: row;
	        -moz-flex-direction: row;
	        -ms-flex-direction: row;
	        flex-direction: row;
	        -ms-flex-align: start;
	        -webkit-align-items: flex-start;
	        -moz-align-items: flex-start;
	        -ms-align-items: flex-start;
	        -o-align-items: flex-start;
	        align-items: flex-start;
	    }
	}

	.product-form__item--payment-button.product-form__item--no-variants {
	    -webkit-flex-direction: column;
	    -moz-flex-direction: column;
	    -ms-flex-direction: column;
	    flex-direction: column;
	    -ms-flex-align: stretch;
	    -webkit-align-items: stretch;
	    -moz-align-items: stretch;
	    -ms-align-items: stretch;
	    -o-align-items: stretch;
	    align-items: stretch;
	}

	.product-form__variants {
	    display: none;
	}

	.no-js .product-form__variants {
	    display: block;
	}

	.product-form__item--quantity {
	    -webkit-flex: 0 0 100px;
	    -moz-flex: 0 0 100px;
	    -ms-flex: 0 0 100px;
	    flex: 0 0 100px;
	}

	.product-form__input {
	    display: block;
	    width: 100%;
	}

	.product-form__cart-submit,
	.shopify-payment-button .shopify-payment-button__button--unbranded {
	    display: inline-block;
	    vertical-align: top;
	    width: auto;
	    padding: 8px 30px 8px 30px !important;
	    white-space: normal;
	    margin-top: 0px;
	    border: none;
	    background-color: #6c9228 !important;
	    color: black !important;
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	    font-size: 14px;
	}

	.product-form__cart-submit:hover,
	.shopify-payment-button .shopify-payment-button__button--unbranded:hover {
	    background-color: #000 !important;
	    color: white !important;
	}

	.product-single--small-image .product-form__cart-submit,
	.product-single--full-image .product-form__cart-submit,
	.product-single--small-image .shopify-payment-button .shopify-payment-button__button--unbranded,
	.product-single--full-image .shopify-payment-button .shopify-payment-button__button--unbranded {
	    -webkit-flex: 50%;
	    -moz-flex: 50%;
	    -ms-flex: 50%;
	    flex: 50%;
	    margin-right: 10px;
	}

	.product-form__item--payment-button .product-form__cart-submit,
	.product-form__item--payment-button .shopify-payment-button .shopify-payment-button__button--unbranded {
	    margin-top: 0;
	}

	@media only screen and (max-width: 1439px) {

	    .product-form__cart-submit,
	    .shopify-payment-button .shopify-payment-button__button--unbranded {
	        padding: 12px 20px 8px 20px !important;
	    }
	}

	@media only screen and (max-width: 749px) {

	    .product-form__cart-submit,
	    .shopify-payment-button .shopify-payment-button__button--unbranded {
	        float: left;
	    }
	}

	.shopify-payment-button {
	    display: inline-block;
	    vertical-align: top;
	}

	.product-single--small-image .shopify-payment-button,
	.product-single--full-image .shopify-payment-button {
	    -webkit-flex: 50%;
	    -moz-flex: 50%;
	    -ms-flex: 50%;
	    flex: 50%;
	}

	.shopify-payment-button .shopify-payment-button__button {
	    margin-top: 10px;
	    padding-right: 40px;
	    padding-left: 40px;
	    padding-top: 12px;
	    padding-bottom: 8px;
	    font-size: 14px;
	}

	.product-single--small-image .shopify-payment-button .shopify-payment-button__button,
	.product-single--full-image .shopify-payment-button .shopify-payment-button__button {
	    margin-top: 10px;
	}

	@media only screen and (max-width: 1439px) {
	    .shopify-payment-button .shopify-payment-button__button {
	        padding-left: 25px;
	        padding-right: 25px;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .shopify-payment-button .shopify-payment-button__button {
	        margin-top: 0;
	    }
	}

	.shopify-payment-button .shopify-payment-button__button--unbranded {
	    margin-bottom: 10px;
	    margin-left: 5px;
	}

	.shopify-payment-button .shopify-payment-button__button--unbranded:hover {
	    background-color: #000 !important;
	    color: white !important;
	}

	@media only screen and (max-width: 749px) {
	    .shopify-payment-button .shopify-payment-button__button--unbranded {
	        margin-top: 0;
	        margin-left: 5px;
	    }
	}

	.shopify-payment-button .shopify-payment-button__button--branded {
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	    overflow: hidden;
	}

	.shopify-payment-button .shopify-payment-button__more-options {
	    height: 0;
	}

	.shopify-payment-button .shopify-payment-button__more-options:hover,
	.shopify-payment-button .shopify-payment-button__more-options:focus {
	    opacity: 0.6;
	}

	@media only screen and (max-width: 749px) {
	    .shopify-payment-button {
	        float: left;
	        width: 50%;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .product-form__cart-submit--small {
	        max-width: 300px;
	    }
	}

	.product-single__description {
	    margin-top: 30px;
	}

	.product__quantity-error .icon {
	    margin-right: 1rem;
	}

	/*================ Product Images ================*/
	.product-single__thumbnail {
	    display: block;
	    margin: 0;
	    min-height: 44px;
	}

	@media only screen and (max-width: 479px) {
	    .product-single__thumbnail {
	        margin: 0;
	    }
	}

	.product-featured-img {
	    display: block;
	    margin: 0 auto;
	    position: absolute;
	    top: 0;
	    width: 100%;
	}

	.no-js .product-featured-img {
	    position: relative;
	}

	.zoomImg {
	    background-color: white;
	}

	@media only screen and (min-width: 750px) {
	    .product-single__thumbnails {
	        margin-top: 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .product-single__photos {
	        margin-bottom: 30px;
	    }

	    .product-single__photo--has-thumbnails {
	        margin-bottom: 30px;
	    }
	}

	.product-single__photos--full {
	    margin-bottom: 30px;
	}

	.product-single__photo-wrapper {
	    margin: 0 auto;
	    width: 100%;
	    max-width: 100% !important;
	    max-height: 100% !important;
	}

	.product-single__photo {
	    margin: 0 auto;
	    min-height: 1px;
	    width: 100%;
	    height: 100%;
	    position: relative;
	    padding-bottom: 4px;
	}

	@media only screen and (max-width: 749px) {

	    .thumbnails-slider--active .product-single__thumbnails.slick-initialized,
	    .ie9 .thumbnails-slider--active .product-single__thumbnails {
	        display: block;
	        margin: 0 auto;
	        max-width: 75%;
	    }

	    .product-single__photos {
	        position: relative;
	    }

	    .thumbnails-slider__btn {
	        position: absolute;
	        top: 50%;
	        -ms-transform: translateY(-50%);
	        -webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	    }

	    .thumbnails-slider__prev {
	        left: -20px;
	    }

	    .thumbnails-slider__next {
	        right: -20px;
	    }

	    .product-single__thumbnails-item {
	        display: inline-block;
	        padding-bottom: 10px;
	        width: 72px;
	        float: none;
	        vertical-align: middle;
	    }

	    .slick-slider .product-single__thumbnails-item {
	        float: left;
	    }

	    .thumbnails-slider--active .product-single__thumbnails-item {
	        padding: 5px 0;
	    }
	}

	/*================ Template | Collections ================*/
	.collection-hero {
	    position: relative;
	    overflow: hidden;
	    margin-top: -15px;
	    margin-bottom: 15px;
	}

	@media only screen and (min-width: 750px) {
	    .collection-hero {
	        margin-bottom: 35px;
	    }
	}

	.collection-description {
	    margin-bottom: 15px;
	    margin-top: 15px;
	}

	@media only screen and (min-width: 750px) {
	    .collection-description {
	        margin-bottom: 35px;
	        margin-top: 35px;
	    }
	}

	.collection-hero__image {
	    background-position: 50% 50%;
	    background-repeat: no-repeat;
	    background-size: cover;
	    height: 300px;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.collection-hero__title-wrapper::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    background-color: #3d4246;
	    opacity: 0;
	}

	.collection-hero__title {
	    position: absolute;
	    color: white;
	    width: 100%;
	    text-align: center;
	    left: 0;
	    right: 0;
	    top: 50%;
	    -ms-transform: translateY(-50%);
	    -webkit-transform: translateY(-50%);
	    transform: translateY(-50%);
	}

	@media only screen and (min-width: 750px) {
	    .collection-hero__title {
	        font-size: 2.46154em;
	    }
	}

	.template-blog .social-sharing {
	    margin-bottom: 17.5px;
	}

	.blog-list-view .pagination {
	    padding-top: 0;
	}

	.blog-filter {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -ms-flex-align: center;
	    -webkit-align-items: center;
	    -moz-align-items: center;
	    -ms-align-items: center;
	    -o-align-items: center;
	    align-items: center;
	    -webkit-justify-content: center;
	    -ms-justify-content: center;
	    justify-content: center;
	}

	.blog-filter .icon-chevron-down {
	    fill: black;
	    width: calc(10em / 16);
	    height: calc(10em / 16);
	    right: 1rem;
	}

	.blog-filter__label {
	    margin: 0 1rem 0 0;
	}

	/*================ Cart page ================*/
	.cart {
	    margin: 0 -15px;
	}

	.cart th,
	.cart td {
	    border: 0;
	}

	.cart td {
	    padding: 15px 0;
	}

	.cart th {
	    font-weight: 600;
	    padding: 7.5px 0;
	    color: black;
	}

	.cart .cart__meta {
	    padding-right: 15px;
	}

	.cart__meta-text {
	    padding: 5px 0;
	    font-size: 0.84615em;
	    font-style: italic;
	}

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

	.cart__qty-input {
	    text-align: center;
	    width: 60px;
	    padding-left: 5px;
	    padding-right: 5px;
	    font-size: 11px;
	}

	@media only screen and (max-width: 749px) {
	    .cart__qty-input {
	        padding-top: 2px;
	        padding-bottom: 2px;
	    }
	}

	.cart__edit {
	    margin-top: 10px;
	}

	.cart__edit--active .cart__edit-text--cancel {
	    display: none;
	}

	.cart__edit-text--edit {
	    display: none;
	}

	.cart__edit--active .cart__edit-text--edit {
	    display: block;
	}

	.cart__edit-text--cancel,
	.cart__edit-text--edit {
	    pointer-events: none;
	}

	.cart__row p {
	    margin-bottom: 0;
	}

	.cart__row p+p {
	    margin-top: 10px;
	}

	.cart__row.cart__update--show {
	    border-bottom: 0;
	}

	.cart__subtotal-title {
	    font-size: 1.15385em;
	}

	.cart__subtotal {
	    padding-left: 7.5px;
	}

	@media only screen and (min-width: 750px) {
	    .cart__subtotal {
	        padding-left: 15px;
	        min-width: 150px;
	        display: inline-block;
	    }
	}

	.cart__savings {
	    padding-top: 18px;
	}

	.cart__savings-amount {
	    padding-left: 7.5px;
	}

	@media only screen and (min-width: 750px) {
	    .cart__savings-amount {
	        padding-left: 15px;
	        min-width: 150px;
	        display: inline-block;
	    }
	}

	.cart__footer {
	    padding: 35px 0;
	    border-top: 1px solid #e8e9eb;
	}

	.cart__footer .cart__subtotal-title {
	    font-weight: 600;
	    font-size: 13px;
	    color: black;
	}

	.cart__footer .btn.btn--small-wide,
	.cart__footer .shopify-payment-button .btn--small-wide.shopify-payment-button__button--unbranded,
	.shopify-payment-button .cart__footer .btn--small-wide.shopify-payment-button__button--unbranded {
	    background-color: #6c9228;
	    color: black;
	}

	.cart__footer .btn.btn--small-wide:hover,
	.cart__footer .shopify-payment-button .btn--small-wide.shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .cart__footer .btn--small-wide.shopify-payment-button__button--unbranded:hover {
	    background-color: #000;
	    color: white;
	}

	.cart__submit-controls {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -ms-flex-align: start;
	    -webkit-align-items: flex-start;
	    -moz-align-items: flex-start;
	    -ms-align-items: flex-start;
	    -o-align-items: flex-start;
	    align-items: flex-start;
	    -webkit-justify-content: flex-end;
	    -ms-justify-content: flex-end;
	    justify-content: flex-end;
	}

	.cart__submit-controls>.cart__submit-control {
	    margin-left: 10px;
	    margin-bottom: 10px;
	    margin-right: 0;
	    line-height: 24px;
	}

	@media only screen and (max-width: 749px) {
	    .cart__submit-controls {
	        -webkit-justify-content: center;
	        -ms-justify-content: center;
	        justify-content: center;
	    }

	    .cart__submit-controls .cart__submit {
	        margin-left: 0;
	        margin-bottom: 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .cart__submit {
	        line-height: 1.4;
	        min-height: 44px;
	        margin-left: 0;
	        margin-bottom: 0;
	    }
	}

	@media only screen and (max-width: 500px) {
	    .cart__submit {
	        width: 100%;
	    }
	}

	.cart__update--large {
	    margin-right: 10px;
	}

	.cart__continue--large {
	    margin-right: 10px;
	}

	.cart__continue {
	    line-height: 1.2;
	}

	.cart__shipping {
	    font-style: italic;
	    font-size: 1em;
	    padding: 18px 0 20px;
	}

	.cart-note__label,
	.cart-note__input {
	    display: block;
	}

	@media only screen and (max-width: 749px) {

	    .cart-note__label,
	    .cart-note__input {
	        margin: 0 auto;
	    }
	}

	.cart-note__label {
	    margin-bottom: 15px;
	}

	.cart-note__input {
	    min-height: 50px;
	    width: 100%;
	}

	@media only screen and (max-width: 749px) {
	    .cart-note__input {
	        margin-bottom: 40px;
	    }
	}

	.cart__image {
	    max-height: 95px;
	}

	.cart__image-wrapper div {
	    display: block;
	    padding-right: 17.5px;
	}

	@media only screen and (min-width: 750px) {
	    .cart__image-wrapper div {
	        padding-right: 35px;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .cart__image-wrapper {
	        width: 130px;
	    }

	    .cart__meta {
	        max-width: 300px;
	    }

	    .cart__remove {
	        margin-top: 4px;
	        font-size: 13px;
	    }

	    .cart__qty {
	        text-align: center;
	    }
	}

	@media only screen and (max-width: 749px) {

	    .cart__remove,
	    .cart__qty,
	    .cart__update {
	        width: 30%;
	        float: left;
	    }

	    .cart__update-wrapper {
	        display: none;
	        padding-top: 0;
	        padding-bottom: 15px;
	    }

	    .cart__update--show td {
	        padding-bottom: 10px;
	    }

	    .cart__update--show+tr {
	        display: table-row;
	    }

	    .cart__row-price {
	        text-align: right;
	    }

	    .cart__update-controls {
	        display: -webkit-flex;
	        display: -ms-flexbox;
	        display: flex;
	        width: 100%;
	        -webkit-flex-wrap: wrap;
	        -moz-flex-wrap: wrap;
	        -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	        -ms-flex-align: center;
	        -webkit-align-items: center;
	        -moz-align-items: center;
	        -ms-align-items: center;
	        -o-align-items: center;
	        align-items: center;
	        -webkit-justify-content: space-between;
	        -ms-justify-content: space-between;
	        justify-content: space-between;
	    }

	    .cart-flex {
	        display: -webkit-flex;
	        display: -ms-flexbox;
	        display: flex;
	        width: 100%;
	        -webkit-flex-wrap: wrap;
	        -moz-flex-wrap: wrap;
	        -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	        -ms-flex-align: center;
	        -webkit-align-items: center;
	        -moz-align-items: center;
	        -ms-align-items: center;
	        -o-align-items: center;
	        align-items: center;
	    }

	    .cart-flex-item {
	        display: block;
	        min-width: 0;
	        -webkit-flex: 1 1 100%;
	        -moz-flex: 1 1 100%;
	        -ms-flex: 1 1 100%;
	        flex: 1 1 100%;
	    }

	    .cart__image-wrapper {
	        -webkit-flex: 0 0 85px;
	        -moz-flex: 0 0 85px;
	        -ms-flex: 0 0 85px;
	        flex: 0 0 85px;
	    }

	    .cart__price-wrapper {
	        width: 24%;
	        text-align: right;
	    }

	    .cart-message {
	        padding-top: 20px;
	    }

	    .cart__qty {
	        padding: 0 30px;
	    }

	    .cart__qty-label {
	        position: inherit !important;
	        overflow: auto;
	        clip: auto;
	        width: auto;
	        height: auto;
	        margin: 0;
	        display: inline-block;
	        vertical-align: middle;
	        font-size: 1em;
	        margin-right: 5px;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .cart__remove,
	    .cart__update {
	        padding: 10px;
	        width: 33.33%;
	    }

	    .cart__qty {
	        padding: 0 10px;
	    }
	}

	.cart--no-cookies .cart__continue-btn {
	    display: none;
	}

	.cart--no-cookies .cart--empty-message {
	    display: none;
	}

	.cookie-message {
	    display: none;
	    padding-bottom: 25px;
	}

	.cart--no-cookies .cookie-message {
	    display: block;
	}

	.additional-checkout-buttons {
	    margin-top: 15px;
	}

	.additional-checkout-buttons input[type="image"] {
	    padding: 0;
	    border: 0;
	    background: transparent;
	}

	/*================ MODULES ================*/
	.site-header {
	    position: relative;
	    padding: 0;
	    width: 100%;
	    float: left;
	}

	.announcement-bar {
	    text-align: center;
	    position: relative;
	    padding: 10px 0;
	    z-index: 10;
	}

	.announcement-bar--link {
	    display: block;
	}

	.announcement-bar--link:hover {
	    background-color: #fff !important;
	}

	.announcement-bar__message {
	    display: block;
	    font-weight: 400;
	    letter-spacing: 1px;
	    font-size: 13px;
	    line-height: 20px;
	    text-transform: capitalize;
	}

	.logo-align--center .site-header__logo {
	    text-align: center;
	    margin: 0 auto;
	}

	.site-header__logo-link {
	    display: inline-block;
	    word-break: break-word;
	}

	.site-header__logo-image {
	    display: block;
	}

	@media only screen and (min-width: 750px) {
	    .site-header__logo-image {
	        margin: 0 auto;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-header__logo-image {
	        margin: 0 auto !important;
	        width: 130px !important;
	    }
	}



	.site-header__logo-image--centered img {
	    margin: 0 auto;
	}

	@media only screen and (min-width: 750px) {
	    .logo-align--center .site-header__logo-link {
	        margin: 0 auto;
	    }
	}

	@media only screen and (max-width: 749px) {

	    .site-header__icons .btn--link,
	    .site-header__icons .site-header__cart {
	        font-size: 1em;
	    }
	}

	.site-header__icons {
	    position: relative;
	    white-space: nowrap;
	}

	@media only screen and (max-width: 749px) {
	    .site-header__icons {
	        width: auto;
	    }
	}

	.site-header__icons-wrapper {
	    position: relative;
	}

	@media only screen and (max-width: 989px) {
	    .site-header__icons-wrapper {
	        position: static;
	        float: right;
	        text-align: center;
	        width: auto;
	        padding: 14px 0px 13px 15px;
	    }
	}

	.site-header__cart,
	.site-header__search,
	.site-header__account {
	    position: relative;
	}

	.site-header__search {
	    padding-right: 0;
	}

	.site-header__icons--plus .site-header__search {
	    padding-right: 0;
	}

	.site-header__search:hover .search-header {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    visibility: visible;
	    -ms-transform: translateY(0px);
	    -webkit-transform: translateY(0px);
	    transform: translateY(0px);
	}

	.site-header__account {
	    position: relative;
	    color: black;
	    letter-spacing: 1px;
	    line-height: 24px;
	    display: block;
	    text-align: center;
	}

	.site-header__account .icon__fallback-text {
	    overflow: visible !important;
	    position: relative !important;
	}

	.site-header__cart-title,
	.site-header__search-title {
	    display: block;
	    vertical-align: middle;
	    position: absolute !important;
	    overflow: hidden;
	    clip: rect(0 0 0 0);
	    height: 1px;
	    width: 1px;
	    margin: -1px;
	    padding: 0;
	    border: 0;
	}

	.site-header__cart-title {
	    margin-right: 3px;
	}

	.site-header__cart-count {
	    color: #fff;
	    width: 22px;
	    height: 22px;
	    position: absolute;
	    text-align: center;
	    right: auto;
	    top: -8px;
	    left: 15px;
	    bottom: auto;
	    background-color: #0f776d;
	    border-radius: 50%;
	    -webkit-border-radius: 50%;
	    -khtml-border-radius: 50%;
	    -moz-border-radius: 50%;
	}

	.site-header__cart-count span {
	    display: inline-block;
	    vertical-align: middle;
	    font-weight: 600;
	    font-size: 12px;
	    letter-spacing: 0.8px;
	    position: relative;
	    bottom: 0px;
	    left: 0;
	    top: -2px;
	    right: 0;
	}

	@media only screen and (max-width: 479px) {
	    .site-header__cart-count {
	        top: -10px;
	    }
	}

	.search-header,
	.header-search-btn,
	.search-header__submit {
	    cursor: pointer;
	}

	.site-header__menu {
	    display: none;
	}

	@media only screen and (max-width: 989px) {
	    .site-header__menu {
	        display: block;
	        float: left;
	        margin: 0;
	        position: relative;
	        padding: 0;
	    }
	}

	.site-header__icon svg {
	    height: 20px;
	    width: 25px;
	}

	@media only screen and (max-width: 989px) {
	    .site-header__icon svg {
	        color: black;
	        height: 22px;
	        width: 22px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .site-header__icon svg {
	        height: 21px;
	        width: 21px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .site-header__icons {
	        padding-right: 15px;
	    }

	    .site-header__icon.small--hide {
	        display: none !important;
	    }

	    .site-header__icon.medium-up--hide {
	        display: block !important;
	        float: left;
	        position: relative;
	        padding: 14px 15px 13px 20px;
	    }

	    .site-header__logo img {
	        margin: 0;
	    }
	}

	@media only screen and (max-width: 989px) and (max-width: 749px) {
	    .site-header__icon.medium-up--hide {
	        padding: 14px 0px 13px 0px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-header__icon.medium-up--hide {
	        float: right;
	    }
	}

	.article--listing {
	    padding-top: 15px;
	    margin-bottom: 15px;
	}

	@media only screen and (max-width: 749px) {
	    .article__title--has-image {
	        padding-left: 15px;
	    }
	}

	.article__tags {
	    margin-bottom: 27.5px;
	}

	.article__tags--list {
	    font-style: italic;
	}

	.article__link {
	    display: block;
	}

	@media only screen and (max-width: 749px) {
	    .article__link {
	        display: -webkit-flex;
	        display: -ms-flexbox;
	        display: flex;
	        width: 100%;
	        -webkit-flex-direction: column;
	        -moz-flex-direction: column;
	        -ms-flex-direction: column;
	        flex-direction: column;
	    }
	}

	.article__link:not([disabled]):hover .article__grid-image-wrapper::before,
	.article__link:focus .article__grid-image-wrapper::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    background-color: #3d4246;
	    opacity: 0;
	    z-index: 1;
	}

	.article__meta-buttons li+li {
	    margin-left: 10px;
	}

	@media only screen and (max-width: 479px) {
	    .article__meta-buttons li+li {
	        margin-left: 5px;
	    }
	}

	.article__comment-count {
	    border-color: transparent;
	    text-decoration: underline;
	}

	.article__comment-count:not([disabled]):hover,
	.article__comment-count:focus {
	    border-color: transparent;
	}

	/*============================================================================
  Blog article full
==============================================================================*/
	.template-article .article__list-image {
	    position: relative;
	}

	.template-article .section-header {
	    margin-bottom: 20px;
	    border-bottom: none;
	}

	.template-article .section-header>h1,
	.template-article .section-header>.h1 {
	    margin-bottom: 10px;
	    text-align: left;
	}

	@media only screen and (max-width: 479px) {

	    .template-article .section-header>h1,
	    .template-article .section-header>.h1 {
	        font-size: 17px;
	    }
	}

	.template-article .section-header .article__author {
	    padding-right: 10px;
	    border-right: 1px solid #e8e9eb;
	    margin-right: 10px;
	}

	.template-article .article__author,
	.template-article .article__date {
	    text-transform: capitalize;
	}

	.template-article .rte {
	    width: 100%;
	    float: left;
	    margin-top: 20px;
	}

	.template-article .social-sharing {
	    margin-bottom: 20px;
	}

	/*============================================================================
  Blog article grid
==============================================================================*/
	.blog-container {
	    float: left;
	    width: 100%;
	    margin: 0;
	}

	.blog-container .section-header {
	    padding-bottom: 12px;
	}

	.blog-container .section-header h2,
	.blog-container .section-header .h2 {
	    letter-spacing: 0.2px;
	}

	@media only screen and (max-width: 749px) {
	    .blog-container .section-header {
	        margin-bottom: 15px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .blog-container .section-header {
	        padding-bottom: 0;
	    }
	}

	.blog {
	    width: 100%;
	    float: left;
	    position: relative;
	}

	.blog .sub-heading span {
	    font-size: 11px;
	    font-weight: 300;
	    font-style: italic;
	    line-height: 22px;
	    letter-spacing: 0.8px;
	    color: #707070;
	}

	.blog .blog-block {
	    margin: 0;
	}

	@media only screen and (max-width: 1269px) {
	    .blog .blog-block {
	        margin: 0;
	    }
	}

	.blog .blog-block li.grid__item.blog-item {
	    padding: 0;
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item {
	    float: left;
	    width: 100%;
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__link {
	    overflow: hidden;
	    position: relative;
	    display: block;
	    width: auto;
	    display: inline-block;
	    vertical-align: middle;
	}

	@media only screen and (max-width: 1439px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__link {
	        width: 34%;
	        float: left;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__link {
	        width: 50%;
	    }
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__link .article__grid-image-wrapper {
	    margin: 0 auto;
	}

	@media only screen and (max-width: 1269px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__link .article__grid-image-wrapper {
	        margin: 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__link {
	        width: auto;
	        float: none;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__link {
	        width: 100%;
	    }
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta {
	    width: 55%;
	    display: inline-block;
	    vertical-align: middle;
	    background-color: #fff;
	    margin-top: 0;
	    padding: 0;
	    padding-left: 20px;
	}

	@media only screen and (max-width: 1439px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta {
	        width: 54%;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta {
	        width: 50%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta {
	        width: 56%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta {
	        width: 100%;
	        padding-left: 0;
	        margin-top: 20px;
	    }
	}

	@media (min-width: 551px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta {
	        width: 40%;
	        padding-left: 20px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta {
	        width: 100%;
	        padding-left: 0;
	        margin-top: 20px;
	    }
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__date,
	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__author {
	    width: 100%;
	    float: left;
	    color: #707070;
	    font-size: 12px;
	    text-transform: capitalize;
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__title {
	    width: 100%;
	    float: left;
	    font-size: 15px;
	    line-height: 22px;
	    color: black;
	    text-transform: capitalize;
	    margin: 0 0 5px 0;
	    padding: 0;
	    letter-spacing: 0.2px;
	    font-weight: 500;
	}

	@media only screen and (max-width: 989px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__title {
	        font-size: 14px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__title {
	        font-size: 13px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__title {
	        font-size: 17px;
	    }
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__grid-excerpt {
	    width: 100%;
	    float: left;
	    font-size: 12px;
	    line-height: 22px;
	    letter-spacing: 0.6px;
	    margin: 20px 0;
	    color: #707070;
	}

	@media only screen and (max-width: 989px) {
	    .blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__grid-excerpt {
	        margin: 10px 0 0;
	    }
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__meta-buttons {
	    margin-top: 20px;
	}

	.blog .blog-block li.grid__item.blog-item .single-blog-item .article__grid-meta .article__meta-buttons .btn--tertiary {
	    line-height: 24px;
	}

	.grid--blog {
	    margin-bottom: 0;
	    overflow: auto;
	}

	.article__grid-tag {
	    margin-right: 10px;
	}

	.template-blog .blog--grid-view {
	    width: 100%;
	    float: left;
	}

	.template-blog .blog--grid-view .blog-page {
	    margin: 0 -15px;
	}

	.template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half {
	    position: relative;
	    padding: 0px 15px 50px 15px;
	}

	@media only screen and (max-width: 749px) {
	    .template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half {
	        padding: 0 15p 15px;
	    }
	}

	.template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .media__info {
	    left: 15px;
	    right: 15px;
	    bottom: 15px;
	    background: rgba(0, 0, 0, 0.7);
	    padding: 15px;
	    position: absolute;
	    color: white;
	    text-align: center;
	    font-size: 12px;
	}

	.template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .media__info .article__author,
	.template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .media__info .article__date {
	    width: 100%;
	    float: left;
	    text-transform: capitalize;
	}

	.template-article .template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .media__info .article__author,
	.template-article .template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .media__info .article__date {
	    margin-bottom: 0;
	}

	.template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .media__info .article__title {
	    font-size: 16px;
	    letter-spacing: 0.8px;
	    line-height: 24px;
	    color: white;
	    font-weight: 500;
	    margin: 5px 0;
	    display: inline-block;
	    vertical-align: middle;
	}

	.template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .article__grid-meta {
	    text-align: left;
	    clear: both;
	    position: relative;
	    z-index: 5;
	    background-color: white;
	    width: 100%;
	}

	.template-blog .blog--grid-view .blog-page .grid__item.medium-up--one-half .article__grid-meta .article__grid-excerpt {
	    width: 100%;
	    float: left;
	    margin: 20px 0 15px 0;
	}

	.total-comment-block {
	    float: left;
	    width: 100%;
	    padding: 30px;
	    background: #f7f7f7;
	    margin: 20px 0 30px;
	}

	.comment-form p.fine-print {
	    font-style: normal;
	    font-size: 12px;
	}

	.comment-title {
	    font-size: 16px;
	    text-transform: uppercase;
	    font-weight: 600;
	    line-height: normal;
	    color: black;
	}

	.comment-form label {
	    font-size: 12px;
	}

	.article__grid-image-wrapper {
	    margin: 0;
	    position: relative;
	    width: 100%;
	}

	.article__grid-image-container {
	    display: block;
	    clear: both;
	    position: relative;
	    padding-top: 0 !important;
	    margin: 0 auto 0 0;
	    min-height: 1px;
	    width: 100%;
	    height: 100%;
	}

	.article__grid-image-container img {
	    display: block;
	}

	.article__grid-image {
	    margin: 0 auto;
	    width: 100%;
	}

	.js .article__grid-image {
	    top: 0;
	}

	.article__list-image-container {
	    display: block;
	    clear: both;
	    position: relative;
	    min-height: 1px;
	    width: 100%;
	    height: 100%;
	}

	.article__list-image-wrapper {
	    width: 100%;
	    margin-bottom: 20px;
	}

	.article__list-image-container {
	    display: block;
	    clear: both;
	    position: relative;
	    min-height: 1px;
	    width: 100%;
	    height: 100%;
	}

	.article__list-image {
	    width: auto;
	    position: absolute;
	    top: 0;
	}

	.sidebar__list {
	    list-style: none;
	    margin-bottom: 15px;
	}

	.sidebar__list li {
	    margin-bottom: 10px;
	}

	.pagination {
	    width: 100%;
	    float: left;
	    list-style: none;
	    padding-top: 30px;
	    padding-bottom: 30px;
	    margin-top: 30px;
	}

	@media only screen and (max-width: 989px) {
	    .pagination {
	        margin-top: 0;
	    }
	}

	.pagination-pages .pagination {
	    width: auto;
	    float: left;
	}

	@media only screen and (max-width: 479px) {
	    .pagination-pages .pagination {
	        width: 100%;
	        float: left;
	        text-align: center;
	        margin-bottom: 20px;
	    }
	}

	.pagination-pages .pagination span {
	    padding: 0;
	    cursor: pointer;
	    background: #0083d0;
	    color: white;
	    border-radius: 5px;
	    line-height: 35px;
	    height: 30px;
	    width: 30px;
	    display: inline-block;
	    vertical-align: middle;
	    margin-right: 7px;
	}

	.pagination-pages .pagination span a {
	    color: white;
	    line-height: 35px;
	    width: 30px;
	    height: 30px;
	    display: block;
	}

	.pagination-pages .pagination span:hover {
	    background: #6c9228;
	}

	.pagination-pages .pagination span:hover a {
	    color: black;
	}

	.pagination-pages .pagination span.current {
	    color: black;
	    background: #6c9228;
	}

	.pagination-pages .pagination span.prev {
	    font-size: 0;
	    padding: 0;
	    display: inline-block;
	    vertical-align: middle;
	    position: relative;
	}

	.pagination-pages .pagination span.prev a {
	    background: url(../img/icn-sprt.png) no-repeat scroll -1px -719px;
	    width: 30px;
	    height: 30px;
	    top: 0;
	    left: 0;
	    right: 0;
	    position: absolute;
	    padding: 0;
	}

	.pagination-pages .pagination span.prev:hover a {
	    background-position: -1px -672px;
	}

	.pagination-pages .pagination span.next {
	    font-size: 0;
	    padding: 0;
	    display: inline-block;
	    vertical-align: middle;
	    position: relative;
	}

	.pagination-pages .pagination span.next a {
	    padding: 0px;
	    background: url(../img/icn-sprt.png) no-repeat scroll -62px -719px;
	    width: 30px;
	    height: 30px;
	    top: 0;
	    left: 0;
	    right: 0;
	    position: absolute;
	}

	.pagination-pages .pagination span.next:hover a {
	    background-position: -62px -672px;
	}

	.pagination .pagination-text {
	    width: auto;
	    float: right;
	    margin-top: 4px;
	}

	@media only screen and (max-width: 479px) {
	    .pagination .pagination-text {
	        width: 100%;
	        float: left;
	        text-align: center !important;
	    }
	}

	.pagination .pagination-text strong {
	    color: black;
	}

	.pagination li {
	    display: inline-block;
	}

	.pagination .icon {
	    display: block;
	    height: 20px;
	    vertical-align: middle;
	}

	.pagination__text {
	    padding: 0 7.5px;
	}

	#comments {
	    margin: 0 -10px;
	}

	.comment {
	    margin-bottom: 30px;
	    float: left;
	    width: 100%;
	    border-bottom: 1px solid #ebebeb;
	}

	.comment:last-child {
	    margin-bottom: 0;
	    border-bottom: 0;
	}

	.comment:last-child .comment__content.rte {
	    margin-bottom: 0;
	}

	.comment .comment-author-image {
	    padding: 5px;
	    border: 2px solid #ebebeb;
	    width: auto;
	    float: left;
	}

	.comment .comment-author-image .author-image {
	    background: transparent url("icon-author.png") no-repeat scroll center center;
	    width: 2.61538em;
	    height: 2.61538em;
	}

	.comment .comment__content.rte {
	    margin: 15px 0;
	}

	.comment__content {
	    margin-bottom: 5px;
	}

	.comment__meta {
	    float: left;
	    width: auto;
	    margin-left: 15px;
	}

	.comment__meta-item {
	    margin-right: 10px;
	    font-size: 0.92308em;
	    display: block;
	}

	.comment__meta-item.author-name {
	    font-size: 1em;
	    color: black;
	    font-weight: 500;
	}

	.social-sharing {
	    float: left;
	    width: 100%;
	    margin: 20px 0;
	}

	.social-sharing ul.share-product {
	    margin: 0;
	}

	.social-sharing ul li {
	    width: auto;
	    display: inline-block;
	    vertical-align: middle;
	    float: left;
	}

	.social-sharing ul li a.btn--share {
	    font-size: 13px;
	    margin-bottom: 0;
	    margin-right: 20px;
	    border: none;
	    background: transparent;
	}

	@media only screen and (max-width: 479px) {
	    .social-sharing ul li a.btn--share {
	        margin-right: 10px;
	    }
	}

	.template-password .social-sharing {
	    justify-content: center;
	}

	.btn--share {
	    background-color: transparent;
	    border-color: #e8e9eb;
	    color: black;
	    margin-right: 5px;
	    margin-bottom: 10px;
	    padding: 5px;
	}

	.btn--share:not([disabled]):hover,
	.btn--share:focus {
	    background-color: transparent;
	    border-color: #cdcfd3;
	    color: #6c9228;
	}

	.btn--share .icon {
	    vertical-align: middle;
	    width: 16px;
	    height: 16px;
	    margin-right: 4px;
	}

	.btn--share .icon-facebook {
	    fill: #3b5998;
	}

	.btn--share .icon-twitter {
	    fill: #00aced;
	}

	.btn--share .icon-pinterest {
	    fill: #cb2027;
	}

	.share-title {
	    display: inline-block;
	    vertical-align: middle;
	    margin-top: 2px;
	}

	.search-bar__form {
	    display: table;
	    width: 100%;
	    position: relative;
	    height: calc(46em / 16);
	    border: 1px solid transparent;
	}

	@media only screen and (max-width: 989px) {
	    .search-bar__form {
	        border-bottom: 2px solid #e8e9eb;
	    }
	}

	.search-bar__submit .icon {
	    position: relative;
	    top: -1px;
	    height: 30px;
	}

	@media only screen and (max-width: 989px) {
	    .search-bar__submit .icon {
	        top: 0;
	        left: 11px;
	    }
	}

	/* .header-search-btn {
 	 @include media-query($large-down) {
       display: inline-block;
       vertical-align: middle;
       position: absolute;
       right: 0;
       top: 0;
       height: 100%;
       z-index: 1;
       font-size: 0;
       height: 33px;
       width: 40px;
       
       &.active {
        	background: url(cross01.png) no-repeat scroll 12px 8px; 
       }
     }
} */
	.search-bar__submit,
	.search-header__submit {
	    display: inline-block;
	    vertical-align: top;
	    text-align: center;
	}

	.search-bar__submit:hover,
	.search-header__submit:hover {
	    background-position: 10px -85px;
	}

	@media only screen and (max-width: 989px) {

	    .search-bar__submit,
	    .search-header__submit {
	        background: none;
	        width: 45px;
	        height: 45px;
	        padding: 0;
	    }

	    .search-bar__submit:before,
	    .search-header__submit:before {
	        display: none;
	    }
	}

	.search-header__input,
	.search-bar__input {
	    background-color: transparent;
	    border-radius: 0;
	    -webkit-border-radius: 0;
	    -khtml-border-radius: 0;
	    -moz-border-radius: 0;
	    color: black;
	    border: 1px solid #6c9228;
	    width: 580px;
	    min-height: 40px;
	    padding: 5px 15px;
	    font-size: 13px;
	    background: #fff;
	    border-radius: 5px;
	}

	.search-header__input::-webkit-input-placeholder,
	.search-bar__input::-webkit-input-placeholder {
	    color: #1a1a1a;
	    opacity: 0.5;
	}

	.search-header__input::-moz-placeholder,
	.search-bar__input::-moz-placeholder {
	    color: #1a1a1a;
	    opacity: 0.5;
	}

	.search-header__input:-ms-input-placeholder,
	.search-bar__input:-ms-input-placeholder {
	    color: #1a1a1a;
	    opacity: 0.5;
	}

	.search-header__input::-ms-input-placeholder,
	.search-bar__input::-ms-input-placeholder {
	    color: #1a1a1a;
	    opacity: 0.5;
	}

	@media only screen and (max-width: 1439px) {

	    .search-header__input,
	    .search-bar__input {
	        width: 440px;
	    }
	}

	@media only screen and (max-width: 1269px) {

	    .search-header__input,
	    .search-bar__input {
	        width: 250px;
	    }
	}

	@media only screen and (max-width: 989px) {

	    .search-header__input,
	    .search-bar__input {
	        width: calc(100% - 50px);
	        border: none !important;
	    }
	}

	.search-bar__input {
	    border: 1px solid transparent;
	}

	.search-bar__input:focus {
	    border-color: transparent;
	}

	/*============================================================================
  The search submit button has pointer-events: none which also
  effects the :hover style. This forces the style to be applied.
==============================================================================*/
	/*================ Mobile Search Bar ================*/
	.search-bar {
	    border-bottom: 1px solid #e8e9eb;
	    border-top: 1px solid #e8e9eb;
	    padding: 0 7.5px;
	    z-index: 1000;
	}

	.search-bar__table {
	    display: table;
	    table-layout: fixed;
	    width: 100%;
	    height: 100%;
	}

	.search-bar__table-cell {
	    display: table-cell;
	    vertical-align: middle;
	}

	.search-bar__form-wrapper {
	    width: 90%;
	}

	@media only screen and (max-width: 989px) {
	    .search-bar__form-wrapper {
	        padding: 0 10px;
	        width: 95%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .search-bar__form-wrapper {
	        width: 93%;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .search-bar__form-wrapper {
	        width: 89%;
	    }
	}

	/*================ Header Search ================*/
	.search-header {
	    display: inline-block;
	    position: relative;
	    width: 100%;
	    height: 40px;
	    vertical-align: middle;
	}

	.search-header__input {
	    cursor: pointer;
	}

	.search-header__input:focus {
	    border: none;
	}

	.search--focus .search-header__input {
	    outline: none;
	    border-color: transparent;
	    cursor: auto;
	}

	.search--focus .search-header__submit {
	    pointer-events: auto;
	}

	.search-header__submit {
	    pointer-events: none;
	    padding: 10px 20px 6px;
	    border-radius: 5px;
	    color: #fff;
	    background: linear-gradient(152deg, #0f776d, #00d048);
	    font-size: 14px;
	}

	.search-header__submit span {
	    position: relative !important;
	    text-transform: uppercase;
	    font-weight: 600;
	    letter-spacing: 0.2px;
	    line-height: 24px;
	    color: #fff;
	}

	.search-header,
	.search-header__submit {
	    -ms-transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -webkit-transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1);
	    transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1);
	}

	.search-header:focus,
	.search-header__submit:focus {
	    color: black !important;
	}

	.search-header__submit .icon.icon-search {
	    display: none;
	}

	.no-svg .site-header__search {
	    display: inline-block;
	}

	.no-svg .search-header {
	    max-width: none;
	}

	.no-svg .search__input {
	    width: auto;
	    padding-left: 60px;
	}

	.header-toggle {
	    background: rgba(0, 0, 0, 0) url("search.png") no-repeat scroll 30px center;
	    color: #ffffff;
	    cursor: pointer;
	    display: block;
	    font-size: 0;
	    height: 45px;
	    padding: 0;
	    position: relative;
	    text-align: center;
	    width: 50px;
	    z-index: 1;
	    border-left: 2px solid #393939;
	}

	/*================ Mobile Site Nav ================*/
	.mobile_togglecolumn {
	    display: block;
	    height: 20px;
	    position: absolute;
	    right: 0;
	    top: 12px;
	    width: 20px;
	    z-index: 999;
	    text-align: center;
	    cursor: pointer;
	    color: black;
	}

	.mobile_togglecolumn:before {
	    content: "+";
	    font-size: 21px;
	    line-height: 20px;
	}

	.mobile-nav {
	    float: left;
	    width: 100%;
	    display: block;
	    -ms-transform: translate3d(0, 0, 0);
	    -webkit-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	    -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    margin: 20px 0;
	}

	.sub-nav--is-open .mobile-nav {
	    -ms-transform: translate3d(-100%, 0, 0);
	    -webkit-transform: translate3d(-100%, 0, 0);
	    transform: translate3d(-100%, 0, 0);
	}

	.third-nav--is-open .mobile-nav {
	    -ms-transform: translate3d(-200%, 0, 0);
	    -webkit-transform: translate3d(-200%, 0, 0);
	    transform: translate3d(-200%, 0, 0);
	}

	.mobile-nav__link,
	.mobile-nav__sublist-link {
	    display: block;
	    width: 100%;
	    padding: 8px 0;
	    font-size: 14px;
	    letter-spacing: 0.5px;
	    color: black;
	    text-transform: capitalize;
	    font-weight: 400;
	    text-align: left;
	}

	.mobile-nav__link {
	    position: relative;
	    text-align: left;
	}

	.mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
	    padding-left: 30px;
	    padding-right: 30px;
	}

	.mobile-nav__item {
	    display: block;
	    width: 100%;
	    position: relative;
	}

	.mobile-nav__item .icon {
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    height: 12px;
	    width: 10px;
	    margin: -6px 0 0 -5px;
	}

	.mobile-nav__item.active>.mobile_togglecolumn:before {
	    content: "-";
	}

	.mobile-nav__item.active>.mobile-nav__dropdown,
	.mobile-nav__item.active>.mobile-nav__grand_dropdown {
	    display: block;
	}

	.mobile-nav__return {
	    border-right: 1px solid #e8e9eb;
	}

	.mobile-nav__return-btn {
	    position: relative;
	    padding: 24px 0;
	    width: 55px;
	}

	.mobile-nav__icon {
	    position: absolute;
	    right: 0;
	    top: 0;
	    bottom: 0;
	    padding-left: 15px;
	    padding-right: 15px;
	    pointer-events: none;
	    overflow: hidden;
	}

	.mobile-nav__table {
	    display: table;
	    width: 100%;
	}

	.mobile-nav__table-cell {
	    display: table-cell;
	    vertical-align: middle;
	    width: 1%;
	    text-align: left;
	    white-space: normal;
	}

	.mobile-nav__toggle-button {
	    padding: 20px 15px;
	}

	.mobile-nav__dropdown {
	    z-index: 8;
	    width: 100%;
	    top: 0;
	    right: -100%;
	    display: none;
	}

	.is-active+.mobile-nav__dropdown {
	    display: block;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.mobile-nav__dropdown.is-closing {
	    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -moz-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -o-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
	    opacity: 0.99;
	    -khtml-opacity: 0.99;
	    -webkit-opacity: 0.99;
	    -moz-opacity: 0.99;
	}

	.mobile-nav__dropdown .mobile-nav__sublist-header {
	    font-family: "poppins", "HelveticaNeue", "Helvetica Neue", sans-serif;
	    font-weight: 400;
	    display: table-cell;
	    vertical-align: middle;
	    padding-left: 15px;
	}

	.mobile-nav__dropdown .mobile-nav__sublist-header--main-nav-parent {
	    color: #707070;
	}

	.mobile-nav__dropdown .mobile-nav__item .mobile-nav__dropdown {
	    padding: 0 15px;
	    margin-bottom: 0;
	}

	/*================ Mobile nav wrapper ================*/
	.mobile-nav-wrapper {
	    position: fixed;
	    top: 0;
	    right: 0;
	    background-color: white;
	    width: 23.07692em;
	    float: right;
	    z-index: 1;
	    height: 100%;
	    padding: 20px;
	    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
	    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
	    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
	    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
	    box-sizing: border-box;
	    transform: translateX(110%) !important;
	    -webkit-transform: translateX(110%) !important;
	    -moz-transform: translateX(110%) !important;
	    -ms-transform: translateX(110%) !important;
	    -o-transform: translateX(110%) !important;
	    transition: all 300ms ease;
	    -webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -ms-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	}

	.mobile-nav-wrapper.js-menu--is-open {
	    display: block;
	}

	@media only screen and (max-width: 989px) {
	    .mobile-nav-wrapper.js-menu--is-open {
	        display: block !important;
	        overflow-y: auto;
	        transform: translateX(0px) !important;
	        -webkit-transform: translateX(0px) !important;
	        -ms-transform: translateX(0px) !important;
	        -o-transform: translateX(0px) !important;
	        -moz-transform: translateX(0px) !important;
	        transition: all 300ms ease 0s;
	        -webkit-transition: all 300ms ease 0s;
	        -moz-transition: all 300ms ease 0s;
	        -ms-transition: all 300ms ease 0s;
	        -o-transition: all 300ms ease 0s;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .mobile-nav-wrapper {
	        width: 19.23077em;
	    }
	}

	.mobile-nav-wrapper .site-header__menu {
	    float: left;
	    width: 100%;
	    padding: 0;
	}

	.mobile-nav-wrapper .site-header__icon svg {
	    color: black;
	}

	.mobile-nav--open .icon-close {
	    display: none;
	}

	.mobile-nav--close .icon-hamburger {
	    display: none;
	}

	.site-header__mobile-nav {
	    z-index: 999;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {
	    .site-header__mobile-nav {
	        display: -webkit-flex;
	        display: -ms-flexbox;
	        display: flex;
	        width: 100%;
	        -ms-flex-align: center;
	        -webkit-align-items: center;
	        -moz-align-items: center;
	        -ms-align-items: center;
	        -o-align-items: center;
	        align-items: center;
	        display: inline-block;
	        vertical-align: middle;
	    }
	}

	/*================ Modals ================*/
	.modal {
	    -ms-transform: translateY(-20px);
	    -webkit-transform: translateY(-20px);
	    transform: translateY(-20px);
	    background-color: rgba(0, 0, 0, 0.836);
	    bottom: 0;
	    color: black;
	    display: none;
	    left: 0;
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    overflow: hidden;
	    position: fixed;
	    right: 0;
	    top: 0;
	}

	.in {
	    -ms-transform: translateY(0);
	    -webkit-transform: translateY(0);
	    transform: translateY(0);
	    display: block;
	    opacity: 1 !important;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    overflow: hidden;
	}

	.modal__inner {
	    -moz-transform-style: preserve-3d;
	    -webkit-transform-style: preserve-3d;
	    transform-style: preserve-3d;
	    height: 100%;
	}

	.modal__centered {
	    -ms-transform: translateY(-50%);
	    -webkit-transform: translateY(-50%);
	    transform: translateY(-50%);
	    position: relative;
	    top: 50%;
	}

	.no-csstransforms .modal__centered {
	    top: 20%;
	}

	.modal__close {
	    border: 0;
	    padding: 15px;
	    position: fixed;
	    top: 0;
	    right: 0;
	    z-index: 2;
	}

	.modal__close .icon {
	    font-size: 1.53846em;
	}

	/*============================================================================
  Hero slider

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
	.slideshow-wrapper {
	    position: relative;
	}

	.slideshow-wrapper:hover .slick-prev,
	.slideshow-wrapper:hover .slick-next {
	    opacity: 1;
	    visibility: visible;
	}

	.slideshow {
	    position: unset;
	    overflow: hidden;
	    margin-bottom: 0;
	    max-height: 80vh;
	    transition: height 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    padding: 0;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow {
	        padding: 0;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .slideshow {
	        position: relative;
	        max-height: 100vh;
	    }
	}

	.slideshow .slideshow__slide,
	.slideshow .slick-list,
	.slideshow .slick-track {
	    height: 100%;
	}

	.slideshow .slick-prev,
	.slideshow .slick-next {
	    top: 50%;
	    height: 35px;
	    margin-top: 0;
	    width: 35px;
	    background: white;
	    border-radius: 5px;
	    box-shadow: 0px 0px 6px 0px black;
	    opacity: 0;
	    visibility: hidden;
	}

	.slideshow .slick-prev:hover,
	.slideshow .slick-next:hover {
	    background: #6c9228 !important;
	}

	.slideshow .slick-prev {
	    left: 5px;
	    z-index: 1;
	    box-shadow: -1px 0px 11px 0px rgba(0, 0, 0, 0.1);
	}

	.slideshow .slick-prev.slick-disabled:before {
	    opacity: 1;
	    display: inline-block;
	    vertical-align: middle;
	    left: 0;
	    right: 0;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow .slick-prev {
	        display: none !important;
	    }
	}

	.slideshow .slick-next {
	    right: 5px;
	    box-shadow: 1px 0px 11px -3px rgba(0, 0, 0, 0.3);
	}

	.slideshow .slick-next:before {
	    left: 0;
	    right: 0;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow .slick-next {
	        display: none !important;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .slideshow--display-controls .slick-dots {
	        left: calc(50% - 22px);
	    }
	}

	.slideshow--small {
	    height: 100px;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow--small {
	        height: 400px;
	    }
	}

	.slideshow--medium {
	    height: 220px;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow--medium {
	        height: 600px;
	    }
	}

	.slideshow--large {
	    height: 400px;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow--large {
	        height: 800px;
	    }
	}

	.index-section--slideshow {
	    margin: 0 auto !important;
	    padding: 0;
	    float: left;
	    width: 100%;
	}

	@media only screen and (max-width: 749px) {
	    .index-section--slideshow {
	        padding: 0;
	        position: relative;
	    }
	}

	/*================ General slide styles ================*/
	.slideshow__slide {
	    position: relative;
	    overflow: hidden;
	}

	.slideshow__link {
	    display: block;
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	}

	.slideshow__link:active,
	.slideshow__link:focus {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__overlay::before {
	        content: '';
	        position: absolute;
	        top: 0;
	        right: 0;
	        bottom: 0;
	        left: 0;
	        background-color: #3d4246;
	        opacity: 0;
	        z-index: 3;
	    }
	}

	/*================ Slide images ================*/
	.slideshow__image {
	    transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    position: absolute;
	    top: 0;
	    left: 0;
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    height: inherit;
	    width: 100%;
	    background-position: top center !important;
	    background-repeat: no-repeat;
	    background-size: cover;
	    z-index: 1;
	}

	.slick-initialized .slideshow__image,
	.no-js .slideshow__image {
	    opacity: 1;
	}

	/*================ Slide text ================*/
	.slideshow__text-wrap {
	    height: 100%;
	    position: relative;
	}

	.slideshow__link .slideshow__text-wrap {
	    cursor: inherit;
	}

	.slideshow__text-wrap--mobile {
	    display: none;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__text-wrap--mobile {
	        display: inline-block;
	        vertical-align: middle;
	        position: absolute;
	        top: 0;
	        background-color: transparent;
	        width: 80%;
	        margin: 0 auto;
	        left: 0;
	        right: 0;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__text-content {
	        transition: 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	        transition-delay: 0.3s;
	    }
	}

	.slideshow__text-wrap--desktop .slideshow__text-content {
	    position: absolute;
	    width: 40%;
	    top: 50%;
	    text-align: right !important;
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    transition-delay: 0.3s;
	    z-index: 3;
	}

	@media only screen and (max-width: 1269px) {
	    .slideshow__text-wrap--desktop .slideshow__text-content {
	        width: 45%;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__text-content.slideshow__text-content--vertical-top {
	        top: 120px;
	    }

	    .slideshow__text-content.slideshow__text-content--vertical-bottom {
	        top: auto;
	        bottom: 40px;
	    }
	}

	.slick-initialized .slick-active .slideshow__text-content,
	.no-js .slideshow__text-content {
	    -ms-transform: translateY(-40px);
	    -webkit-transform: translateY(-40px);
	    transform: translateY(-40px);
	    opacity: 1;
	}

	.slick-initialized .slick-active .slideshow__text-content.slideshow__text-content--vertical-center,
	.no-js .slideshow__text-content.slideshow__text-content--vertical-center {
	    -ms-transform: translateY(-50%);
	    -webkit-transform: translateY(-50%);
	    transform: translateY(-50%);
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.slideshow__text-content::after {
	    content: '';
	    content: '';
	    display: block;
	    width: 40px;
	    height: 40px;
	    position: absolute;
	    margin-left: -20px;
	    margin-top: -20px;
	    border-radius: 50%;
	    -webkit-border-radius: 50%;
	    -khtml-border-radius: 50%;
	    -moz-border-radius: 50%;
	    border: 3px solid white;
	    border-top-color: transparent;
	    -moz-animation: spin 0.65s infinite linear;
	    -o-animation: spin 0.65s infinite linear;
	    -webkit-animation: spin 0.65s infinite linear;
	    animation: spin 0.65s infinite linear;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    -ms-transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
	    -webkit-transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
	    transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
	    bottom: -15px;
	    left: 50%;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__text-content::after {
	        content: none;
	    }
	}

	.slick-initialized .slideshow__text-content::after,
	.no-js .slideshow__text-content::after {
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    visibility: hidden;
	    content: none;
	}

	.slideshow__text-content--mobile {
	    display: none;
	    padding-top: 2.6rem;
	}

	.slideshow__arrows--mobile~.slideshow__text-content--mobile {
	    padding-top: 0;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__arrows--mobile~.slideshow__text-content--mobile {
	        padding-top: 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__arrows--mobile~.slideshow__text-content--mobile {
	        padding-top: 1.6rem;
	    }
	}

	@media (max-width: 550px) {
	    .slideshow__arrows--mobile~.slideshow__text-content--mobile {
	        padding-top: 0;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__arrows--mobile~.slideshow__text-content--mobile {
	        margin: 20px 0;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__text-content--mobile {
	        padding-top: 0;
	    }

	    .slideshow__text-content--mobile::after {
	        display: none;
	    }
	}

	.slideshow__title,
	.slideshow__subtitle {
	    color: white;
	    text-align: right !important;
	    text-shadow: none;
	}

	@media only screen and (max-width: 749px) {

	    .slideshow__title,
	    .slideshow__subtitle {
	        display: none;
	    }
	}

	.slideshow__title--mobile {
	    margin-bottom: 0;
	}

	.slideshow__title--mobile~.slideshow__subtitle--mobile {
	    margin-top: 0.5rem;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__title--mobile~.slideshow__subtitle--mobile {
	        margin-top: 0;
	    }
	}

	.slideshow__subtitle--mobile,
	.slideshow__title--mobile {
	    display: none;
	    color: black;
	}

	@media only screen and (max-width: 749px) {

	    .slideshow__subtitle--mobile,
	    .slideshow__title--mobile {
	        display: block;
	    }
	}

	.slideshow__btn-wrapper {
	    border: none;
	    background-color: transparent;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__btn-wrapper--push {
	        margin-top: 30px;
	    }
	}

	.slideshow__btn {
	    max-width: 100%;
	    display: inline-block;
	    word-wrap: break-word;
	    background-color: #000;
	    color: white;
	    min-height: 3.125rem;
	    line-height: 2.2;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__btn {
	        display: none;
	    }
	}

	.slideshow__btn--mobile {
	    display: none;
	    margin: 1.3rem auto 0;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__btn--mobile {
	        display: inline-block;
	        margin: 2rem auto 0.3rem;
	    }
	}

	.h1.slideshow__title {
	    font-size: 34px;
	    font-weight: 200;
	    margin-bottom: 20px;
	    text-transform: capitalize;
	    letter-spacing: 0;
	    color: black;
	}

	@media only screen and (max-width: 1269px) {
	    .h1.slideshow__title {
	        font-size: 28px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .h1.slideshow__title {
	        font-size: 25px;
	        line-height: 35px;
	        margin-bottom: 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .h1.slideshow__title {
	        text-align: center !important;
	        font-size: 25px;
	        line-height: 35px;
	    }
	}

	@media (max-width: 550px) {
	    .h1.slideshow__title {
	        text-align: center !important;
	        font-size: 20px;
	        line-height: 30px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .h1.slideshow__title {
	        margin: 0;
	    }
	}

	.slideshow__subtitle {
	    font-size: 34px;
	    font-weight: 500;
	    color: black;
	    letter-spacing: 0;
	    text-transform: capitalize;
	}

	@media only screen and (max-width: 1269px) {
	    .slideshow__subtitle {
	        font-size: 28px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .slideshow__subtitle {
	        font-size: 25px;
	        line-height: 35px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__subtitle {
	        text-align: center !important;
	        font-size: 25px;
	        line-height: 35px;
	    }
	}

	@media (max-width: 550px) {
	    .slideshow__subtitle {
	        text-align: center !important;
	        font-size: 20px;
	        line-height: 30px;
	    }
	}

	.slideshow__subtext1 {
	    font-size: 16px;
	    color: black;
	    text-transform: capitalize;
	    margin-top: 45px;
	    display: block;
	    margin-bottom: 10px;
	    letter-spacing: 0.8px;
	    font-weight: 300;
	}

	@media only screen and (max-width: 1269px) {
	    .slideshow__subtext1 {
	        font-size: 15px;
	        margin-top: 30px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .slideshow__subtext1 {
	        margin-top: 15px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__subtext1 {
	        display: none;
	    }
	}

	.slideshow__subtext2 {
	    font-size: 16px;
	    font-weight: 600;
	    color: black;
	    text-transform: capitalize;
	    letter-spacing: 0.6px;
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__subtext2 {
	        display: none;
	    }
	}

	/*================ Slideshow control styles ================*/
	.slideshow__controls {
	    display: none;
	    justify-content: center;
	    position: absolute;
	    top: 0px;
	    right: 0px;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__controls {
	        top: auto;
	        bottom: 0;
	        left: 0;
	    }
	}

	.slideshow__arrows {
	    background-color: rgba(0, 0, 0, 0.4);
	    color: rgba(255, 255, 255, 0.5);
	    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    display: none;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__arrows {
	        display: flex;
	        height: 30px;
	    }
	}

	@media only screen and (min-width: 750px) {

	    .slideshow__controls:hover .slideshow__arrows,
	    .slideshow__controls:focus .slideshow__arrows,
	    .slideshow__controls--hover .slideshow__arrows {
	        background-color: rgba(0, 0, 0, 0.75);
	    }
	}

	.slideshow__arrows .slideshow__arrow {
	    padding: 0.6rem 0.9rem;
	    cursor: pointer;
	    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    background-color: transparent;
	    color: rgba(255, 255, 255, 0.5);
	    border: none;
	}

	.slideshow__arrows .slideshow__arrow .icon {
	    width: 0.7rem;
	    height: 0.7rem;
	    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	}

	.slideshow__arrows .slideshow__arrow .icon:hover {
	    color: white;
	}

	.slideshow__arrows .slideshow__arrow-left {
	    float: left;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__arrows .slideshow__arrow-left {
	        order: -1;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__arrows .slideshow__arrow-left {
	        position: absolute;
	        top: 40%;
	        left: -50px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__arrows .slideshow__arrow-left {
	        left: -30px;
	        top: 35%;
	    }
	}

	.slideshow__arrows .slideshow__arrow-right {
	    float: right;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__arrows .slideshow__arrow-right {
	        order: 1;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__arrows .slideshow__arrow-right {
	        position: absolute;
	        top: 40%;
	        right: -50px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__arrows .slideshow__arrow-right {
	        right: -30px;
	        top: 35%;
	    }
	}

	.slideshow__arrows .slick-dots {
	    line-height: 30px;
	}

	.slideshow__arrows .slick-dots li {
	    width: 9px;
	    height: 9px;
	    margin-left: 9px;
	}

	.slideshow__arrows .slick-dots li button::before,
	.slideshow__arrows .slick-dots li a::before {
	    width: 8px;
	    height: 8px;
	    color: rgba(0, 0, 0, 0.5);
	    border: none;
	    opacity: 1;
	}

	@media only screen and (min-width: 750px) {

	    .slideshow__arrows .slick-dots li button::before,
	    .slideshow__arrows .slick-dots li a::before {
	        width: 9px;
	        height: 9px;
	        color: rgba(255, 255, 255, 0.5);
	        border: 1px solid rgba(0, 0, 0, 0.25);
	    }
	}

	.slideshow__arrows .slick-dots li.slick-active-mobile button::before,
	.slideshow__arrows .slick-dots li.slick-active-mobile a::before {
	    color: black;
	}

	.slideshow__arrows .slick-dots li.slick-active button::before,
	.slideshow__arrows .slick-dots li.slick-active a::before {
	    color: white;
	}

	.slideshow__arrows--mobile {
	    display: block;
	    width: 100%;
	    height: 30px;
	    background-color: transparent;
	}

	.slideshow__arrows--mobile .icon {
	    fill: rgba(0, 0, 0, 0.5);
	}

	.slideshow__arrows--mobile .slideshow__arrow:focus .icon {
	    fill: black;
	}

	@media only screen and (min-width: 750px) {
	    .slideshow__arrows--mobile {
	        display: none;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__arrows--mobile {
	        height: auto;
	    }
	}

	.slideshow__pause {
	    clip: auto;
	    width: 30px;
	    height: 30px;
	    margin-left: 1px;
	    z-index: 10000;
	    border: none;
	    background-color: rgba(0, 0, 0, 0.4);
	    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	}

	@media only screen and (min-width: 750px) {

	    .slideshow__controls:hover .slideshow__pause,
	    .slideshow__controls:focus .slideshow__pause,
	    .slideshow__controls--hover .slideshow__pause {
	        background-color: rgba(0, 0, 0, 0.75);
	    }
	}

	.slideshow__pause .icon {
	    color: rgba(255, 255, 255, 0.5);
	    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	}

	.slideshow__pause .icon:hover {
	    color: white;
	}

	.slideshow__pause .icon-pause {
	    width: 0.65rem;
	    height: 0.65rem;
	}

	.slideshow__pause .icon-resume {
	    width: 1rem;
	    height: 1rem;
	}

	.slideshow__pause-stop {
	    display: block;
	}

	.is-paused .slideshow__pause-stop {
	    display: none;
	}

	.slideshow__pause-rotate {
	    display: none;
	}

	.is-paused .slideshow__pause-rotate {
	    display: block;
	}

	.slideshow__text-content .slideshow-text {
	    padding: 45px;
	    background: rgba(0, 0, 0, 0.2);
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__text-content .slideshow-text {
	        padding: 25px;
	    }
	}

	.slideshow__text-content .slideshow-text .mega-title {
	    font-size: 58px;
	    font-weight: 600;
	    line-height: 72px;
	    letter-spacing: -0.1px;
	    margin: 0;
	    text-transform: capitalize;
	    color: white;
	    text-align: left;
	}

	@media only screen and (max-width: 1269px) {
	    .slideshow__text-content .slideshow-text .mega-title {
	        font-size: 44px;
	        line-height: 60px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .slideshow__text-content .slideshow-text .mega-title {
	        font-size: 39px;
	        line-height: 50px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__text-content .slideshow-text .mega-title {
	        font-size: 34px;
	        line-height: 50px;
	    }
	}

	@media (max-width: 600px) {
	    .slideshow__text-content .slideshow-text .mega-title {
	        font-size: 24px;
	        line-height: 40px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__text-content .slideshow-text .mega-title {
	        font-size: 22px;
	        line-height: 35px;
	    }
	}

	@media (max-width: 400px) {
	    .slideshow__text-content .slideshow-text .mega-title {
	        font-size: 19px;
	        line-height: 30px;
	    }
	}

	.slideshow__text-content .slideshow-text .mega-title.mega-title--large {
	    font-size: 64px;
	    line-height: 85px;
	}

	@media only screen and (max-width: 1269px) {
	    .slideshow__text-content .slideshow-text .mega-title.mega-title--large {
	        font-size: 44px;
	        line-height: 60px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .slideshow__text-content .slideshow-text .mega-title.mega-title--large {
	        font-size: 39px;
	        line-height: 50px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .slideshow__text-content .slideshow-text .mega-title.mega-title--large {
	        font-size: 34px;
	        line-height: 50px;
	    }
	}

	@media (max-width: 600px) {
	    .slideshow__text-content .slideshow-text .mega-title.mega-title--large {
	        font-size: 24px;
	        line-height: 40px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__text-content .slideshow-text .mega-title.mega-title--large {
	        font-size: 22px;
	        line-height: 35px;
	    }
	}

	@media (max-width: 400px) {
	    .slideshow__text-content .slideshow-text .mega-title.mega-title--large {
	        font-size: 19px;
	        line-height: 30px;
	    }
	}

	.slideshow__text-content .slideshow-text .mega-subtitle {
	    font-size: 13px;
	    font-weight: 400;
	    line-height: 24px;
	    letter-spacing: 0.4px;
	    margin: 0 0 25px 0;
	    text-align: left;
	    color: white;
	    text-transform: capitalize;
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__text-content .slideshow-text .mega-subtitle {
	        font-size: 12px;
	        margin: 0 0 15px 0;
	    }
	}

	.slideshow__text-content .slideshow-text .mega-subtitle.mega-subtitle--large {
	    font-size: 15px;
	    line-height: 24px;
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__text-content .slideshow-text .mega-subtitle.mega-subtitle--large {
	        font-size: 12px;
	        margin: 0 0 15px 0;
	    }
	}

	.slideshow__text-content .slideshow__btn {
	    font-size: 12px;
	    padding: 15px 33px;
	    line-height: 18px;
	    font-weight: 600;
	    letter-spacing: 0.8px;
	    color: white;
	    text-transform: uppercase;
	}

	@media only screen and (max-width: 479px) {
	    .slideshow__text-content .slideshow__btn {
	        font-size: 11px;
	        padding: 15px 25px;
	    }
	}

	@media (max-width: 400px) {
	    .slideshow__text-content .slideshow__btn {
	        padding: 12px 20px;
	    }
	}

	.price {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    margin-top: 0;
	    margin-bottom: 0;
	}

	@media only screen and (max-width: 749px) {
	    .price {
	        font-size: 0.92308em;
	    }
	}

	.price dl {
	    margin-top: 0;
	}

	.price dd {
	    margin: 0 0.5em 0 0;
	}

	.price--unavailable {
	    visibility: hidden;
	}

	.price__regular {
	    color: #707070;
	    display: inline-block;
	    vertical-align: top;
	}

	.price__sale {
	    color: black;
	    display: none;
	}

	.price--on-sale .price__sale {
	    display: inline-block;
	    vertical-align: top;
	}

	.price__vendor {
	    color: #707070;
	    font-size: 0.9em;
	    text-transform: uppercase;
	    letter-spacing: 1px;
	    margin: 5px 0 10px;
	    width: 100%;
	    -ms-flex-preferred-size: 100%;
	    -webkit-flex-basis: 100%;
	    -moz-flex-basis: 100%;
	    flex-basis: 100%;
	}

	.price-item {
	    font-weight: 600;
	    font-size: 16px;
	    line-height: 20px;
	    letter-spacing: 0.8px;
	    color: #0083d0;
	}

	@media only screen and (max-width: 749px) {
	    .price-item {
	        font-size: 14px;
	    }
	}

	.price--on-sale .price-item--regular {
	    text-decoration: line-through;
	    font-size: 16px;
	    color: #000;
	    font-weight: normal;
	}

	.price-item__label {
	    display: inline-block;
	    white-space: nowrap;
	    font-weight: 400;
	}

	/*================ Module | Filters and Sort toolbar and selection ================*/
	.filters-toolbar-wrapper {
	    margin-bottom: 30px;
	    margin-top: 15px;
	}

	.filters-toolbar {
	    -ms-flex-align: center;
	    -webkit-align-items: center;
	    -moz-align-items: center;
	    -ms-align-items: center;
	    -o-align-items: center;
	    align-items: center;
	    display: inline-block;
	    vertical-align: middle;
	    width: 100%;
	}

	@media only screen and (max-width: 479px) {
	    .filters-toolbar {
	        float: left;
	        display: inline-block;
	        margin: 0 0 10px 0;
	    }
	}

	.filters-toolbar__item {
	    min-width: auto;
	    float: none;
	    margin-right: 0;
	}

	.no-flexbox .filters-toolbar__item {
	    text-align: left !important;
	}

	.filters-toolbar__item .icon-chevron-down {
	    width: calc(10em / 16);
	    height: calc(10em / 16);
	    margin-left: -26px;
	}

	@media only screen and (max-width: 749px) {
	    .filters-toolbar__item {
	        width: 33.33%;
	        float: left;
	        display: inline-block;
	        margin-right: -5px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .filters-toolbar__item {
	        width: 100%;
	        text-align: center !important;
	        float: left;
	        display: block;
	    }
	}

	.filters-toolbar__item--count {
	    text-align: center;
	}

	.no-flexbox .filters-toolbar select {
	    width: 100% !important;
	}

	.filters-toolbar__label {
	    display: inline-block;
	    vertical-align: middle;
	    text-transform: capitalize;
	    font-weight: 600;
	    color: black;
	    margin: 0;
	}

	@media only screen and (max-width: 749px) {
	    .filters-toolbar__label {
	        margin-bottom: 0;
	        margin-top: 5px;
	    }
	}

	.filters-toolbar__input-wrapper {
	    display: inline-block;
	}

	.filters-toolbar__input {
	    -ms-transition: all ease-out 0.15s;
	    -webkit-transition: all ease-out 0.15s;
	    transition: all ease-out 0.15s;
	    background-color: transparent;
	    background-image: none;
	    border: 0 solid transparent;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    white-space: nowrap;
	    max-width: 100%;
	    height: 40px;
	    width: 100% !important;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    border-radius: 0;
	    -webkit-border-radius: 0;
	    -khtml-border-radius: 0;
	    -moz-border-radius: 0;
	    position: relative;
	    border: 1px solid #e8e9eb;
	    font-size: 12px;
	}

	.no-flexbox .filters-toolbar__input {
	    margin: 0;
	}

	.filters-toolbar__input.hidden {
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	}

	.filters-toolbar__input option {
	    text-overflow: ellipsis;
	    overflow: hidden;
	}

	.filters-toolbar__product-count {
	    display: inline-block;
	    vertical-align: middle;
	    line-height: 40px;
	    color: black;
	}

	@media only screen and (max-width: 749px) {
	    .filters-toolbar__product-count {
	        font-size: 0.84615em;
	        line-height: 46px;
	    }
	}

	.site-footer {
	    margin: 0;
	    float: left;
	    width: 100%;
	    margin-top: 70px;
	}

	@media only screen and (max-width: 989px) {
	    .site-footer {
	        margin-top: 50px;
	    }
	}

	.site-footer h4,
	.site-footer .h4 {
	    margin-bottom: 12.5px;
	}

	@media only screen and (min-width: 750px) {

	    .site-footer h4,
	    .site-footer .h4 {
	        min-height: 1.46154em;
	        margin-bottom: 25px;
	    }
	}

	.site-footer__hr {
	    margin: 55px 0 30px 0;
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__hr {
	        margin: 45px 0 20px 0;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__linklist--center {
	        margin-top: 35px;
	        padding-right: 0;
	    }
	}

	.site-footer__linklist-item {
	    display: block;
	    padding: 3px 0;
	}

	.site-footer__linklist-item:first-child {
	    padding-top: 0;
	}

	.site-footer__linklist-item:last-child {
	    padding-bottom: 0;
	}

	.site-footer__linklist-item a {
	    font-size: 13px;
	    font-weight: 400;
	    text-transform: capitalize;
	    color: #ebebeb;
	}

	.site-footer__linklist--center .site-footer__linklist-item {
	    display: inline-block;
	    padding: 3px 10px;
	}

	.site-footer__newsletter {
	    margin: 0;
	    max-width: none;
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__newsletter {
	        margin: 0;
	        max-width: none;
	    }
	}

	.site-footer__newsletter .rte {
	    font-size: 0.84615em;
	    margin-bottom: 25px;
	}

	.social-icons__link {
	    display: block;
	    padding: 0 20px;
	    -ms-transition: all 0.2s ease 0s;
	    -webkit-transition: all 0.2s ease 0s;
	    transition: all 0.2s ease 0s;
	}

	.social-icons__link:first-child {
	    padding-left: 0;
	}

	.social-icons__link:last-child {
	    padding-left: 0;
	}

	.social-icons__link .icon {
	    color: #ebebeb;
	}

	.social-icons__link:hover .icon {
	    color: white;
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__secondary-wrapper .grid__item:nth-child(even) {
	        text-align: right;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__secondary-wrapper--social-disabled.site-footer__secondary-wrapper .site-footer__copyright {
	        text-align: left;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__secondary-wrapper--social-disabled .site-footer__payment-icons {
	        float: right;
	    }
	}

	.site-footer__copyright-content {
	    font-size: 13px;
	    color: #ebebeb;
	    line-height: 26px;
	    text-transform: capitalize;
	}

	.site-footer__copyright-content>a {
	    color: #ebebeb;
	}

	.site-footer__copyright-content--powered-by {
	    padding-right: 0;
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__payment-icons {
	        text-align: right;
	    }
	}

	.site-footer__payment-icons .payment-icon {
	    margin-left: 5px;
	}

	.site-footer__payment-icons .payment-icon:first-child {
	    margin-left: 0;
	}

	.site-footer__item {
	    padding: 0 15px;
	    float: left;
	}

	@media only screen and (max-width: 1269px) {
	    .site-footer__item {
	        padding: 0 15px;
	    }
	}

	.site-footer__item.site-footer__item--one-fifth {
	    width: 17%;
	}

	@media only screen and (max-width: 1439px) {
	    .site-footer__item.site-footer__item--one-fifth {
	        width: 16%;
	        padding: 0;
	    }
	}

	.site-footer__item.site-footer__item--one-fifth:first-child {
	    padding-left: 0;
	}

	.site-footer__item.site-footer__item--one-fifth:last-child {
	    width: 20%;
	    padding-right: 0;
	    padding-left: 70px;
	}

	@media only screen and (max-width: 1439px) {
	    .site-footer__item.site-footer__item--one-fifth:last-child {
	        width: 36%;
	        padding-right: 0;
	        padding-left: 0px;
	        margin-left: 20px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .site-footer__item.site-footer__item--one-fifth:last-child {
	        margin-left: 0px;
	    }
	}

	.site-footer__item.site-footer__item--one-fifth:nth-child(6n+1) {
	    width: 25%;
	    border-right: 1px solid #474747;
	}

	@media only screen and (max-width: 1439px) {
	    .site-footer__item.site-footer__item--one-fifth:nth-child(6n+1) {
	        padding-right: 15px;
	        margin-right: 20px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .site-footer__item.site-footer__item--one-fifth:nth-child(6n+1) {
	        padding-right: 0px;
	        margin-right: 0px;
	        border-right: none;
	    }
	}

	.site-footer__item.site-footer__item--one-fifth:nth-child(6n+2) {
	    margin-left: 50px;
	}

	@media only screen and (max-width: 1439px) {
	    .site-footer__item.site-footer__item--one-fifth:nth-child(6n+2) {
	        margin-left: 0px;
	    }
	}


	@media only screen and (max-width: 989px) {
	    .site-footer__item.site-footer__item--one-fifth:nth-child(6n+4) {
	        border-right: none;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .site-footer__item--full-width {
	        width: 100%;
	    }

	    .site-footer__item--one-half {
	        width: 50%;
	    }

	    .site-footer__item--one-third {
	        width: 33.33%;
	    }

	    .site-footer__item--one-quarter {
	        width: 25%;
	    }

	    .site-footer__item--one-fifth {
	        width: 20%;
	    }

	    .site-footer-newsletter__one-half {
	        width: 50%;
	    }
	}

	.feature-row {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -webkit-justify-content: space-between;
	    -ms-justify-content: space-between;
	    justify-content: space-between;
	    -ms-flex-align: center;
	    -webkit-align-items: center;
	    -moz-align-items: center;
	    -ms-align-items: center;
	    -o-align-items: center;
	    align-items: center;
	}

	@media only screen and (max-width: 989px) {
	    .feature-row {
	        -webkit-flex-direction: column;
	        -moz-flex-direction: column;
	        -ms-flex-direction: column;
	        flex-direction: column;
	    }
	}

	.feature-row__item {
	    -webkit-flex: 0 1 50%;
	    -moz-flex: 0 1 50%;
	    -ms-flex: 0 1 50%;
	    flex: 0 1 50%;
	}

	@media only screen and (max-width: 989px) {
	    .feature-row__item {
	        -webkit-flex: 1 1 auto;
	        -moz-flex: 1 1 auto;
	        -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	        width: 100%;
	        max-width: 100%;
	    }
	}

	.feature-row__image-wrapper {
	    margin: 0 auto;
	    position: relative;
	    width: 100%;
	}

	.feature-row__image {
	    display: block;
	    margin: 0 auto;
	    max-width: 100% !important;
	    max-height: 100% !important;
	}

	.feature-row__image-wrapper .feature-row__image {
	    width: 100%;
	    position: absolute;
	    top: 0;
	}

	@media only screen and (max-width: 749px) {
	    .feature-row__image {
	        order: 1;
	    }
	}

	.feature-row__text {
	    padding-top: 35px;
	    padding-bottom: 35px;
	}

	@media only screen and (max-width: 749px) {
	    .feature-row__text {
	        order: 2;
	        padding-bottom: 0;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .feature-row__text--left {
	        padding-left: 35px;
	    }

	    .feature-row__text--right {
	        padding-right: 35px;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .featured-row__subtext {
	        font-size: 1.15385em;
	    }
	}

	.hero {
	    position: relative;
	    height: 475px;
	    display: table;
	    width: 100%;
	    border-radius: 4px;
	    background-size: cover;
	    background-repeat: no-repeat;
	    background-position: 50% 50%;
	}

	.hero--x-small {
	    height: 94px;
	}

	.hero--small {
	    height: 305px;
	}

	.hero--medium {
	    height: 357px;
	}

	.hero--large {
	    height: 488px;
	}

	.hero--x-large {
	    height: 582px;
	}

	@media only screen and (max-width: 1269px) {
	    .hero--small {
	        height: 220px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .hero--x-small {
	        height: 200px;
	    }

	    .hero--small {
	        height: 160px;
	    }

	    .hero--medium {
	        height: 550px;
	    }

	    .hero--large {
	        height: 650px;
	    }

	    .hero--x-large {
	        height: 750px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .hero--small {
	        height: 130px;
	    }
	}

	.hero__overlay::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    background-color: #3d4246;
	    opacity: 0;
	    z-index: 1;
	}

	.hero__inner {
	    position: relative;
	    display: table-cell;
	    vertical-align: middle;
	    padding: 0;
	    z-index: 2;
	}

	.hero__inner .hero-content-text {
	    width: 35%;
	    float: none;
	    left: 9%;
	    position: relative;
	    top: -10px;
	    display: inline-block;
	    vertical-align: middle;
	    z-index: 1;
	}

	@media only screen and (max-width: 1439px) {
	    .hero__inner .hero-content-text {
	        width: 45%;
	        left: 5%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .hero__inner .hero-content-text {
	        width: 50%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .hero__inner .hero-content-text {
	        width: 70%;
	        top: 0;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .hero__inner .hero-content-text {
	        width: 100%;
	        padding: 10px 20px;
	    }
	}

	.hero__inner .hero-content-text .mega-subtitle--large {
	    font-size: 15px;
	    line-height: 24px;
	    color: white;
	    font-weight: 300;
	    margin: 0;
	}

	.hero__inner .hero-content-text h1.mega-title--large,
	.hero__inner .hero-content-text .mega-title--large.h1 {
	    font-size: 60px;
	    font-weight: 600;
	    letter-spacing: 0;
	    line-height: 70px;
	    color: white;
	    width: 100%;
	    margin: 40px 0 0;
	    text-transform: capitalize;
	}

	.hero__inner:before,
	.hero__inner:after {
	    bottom: 0;
	    content: "";
	    left: 50%;
	    opacity: 1;
	    -moz-opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    position: absolute;
	    right: 51%;
	    top: 0;
	    background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
	}

	.hero__inner:after {
	    left: 0;
	    bottom: 50%;
	    right: 0;
	    top: 50%;
	}

	.hero__overlay:hover .hero__inner:before,
	.hero__overlay:hover .hero__inner:after {
	    left: 15px;
	    right: 15px;
	    top: 15px;
	    bottom: 15px;
	    transition: all 500ms ease-in-out 0s;
	    -webkit-transition: all 500ms ease-in-out 0s;
	    -moz-transition: all 500ms ease-in-out 0s;
	    -o-transition: all 500ms ease-in-out 0s;
	    -ms-transition: all 500ms ease-in-out 0s;
	}

	.hero__btn {
	    margin-top: 15px;
	    background: #6c9228;
	    padding: 10px 15px 8px !important;
	    font-size: 12x;
	    letter-spacing: 0.4px;
	    font-weight: 500;
	    line-height: 20px;
	    text-transform: capitalize;
	    color: black !important;
	    border-radius: 4px;
	}

	.hero__btn:hover {
	    background: #000 !important;
	}

	@media only screen and (max-width: 989px) {
	    .hero__btn {
	        margin-top: 0;
	        font-size: 11px;
	        padding: 4px 10px 0px !important;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .hero__btn {
	        padding: 4px 10px 3px !important;
	    }
	}

	/*================ Quote slider ================*/
	.quote-icon {
	    display: block;
	    margin: 0;
	    text-align: left;
	}

	.quotes-slider__text {
	    font-size: 1.13462em;
	    padding: 0 15px;
	}

	.quotes-slider__text cite {
	    font-size: 0.76471em;
	    font-style: normal;
	}

	.quotes-slider__text p {
	    margin-bottom: 0;
	    font-size: 13px;
	    line-height: 22px;
	    letter-spacing: 1px;
	    color: #a2a2a2;
	}

	.quotes-slider__text p+cite {
	    margin-top: 0;
	}

	.slick-dotted.quotes-slider.slick-initialized {
	    cursor: grab;
	    cursor: -moz-grab;
	    cursor: -webkit-grab;
	}

	.quotes-wrapper .slick-dots {
	    position: relative;
	    bottom: 0;
	    margin-top: 55px;
	}

	.quotes-wrapper .slick-dots li button::before {
	    color: black;
	    opacity: 0.2;
	    -khtml-opacity: 0.2;
	    -webkit-opacity: 0.2;
	    -moz-opacity: 0.2;
	}

	.quotes-wrapper .slick-slide[tabindex="0"] {
	    outline: none;
	}

	.logo-bar {
	    margin: 0;
	    position: relative;
	    text-align: center;
	    width: 100%;
	}

	@media only screen and (min-width: 750px) {
	    .logo-bar--large {
	        margin-bottom: -55px;
	    }
	}

	.logo-bar__item {
	    display: inline-block;
	    vertical-align: middle;
	}

	@media only screen and (max-width: 479px) {
	    .logo-bar__item {
	        padding: 0 15px;
	    }
	}

	@media only screen and (min-width: 750px) {
	    .logo-bar__item--large {
	        margin-bottom: 55px;
	    }
	}

	.logo-bar__image {
	    display: block;
	    margin: 0 auto;
	}

	.logo-bar__link {
	    display: block;
	    -ms-transition: all 0.2s ease 0s;
	    -webkit-transition: all 0.2s ease 0s;
	    transition: all 0.2s ease 0s;
	    opacity: 0.3;
	    -khtml-opacity: 0.3;
	    -webkit-opacity: 0.3;
	    -moz-opacity: 0.3;
	}

	.logo-bar__link:hover {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.map-section {
	    position: relative;
	    width: 100%;
	    overflow: hidden;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -ms-flex-align: center;
	    -webkit-align-items: center;
	    -moz-align-items: center;
	    -ms-align-items: center;
	    -o-align-items: center;
	    align-items: center;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -webkit-flex-direction: row;
	    -moz-flex-direction: row;
	    -ms-flex-direction: row;
	    flex-direction: row;
	}

	@media only screen and (min-width: 750px) {
	    .map-section {
	        min-height: 500px;
	    }
	}

	.map-section--load-error {
	    height: auto;
	}

	.map-section__wrapper {
	    height: 100%;
	    flex-shrink: 0;
	    flex-grow: 1;
	    -ms-flex-preferred-size: 100%;
	    -webkit-flex-basis: 100%;
	    -moz-flex-basis: 100%;
	    flex-basis: 100%;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -webkit-flex-direction: row;
	    -moz-flex-direction: row;
	    -ms-flex-direction: row;
	    flex-direction: row;
	}

	.map-section__overlay {
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    z-index: 2;
	}

	.map-section__error {
	    position: relative;
	    z-index: 3;
	}

	@media only screen and (min-width: 750px) {
	    .map-section__error {
	        position: absolute;
	        margin: 0 2rem;
	        top: 50%;
	        -ms-transform: translateY(-50%);
	        -webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	    }
	}

	.map-section__content-wrapper {
	    position: relative;
	    text-align: center;
	    height: 100%;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -ms-flex-preferred-size: 100%;
	    -webkit-flex-basis: 100%;
	    -moz-flex-basis: 100%;
	    flex-basis: 100%;
	    flex-grow: 0;
	}

	@media only screen and (min-width: 750px) and (max-width: 989px) {
	    .map-section__content-wrapper {
	        -ms-flex-preferred-size: 50%;
	        -webkit-flex-basis: 50%;
	        -moz-flex-basis: 50%;
	        flex-basis: 50%;
	    }
	}

	@media only screen and (min-width: 990px) {
	    .map-section__content-wrapper {
	        -ms-flex-preferred-size: 33%;
	        -webkit-flex-basis: 33%;
	        -moz-flex-basis: 33%;
	        flex-basis: 33%;
	    }
	}

	.map-section__content {
	    position: relative;
	    display: inline-block;
	    background-color: rgba(112, 112, 112, 0.05);
	    padding: 35px;
	    width: 100%;
	    text-align: center;
	    z-index: 3;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -ms-flex-align: center;
	    -webkit-align-items: center;
	    -moz-align-items: center;
	    -ms-align-items: center;
	    -o-align-items: center;
	    align-items: center;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -webkit-align-content: center;
	    -ms-align-content: center;
	    align-content: center;
	}

	.map-section__content>* {
	    width: 100%;
	}

	@media only screen and (min-width: 750px) {
	    .map-section__content {
	        background-color: white;
	        margin: 15px 0;
	        min-height: 300px;
	    }
	}

	.map-section--load-error .map-section__content {
	    position: static;
	    transform: translateY(0);
	}

	.map-section__link {
	    display: block;
	    position: absolute;
	    top: 0;
	    left: 50%;
	    max-width: none;
	    width: 100%;
	    height: 100%;
	    z-index: 2;
	    -ms-transform: translateX(-50%);
	    -webkit-transform: translateX(-50%);
	    transform: translateX(-50%);
	}

	.map-section__container {
	    max-width: none;
	    width: 100%;
	    height: 55vh;
	    left: 0;
	}

	@media only screen and (min-width: 750px) {
	    .map-section__container {
	        position: absolute;
	        height: 100%;
	        top: 0;
	        width: 130%;
	    }
	}

	.map_section__directions-btn [class^="icon"] {
	    height: 1em;
	}

	.map_section__directions-btn * {
	    vertical-align: middle;
	}

	.map-section__background-wrapper {
	    overflow: hidden;
	    position: relative;
	    -ms-flex-preferred-size: 100%;
	    -webkit-flex-basis: 100%;
	    -moz-flex-basis: 100%;
	    flex-basis: 100%;
	}

	@media only screen and (min-width: 750px) {
	    .map-section__background-wrapper {
	        position: absolute;
	        left: 0;
	        top: 0;
	        width: 100%;
	        height: 100%;
	    }
	}

	.map-section--onboarding .map-section__background-wrapper {
	    min-height: 55vh;
	}

	.map-section__image {
	    height: 100%;
	    position: relative;
	    top: 0;
	    left: 0;
	    width: 100%;
	    background-size: cover;
	    background-position: center;
	}

	@media only screen and (min-width: 750px) {
	    .map-section__image {
	        position: absolute;
	    }
	}

	.map-section--display-map .map-section__image {
	    display: none !important;
	}

	.map-section--load-error .map-section__image {
	    display: block !important;
	}

	.gm-style-cc,
	.gm-style-cc+div {
	    visibility: hidden;
	}

	.image-bar {
	    overflow: hidden;
	    margin: 0 -20px;
	}

	@media only screen and (max-width: 1269px) {
	    .image-bar {
	        margin: 0 -10px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .image-bar {
	        max-width: 100%;
	        margin: 0 auto;
	    }
	}

	.image-bar__item {
	    outline: none;
	    display: block;
	    color: white;
	    background-repeat: no-repeat;
	    background-position: 50% 50%;
	    background-size: cover;
	}

	.image-bar__link:focus {
	    position: relative;
	    z-index: 2;
	}

	.image-bar__link:focus .image-bar__content {
	    outline: 1px dotted #212121;
	    outline: 5px auto -webkit-focus-ring-color;
	}

	.image-bar__content,
	.image-bar__item {
	    position: relative;
	    width: 100%;
	}

	.image-bar--x-small .image-bar__content,
	.image-bar--x-small .image-bar__item {
	    height: 150px;
	}

	.image-bar--small .image-bar__content,
	.image-bar--small .image-bar__item {
	    height: 250px;
	}

	.image-bar--medium .image-bar__content,
	.image-bar--medium .image-bar__item {
	    height: 350px;
	}

	@media only screen and (max-width: 1269px) {

	    .image-bar--medium .image-bar__content,
	    .image-bar--medium .image-bar__item {
	        height: 206px;
	    }
	}

	@media only screen and (max-width: 989px) {

	    .image-bar--medium .image-bar__content,
	    .image-bar--medium .image-bar__item {
	        height: 223px;
	    }
	}

	@media (max-width: 550px) {

	    .image-bar--medium .image-bar__content,
	    .image-bar--medium .image-bar__item {
	        height: 154px;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .image-bar--medium .image-bar__content,
	    .image-bar--medium .image-bar__item {
	        height: 100%;
	    }
	}

	.image-bar--large .image-bar__content,
	.image-bar--large .image-bar__item {
	    height: 400px;
	}

	.image-bar--x-large .image-bar__content,
	.image-bar--x-large .image-bar__item {
	    height: 450px;
	}

	.image-bar .grid__item {
	    padding: 0 20px 40px 20px;
	}

	.image-bar .grid__item.medium-up--one-quarter {
	    padding: 0 15px 30px 15px;
	}

	@media only screen and (max-width: 1439px) {
	    .image-bar .grid__item.medium-up--one-quarter {
	        padding: 0 12px 24px 12px;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .image-bar .grid__item {
	        padding: 0 10px 20px 10px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .image-bar .grid__item.medium-up--one-half {
	        width: 50%;
	    }

	    .image-bar .grid__item.medium-up--one-third,
	    .image-bar .grid__item.medium-up--one-quarter {
	        width: 33.33%;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .image-bar .grid__item.medium-up--one-half,
	    .image-bar .grid__item.medium-up--one-third,
	    .image-bar .grid__item.medium-up--one-quarter {
	        width: 100%;
	        padding: 0 0 20px 0;
	    }
	}

	.image-bar .grid__item:hover .image-bar__content:before {
	    -ms-transition: all 0.2s ease 0s;
	    -webkit-transition: all 0.2s ease 0s;
	    transition: all 0.2s ease 0s;
	    background-color: #000;
	    opacity: 0.5;
	}

	.image-bar .grid__item:hover .image-bar__caption {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.image-bar__overlay::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    background-color: #3d4246;
	    opacity: 0;
	}

	.image-bar__caption {
	    position: absolute;
	    font-size: 15px;
	    top: 50%;
	    -ms-transform: translateY(-50%);
	    -webkit-transform: translateY(-50%);
	    transform: translateY(-50%);
	    -ms-transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    -webkit-transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    width: 100%;
	    line-height: 24px;
	    text-align: center;
	    color: white;
	    text-transform: capitalize;
	    letter-spacing: 0.8px;
	    font-weight: 600;
	    margin: 0;
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	}

	.image-bar__caption:hover {
	    color: black;
	}

	.collection-grid {
	    margin-bottom: -15px;
	    overflow: auto;
	}

	.collection-grid-item {
	    position: relative;
	    width: 100%;
	    padding-bottom: 100%;
	    margin-bottom: 15px;
	}

	@media only screen and (min-width: 750px) {
	    .collection-grid-item {
	        margin-bottom: 0;
	    }
	}

	.collection-grid-item__title {
	    color: black;
	    position: relative;
	    text-align: center;
	    width: 100%;
	    top: auto;
	    padding: 0 5px;
	    font-size: 17px;
	    margin: 20px 0;
	    transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    -webkit-transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    -moz-transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    -ms-transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    -o-transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
	    hyphens: auto;
	}

	@media only screen and (min-width: 750px) {
	    .collection-grid-item__title {
	        padding: 0 15px;
	    }
	}

	.collection-grid-item__link {
	    position: absolute;
	    top: 0;
	    left: 0;
	    bottom: 0;
	    right: 0;
	}

	.collection-grid-item__link:hover .collection-grid-item__title-wrapper::before,
	.collection-grid-item__link:focus .collection-grid-item__title-wrapper::before {
	    opacity: 0.4;
	    -khtml-opacity: 0.4;
	    -webkit-opacity: 0.4;
	    -moz-opacity: 0.4;
	}

	.collection-grid-item__link:focus {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.collection-grid-item__overlay {
	    position: relative;
	    display: block;
	    height: 100%;
	    width: 100%;
	    background-repeat: no-repeat;
	    background-position: center top;
	}

	.collection-grid-item__title-wrapper::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	}

	.custom-content {
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    width: 100%;
	    -ms-flex-align: stretch;
	    -webkit-align-items: stretch;
	    -moz-align-items: stretch;
	    -ms-align-items: stretch;
	    -o-align-items: stretch;
	    align-items: stretch;
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    width: auto;
	    margin-bottom: -30px;
	    margin-left: -30px;
	}

	@media only screen and (max-width: 749px) {
	    .custom-content {
	        margin-bottom: -22px;
	        margin-left: -22px;
	    }
	}

	.custom__item {
	    -webkit-flex: 0 0 auto;
	    -moz-flex: 0 0 auto;
	    -ms-flex: 0 0 auto;
	    flex: 0 0 auto;
	    margin-bottom: 30px;
	    padding-left: 30px;
	    max-width: 100%;
	}

	@media only screen and (max-width: 749px) {
	    .custom__item {
	        -webkit-flex: 0 0 auto;
	        -moz-flex: 0 0 auto;
	        -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	        padding-left: 22px;
	        margin-bottom: 22px;
	    }

	    .custom__item.small--one-half {
	        -webkit-flex: 1 0 50%;
	        -moz-flex: 1 0 50%;
	        -ms-flex: 1 0 50%;
	        flex: 1 0 50%;
	        max-width: 400px;
	        margin-left: auto;
	        margin-right: auto;
	    }
	}

	.custom__item .collection-grid-item {
	    margin-bottom: 0;
	}

	.custom__item--image {
	    margin: 0 auto;
	    padding-left: 0;
	}

	.custom__item-inner {
	    position: relative;
	    display: block;
	    text-align: left;
	    max-width: 100%;
	}

	.custom__item-inner--video,
	.custom__item-inner--collection,
	.custom__item-inner--html {
	    display: block;
	}

	.custom__item-inner--image {
	    position: relative;
	    margin: 0 auto;
	}

	.custom__image {
	    width: 100%;
	    display: block;
	    position: absolute;
	    top: 0;
	}

	/*================ section-featured-collections ================*/
	#shopify-section-featured-collections {
	    padding-top: 0;
	}

	/*================ Flex item alignment ================*/
	.align--top-middle {
	    text-align: center;
	}

	.align--top-right {
	    text-align: right;
	}

	.align--middle-left {
	    -ms-flex-item-align: center;
	    -webkit-align-self: center;
	    align-self: center;
	}

	.align--center {
	    -ms-flex-item-align: center;
	    -webkit-align-self: center;
	    align-self: center;
	    text-align: center;
	}

	.align--middle-right {
	    -ms-flex-item-align: center;
	    -webkit-align-self: center;
	    align-self: center;
	    text-align: right;
	}

	.align--bottom-left {
	    -ms-flex-item-align: flex-end;
	    -webkit-align-self: flex-end;
	    align-self: flex-end;
	}

	.align--bottom-middle {
	    -ms-flex-item-align: flex-end;
	    -webkit-align-self: flex-end;
	    align-self: flex-end;
	    text-align: center;
	}

	.align--bottom-right {
	    -ms-flex-item-align: flex-end;
	    -webkit-align-self: flex-end;
	    align-self: flex-end;
	    text-align: right;
	}

	.newsletter-section {
	    padding-top: 55px;
	}

	.index-section--newsletter-background {
	    background-color: rgba(112, 112, 112, 0.05);
	}

	.rich-text__heading--large {
	    font-size: 1.4em;
	}

	.rich-text__heading--small {
	    font-size: 0.88em;
	}

	.rich-text__text--large {
	    font-size: 1.07692em;
	}

	.rich-text__text--small {
	    font-size: 0.84615em;
	}

	.product-card {
	    position: relative;
	}

	.product-card.page-content .list-view-item__title-column {
	    float: left;
	    width: 100%;
	}

	.product-price__sale-label,
	.grid-product__on-sale {
	    background: #6c9228;
	    color: #fff;
	    cursor: default;
	    display: inline-block;
	    vertical-align: middle;
	    font-size: 11px;
	    font-weight: 400;
	    line-height: 14px;
	    left: 0;
	    top: 5px;
	    padding: 4px 5px 2px;
	    position: absolute;
	    text-transform: capitalize;
	    white-space: nowrap;
	    z-index: 999999;
	    border-radius: 4px;
	}

	@media only screen and (max-width: 1269px) {

	    .product-price__sale-label,
	    .grid-product__on-sale {
	        top: 5px;
	        left: 5px;
	    }
	}

	@media only screen and (max-width: 989px) {

	    .product-price__sale-label,
	    .grid-product__on-sale {
	        left: 0;
	    }
	}

	.main-content {
	    margin: 30px auto 0;
	}

	.template-index .main-content {
	    margin: 0;
	}

	.template-index .main-container.medium-up--three-quarters {
	    width: 100% !important;
	    float: left;
	    background: none;
	    padding: 0;
	    border: none;
	}

	.template-index .article__tags.rte {
	    display: none;
	}

	.without-sidebar-main-container .page-customer.medium-up--one-half {
	    margin: 0 auto;
	    float: none;
	    display: block;
	}

	.without-sidebar-main-container .page-customer #RecoverPasswordForm>.form-vertical {
	    margin-top: 30px;
	}

	.without-sidebar-main-container .page-customer #RecoverPasswordForm>.form-vertical .tm-btn.btn,
	.without-sidebar-main-container .page-customer #RecoverPasswordForm>.form-vertical .shopify-payment-button .tm-btn.shopify-payment-button__button--unbranded,
	.shopify-payment-button .without-sidebar-main-container .page-customer #RecoverPasswordForm>.form-vertical .tm-btn.shopify-payment-button__button--unbranded {
	    margin-bottom: 10px;
	}

	.without-sidebar-main-container .page-customer #RecoverHeading,
	.without-sidebar-main-container .page-customer #LoginHeading {
	    outline: none;
	}

	.side-bar {
	    float: left;
	}

	.side-bar.medium-up--one-quarter {
	    width: 270px;
	    margin: 0px 30px 0 0;
	}

	@media only screen and (max-width: 1269px) {
	    .side-bar.medium-up--one-quarter {
	        width: 240px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .side-bar.medium-up--one-quarter {
	        width: 100%;
	        float: left;
	        padding: 0;
	        margin: 0;
	    }
	}

	.side-bar .side-box {
	    margin-bottom: 30px;
	    float: left;
	    width: 100%;
	    border: 3px solid #f0f0f0;
	    border-radius: 4px;
	}

	.side-bar .filter-tag {
	    width: 100%;
	    margin-left: 0;
	    float: left;
	    position: relative;
	}

	.side-bar .filter-tag .category-tags li.single-tag {
	    width: auto;
	    float: none;
	    display: inline-block;
	    vertical-align: top;
	    padding: 7px 10px 3px;
	    border: 1px solid #e8e9eb;
	    line-height: 20px;
	    margin: 0 3px 8px 0;
	    border-radius: 4px;
	}

	.side-bar .filter-tag .category-tags li.single-tag:hover {
	    border: 1px solid #000;
	}

	.side-bar .filter-tag .category-tags li.single-tag:hover a {
	    color: #000;
	}

	.side-bar .filter-tag .category-tags li.single-tag a {
	    line-height: 20px;
	}

	.side-bar .sidebar-banners {
	    width: 100%;
	    float: left;
	}

	.side-bar .sidebar-banners .single-banner img {
	    border-radius: 4px;
	}

	.side-bar .site-cat--has-dropdown .site-nav__dropdown {
	    left: 0;
	    min-width: 100%;
	    padding: 0;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    top: 0;
	    visibility: visible;
	    display: none;
	    float: left;
	    background: white;
	    position: relative;
	    margin: 0;
	    border: none;
	    box-shadow: none;
	    -webkit-box-shadow: none;
	    -moz-box-shadow: none;
	    transform: none;
	    -webkit-transform: none;
	    -ms-transform: none;
	    -o-transform: none;
	    -moz-transform: none;
	    transition: none;
	    -webkit-transition: none;
	    -moz-transition: none;
	    -ms-transition: none;
	    -o-transition: none;
	}

	.side-bar .site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist {
	    box-shadow: none;
	    -webkit-box-shadow: none;
	    -moz-box-shadow: none;
	    border: none;
	    width: 100%;
	    float: left;
	    padding: 0;
	    margin-bottom: 10px;
	    margin-top: 10px;
	    background-color: white;
	}

	.side-bar .site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-item {
	    border: none;
	    float: left;
	    width: 100%;
	    margin: 0 0 5px 0;
	    padding: 0;
	    position: relative;
	}

	.side-bar .site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-item .site-nav__link {
	    color: #707070;
	    margin: 0;
	    font-weight: normal;
	    line-height: 20px;
	    font-size: 13px;
	    padding-left: 12px;
	}

	.side-bar .site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-item .site-nav__link:hover {
	    color: #6c9228;
	}

	.side-bar .site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .grand-child-has-dropdown {
	    display: none;
	    padding: 0 15px;
	}

	.side-bar .site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .grand-child-has-dropdown li {
	    padding: 0;
	}

	.main-container {
	    width: 100%;
	    float: right;
	    min-height: 400px;
	}

	.main-container.medium-up--three-quarters {
	    width: calc(100% - 300px);
	}

	@media only screen and (max-width: 1269px) {
	    .main-container.medium-up--three-quarters {
	        width: calc(100% - 270px);
	    }
	}

	@media only screen and (max-width: 989px) {
	    .main-container.medium-up--three-quarters {
	        width: 100%;
	        border-left: 0;
	        padding: 0 0 30px;
	    }
	}

	.main-container.medium-up--three-quarters .single-artical-page .single-blog_block {
	    text-align: left;
	}

	.main-container.without-sidebar-main-container {
	    width: 100%;
	    margin: 0;
	    padding-top: 0;
	    padding-bottom: 30px;
	}

	@media only screen and (max-width: 749px) {
	    .main-container.without-sidebar-main-container {
	        padding-bottom: 0;
	    }
	}

	.main-container .single-artical-page .single-blog_block {
	    width: 100%;
	    text-align: center;
	    display: block;
	    float: left;
	}

	h3.box-heading,
	.box-heading.h3 {
	    font-size: 14px;
	    color: #ffffff;
	    line-height: 20px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 1px;
	    margin: 0;
	    padding: 16px 15px 14px;
	    position: relative;
	    width: 100%;
	    float: left;
	    background: linear-gradient(152deg, #0f776d, #00d048);
	    border-radius: 5px 5px 0 0;
	}

	@media only screen and (max-width: 749px) {

	    h3.box-heading,
	    .box-heading.h3 {
	        padding: 12px 15px 10px;
	    }
	}

	.box-content {
	    padding: 15px;
	    float: left;
	    width: 100%;
	    position: relative;
	    display: block;
	}

	@media only screen and (max-width: 989px) {
	    .box-content {
	        display: none;
	    }
	}

	.box-content li {
	    padding: 5px 0;
	    float: left;
	    width: 100%;
	    position: relative;
	}

	.box-content li a {
	    line-height: 24px;
	    font-size: 13px;
	    text-transform: capitalize;
	    color: #707070;
	    display: block;
	    position: relative;
	}

	.box-content li.product-item {
	    margin-bottom: 10px;
	}

	.box-content li.product-item .product-block .left-block .sca-qv-button {
	    display: none !important;
	}

	.box-content li.product-item .left-block a.shop-now {
	    border: 1px solid #e8e9eb;
	    border-radius: 4px;
	}

	.box-content li.product-item .left-block a.shop-now img {
	    border-radius: 4px;
	}

	.box-content li.product-item:nth-child(n+5) {
	    margin-bottom: 0;
	}

	.sidebar-products .product-item {
	    float: left;
	    padding: 0;
	    width: 100%;
	    margin: 5px 0;
	    border: none;
	    box-shadow: none;
	    -webkit-box-shadow: none;
	    -moz-box-shadow: none;
	}

	.sidebar-products .product-item .product-block {
	    width: 100%;
	    float: left;
	}

	.sidebar-products .product-item .product-block .left-block {
	    float: left;
	    margin: 0 15px 0 0;
	}

	.sidebar-products .product-item .product-block .right-block {
	    overflow: hidden;
	    margin: 0;
	}

	.sidebar-products .product-item .product-block .right-block h4,
	.sidebar-products .product-item .product-block .right-block .h4 {
	    margin: 0;
	    width: 90%;
	    white-space: nowrap;
	    text-overflow: ellipsis;
	    overflow: hidden;
	    word-wrap: break-word;
	}

	.sidebar-products .product-item .product-block .right-block .price-item {
	    font-size: 14px;
	}

	li.product-item:nth-child(n+4) {
	    display: none;
	}

	.product-item-grid .grid__item.product:nth-child(5n+5) .full-width-link {
	    border-right: none;
	}

	@media only screen and (max-width: 1269px) {
	    .product-item-grid .grid__item.product:nth-child(5n+5) .full-width-link {
	        border-right: 1px solid #e8e9eb;
	    }

	    .product-item-grid .grid__item.product:nth-child(4n+4) .full-width-link {
	        border-right: none;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .product-item-grid .grid__item.product:nth-child(4n+4) .full-width-link {
	        border-right: 1px solid #e8e9eb;
	    }

	    .product-item-grid .grid__item.product:nth-child(3n+3) .full-width-link {
	        border-right: none;
	    }
	}

	@media (max-width: 550px) {
	    .product-item-grid .grid__item.product:nth-child(3n+3) .full-width-link {
	        border-right: 1px solid #e8e9eb;
	    }

	    .product-item-grid .grid__item.product:nth-child(2n+2) .full-width-link {
	        border-right: none;
	    }
	}

	.product-item-grid .grid__item.product:last-child .full-width-link {
	    border-right: none;
	}

	@media only screen and (min-width: 990px) {
	    .template-collection #Collection .product-item-grid .grid__item.product:nth-child(4n+4) .full-width-link {
	        border-right: 1px solid #e8e9eb;
	    }

	    .template-collection #Collection .product-item-grid .grid__item.product:nth-child(3n+3) .full-width-link {
	        border-right: none;
	    }
	}

	@media only screen and (min-width: 1270px) {
	    .template-collection #Collection .product-item-grid .grid__item.product:nth-child(4n+4) .full-width-link {
	        border-right: none;
	    }

	    .template-collection #Collection .product-item-grid .grid__item.product:nth-child(3n+3) .full-width-link,
	    .template-collection #Collection .product-item-grid .grid__item.product:nth-child(5n+5) .full-width-link {
	        border-right: 1px solid #e8e9eb;
	    }
	}

	.template-collection #Collection .product-item-grid .grid__item.product:last-child .full-width-link {
	    border-right: none;
	}

	.template-collection .collection-header>.page-width {
	    padding: 0;
	}

	.template-collection .collection-header .collection-hero {
	    margin-top: 0;
	    margin-bottom: 20px;
	    float: left;
	    width: 100%;
	}

	.template-collection .collection-header .collection-hero .collection-hero__image {
	    height: 180px;
	}

	@media (max-width: 1600px) {
	    .template-collection .collection-header .collection-hero .collection-hero__image {
	        height: 175px;
	    }
	}

	@media only screen and (max-width: 1439px) {
	    .template-collection .collection-header .collection-hero .collection-hero__image {
	        height: 150px;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .template-collection .collection-header .collection-hero .collection-hero__image {
	        height: 110px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .template-collection .collection-header .collection-hero .collection-hero__image {
	        height: 121px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-collection .collection-header .collection-hero .collection-hero__image {
	        height: 100px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .template-collection .collection-header .collection-hero .collection-hero__image {
	        height: 80px;
	    }
	}

	.template-collection .collection-header .collection-description {
	    margin: 0 0 20px;
	}

	.template-collection .collection-header .filters-toolbar-wrapper {
	    margin-top: 0;
	    border-bottom: 1px solid #e8e9eb;
	    padding-bottom: 30px;
	}

	.template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item-wrapper {
	    float: left;
	    width: auto;
	}

	@media only screen and (max-width: 749px) {
	    .template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item-wrapper {
	        float: none;
	        width: 100%;
	        display: inline-block;
	        vertical-align: top;
	        text-align: center;
	    }
	}

	.template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child {
	    display: inline-block;
	    vertical-align: middle;
	    width: auto;
	    text-align: left;
	    margin-right: 20px;
	}

	@media only screen and (max-width: 749px) {
	    .template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child {
	        float: none;
	        margin: 0;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child {
	        display: block;
	        text-align: center;
	        margin: 15px 0;
	    }

	    .template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child:last-child {
	        margin-bottom: 0;
	    }
	}

	.template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child.filters-toolbar__input-wrapper {
	    margin-left: 10px;
	}

	.template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item--count {
	    text-align: right;
	    float: right;
	}

	@media only screen and (max-width: 749px) {
	    .template-collection .collection-header .filters-toolbar-wrapper .filters-toolbar__item--count {
	        width: 100%;
	        text-align: center;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-collection .collection-header .filters-toolbar-wrapper {
	        padding-bottom: 10px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .template-collection .collection-header .filters-toolbar-wrapper {
	        padding-bottom: 0;
	        float: left;
	        width: 100%;
	    }
	}

	.template-collection .collection-header .section-header {
	    text-align: left !important;
	    border-bottom: none;
	    margin-bottom: 0;
	    padding-bottom: 0;
	}

	.template-collection .collection-header .section-header h1,
	.template-collection .collection-header .section-header .h1 {
	    font-size: 19px;
	    color: black;
	    text-transform: capitalize;
	    letter-spacing: 0.8px;
	    line-height: 24px;
	    margin-bottom: 15px;
	}

	.template-collection .collection-header .section-header .rte {
	    margin-bottom: 30px;
	    padding-bottom: 0;
	}

	.site-cat--has-dropdown .site-nav__dropdown {
	    position: absolute;
	    left: 100%;
	    visibility: hidden;
	    transition: none;
	    transform: none;
	    opacity: 0;
	    top: 0 !important;
	}

	.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-item a {
	    color: black;
	}

	.side-bar #CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle>span.mobile_togglemenu:before,
	.side-bar #CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle>span.mobile_togglemenu:before {
	    color: #707070;
	    top: 6px;
	    right: 0;
	}

	.side-bar #CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle.active>span.mobile_togglemenu:before,
	.side-bar #CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle.active>span.mobile_togglemenu:before {
	    color: #707070;
	    top: 6px;
	    right: 0;
	}

	.side-bar #CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle.active .site-nav__childlist-grid .site-nav__childlist-item.toggle>span.mobile_togglemenu:before,
	.side-bar #CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle.active .site-nav__childlist-grid .site-nav__childlist-item.toggle>span.mobile_togglemenu:before {
	    top: 3px;
	}

	.side-bar #CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle.active .site-nav__childlist-grid .site-nav__childlist-item.toggle.active>span.mobile_togglemenu:before,
	.side-bar #CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle.active .site-nav__childlist-grid .site-nav__childlist-item.toggle.active>span.mobile_togglemenu:before {
	    top: 3px;
	}

	#CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle>span.mobile_togglemenu:before,
	#CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle>span.mobile_togglemenu:before {
	    color: white;
	    content: "+";
	    font-size: 19px;
	    font-weight: 400;
	    height: 20px;
	    margin: 0;
	    position: absolute;
	    right: 10px;
	    text-align: center;
	    top: 12px;
	    width: 20px;
	    cursor: pointer;
	}

	@media only screen and (max-width: 989px) {

	    #CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle>span.mobile_togglemenu:before,
	    #CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle>span.mobile_togglemenu:before {
	        top: 10px;
	    }
	}

	#CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle.active>span.mobile_togglemenu:before,
	#CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle.active>span.mobile_togglemenu:before {
	    color: white;
	    content: "-";
	    font-size: 24px;
	    font-weight: 400;
	    height: 20px;
	    margin: 0;
	    position: absolute;
	    right: 10px;
	    text-align: center;
	    top: 12px;
	    width: 20px;
	    cursor: pointer;
	}

	@media only screen and (max-width: 989px) {

	    #CategoryBox ul#SiteCat>li.site-cat--has-dropdown.toggle.active>span.mobile_togglemenu:before,
	    #CategoryBox ul#SiteCat .site-nav__childlist-item-dropdown.toggle.active>span.mobile_togglemenu:before {
	        top: 10px;
	    }
	}

	#CategoryBox ul#SiteCat>li .site-nav__childlist-item-dropdown.toggle>span.mobile_togglemenu:before {
	    right: -5px;
	    top: 5px;
	}

	#CategoryBox ul#SiteCat>li .site-nav__childlist-item-dropdown.toggle.active>span.mobile_togglemenu:before {
	    right: -5px;
	    top: 5px;
	}

	.side-bar h3.box-heading.toggle,
	.side-bar .box-heading.toggle.h3 {
	    /*       	 .mobile_togglemenu{
            	 &:before{
                	top: 1px !important;
               }
           } */
	}

	.side-bar h3.box-heading.toggle.active .mobile_togglemenu:before,
	.side-bar .box-heading.toggle.active.h3 .mobile_togglemenu:before {
	    -ms-transform: rotate(180deg);
	    -webkit-transform: rotate(180deg);
	    transform: rotate(180deg);
	    top: 0 !important;
	}

	.side-bar h3.box-heading.toggle .mobile_togglemenu:before,
	.side-bar .box-heading.toggle.h3 .mobile_togglemenu:before {
	    background-position: -5px -824px !important;
	}

	.side-bar h3.box-heading.toggle,
	.side-bar .box-heading.toggle.h3,
	.site-footer .link_title.toggle {
	    position: relative;
	    width: 100%;
	}

	.side-bar h3.box-heading.toggle .mobile_togglemenu,
	.side-bar .box-heading.toggle.h3 .mobile_togglemenu,
	.site-footer .link_title.toggle .mobile_togglemenu {
	    position: relative;
	    right: 0;
	    float: right;
	    width: 20px;
	    height: 20px;
	    border-radius: 50%;
	    background: #6c9228;
	    text-align: center;
	    display: inline-block;
	    vertical-align: middle;
	}

	.side-bar h3.box-heading.toggle .mobile_togglemenu:before,
	.side-bar .box-heading.toggle.h3 .mobile_togglemenu:before,
	.site-footer .link_title.toggle .mobile_togglemenu:before {
	    content: '';
	    position: absolute;
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -5px -824px;
	    width: 20px;
	    height: 20px;
	    top: 0;
	    right: 0;
	    left: 0;
	    cursor: pointer;
	    -ms-transition: all 0.2s ease-in-out 0s;
	    -webkit-transition: all 0.2s ease-in-out 0s;
	    transition: all 0.2s ease-in-out 0s;
	}

	.side-bar h3.box-heading.toggle.active .mobile_togglemenu:before,
	.side-bar .box-heading.toggle.active.h3 .mobile_togglemenu:before,
	.site-footer .link_title.toggle.active .mobile_togglemenu:before {
	    -ms-transform: rotate(180deg);
	    -webkit-transform: rotate(180deg);
	    transform: rotate(180deg);
	    top: 0;
	    left: 0;
	    background-position: -5px -825px !important;
	}

	.form-vertical .grid {
	    margin: 0 -10px;
	}

	.form-vertical .grid .grid__item {
	    padding: 60px 50px;
	    background: linear-gradient(152deg, #fff, #fff);
	    -moz-box-shadow: 0 15px 20px 0 rgba(1, 1, 1, 0.1);
	    -webkit-box-shadow: 0 15px 20px 0 rgba(1, 1, 1, 0.1);
	    box-shadow: 0 15px 20px 0 rgba(1, 1, 1, 0.11);
	    border-radius: 9px;
	    border: 1px solid #86c11d;
	}

	.form-vertical .tm-btn.btn input.btn,
	.form-vertical .shopify-payment-button .tm-btn.shopify-payment-button__button--unbranded input.btn,
	.shopify-payment-button .form-vertical .tm-btn.shopify-payment-button__button--unbranded input.btn,
	.form-vertical .tm-btn.btn .shopify-payment-button input.shopify-payment-button__button--unbranded,
	.shopify-payment-button .form-vertical .tm-btn.btn input.shopify-payment-button__button--unbranded,
	.form-vertical .shopify-payment-button .tm-btn.shopify-payment-button__button--unbranded input.shopify-payment-button__button--unbranded,
	.shopify-payment-button .form-vertical .tm-btn.shopify-payment-button__button--unbranded input.shopify-payment-button__button--unbranded {
	    padding: 0;
	    margin-bottom: 0;
	    background-color: transparent;
	}

	.contact-form {
	    text-align: center;
	    width: 100%;
	    float: left;
	}



	.contact-form label {
	    text-align: left !important;
	    color: #202020;
	    font-size: 13px;
	}

	.template-product .product-single__thumbnails-item {
	    padding: 0 10px;
	    width: auto;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .product-single__thumbnails-item {
	        padding: 0;
	    }
	}

	.template-product .main-container {
	    width: 100%;
	    padding: 0;
	    border: none;
	}

	.template-product .collection.related {
	    margin-top: 50px;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .collection.related {
	        margin-top: 30px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .template-product .collection.related {
	        margin-top: 20px;
	    }
	}

	.template-product .collection.related .owl-theme .owl-controls {
	    display: none !important;
	}

	.template-product .collection .medium-up--one-quarter {
	    width: 100% !important;
	}

	.template-product .product-template-top {
	    width: 100%;
	    margin: 0 auto;
	    text-align: center;
	    display: block;
	}

	.template-product .grid__item.product-single__photos {
	    margin: 0 !important;
	    padding: 0;
	    width: 40%;
	}

	@media only screen and (max-width: 1439px) {
	    .template-product .grid__item.product-single__photos {
	        width: 50%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-product .grid__item.product-single__photos {
	        width: 100%;
	        float: left;
	    }
	}

	.template-product .grid__item.product-single__photos.medium-up--one-half .tm-product-image {
	    width: 100%;
	}

	@media only screen and (max-width: 1269px) {
	    .template-product .grid__item.product-single__photos.medium-up--one-half.product-single__photos--full {
	        width: 100%;
	        border: none;
	    }
	}

	.template-product .grid__item.product-single__photos.medium-up--two-thirds .tm-product-image {
	    width: 100%;
	}

	@media only screen and (max-width: 1269px) {
	    .template-product .grid__item.product-single__photos.medium-up--two-thirds .tm-product-image {
	        width: 72%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .template-product .grid__item.product-single__photos.medium-up--two-thirds .tm-product-image {
	        width: 75%;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .template-product .grid__item.product-single__photos.medium-up--two-thirds .tm-product-image {
	        width: 74%;
	    }
	}

	.template-product .grid__item.product-single__photos.product-single__photos--full {
	    padding: 80px 0 0;
	}

	@media only screen and (max-width: 989px) {
	    .template-product .grid__item.product-single__photos.product-single__photos--full {
	        padding: 50px 0 0;
	    }
	}

	.template-product .grid__item.product-single__photos.product-single__photos--full .tm-product-image {
	    width: 42%;
	}

	@media only screen and (max-width: 1269px) {
	    .template-product .grid__item.product-single__photos.product-single__photos--full .tm-product-image {
	        width: 75%;
	        border: none;
	    }
	}

	.template-product .grid__item .tm-product-image {
	    position: relative;
	    display: block;
	    cursor: pointer;
	    float: left;
	}

	.template-product .grid__item.single-product_description {
	    padding: 0 0 0 40px;
	    float: left;
	    text-align: left;
	    width: 60%;
	}

	@media only screen and (max-width: 1439px) {
	    .template-product .grid__item.single-product_description {
	        width: 50%;
	        padding: 0 0 0 20px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .template-product .grid__item.single-product_description {
	        padding: 30px 0 0 30px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-product .grid__item.single-product_description {
	        width: 100%;
	        float: left;
	        padding-left: 0;
	    }
	}

	.template-product .grid__item.single-product_description .product-single__meta {
	    width: 100%;
	    float: left;
	}

	.template-product .grid__item.single-product_description .product-right-top {
	    width: 100%;
	    float: left;
	    color: black;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-single__title {
	    font-size: 20px;
	    line-height: 30px;
	    text-align: left;
	    color: black;
	}

	.template-product .grid__item.single-product_description .product-right-top .reviews {
	    float: left;
	    margin: 5px 0 15px;
	    width: 100%;
	}

	.template-product .grid__item.single-product_description .product-right-top .reviews .spr-badge-starrating {
	    margin: 0 15px 0 0 !important;
	}

	.template-product .grid__item.single-product_description .product-right-top .reviews .spr-icon.spr-icon-star,
	.template-product .grid__item.single-product_description .product-right-top .reviews .spr-icon.spr-icon-star-empty {
	    font-size: 13px !important;
	    width: 20px;
	}

	.template-product .grid__item.single-product_description .product-right-top .Product__vendor-block,
	.template-product .grid__item.single-product_description .product-right-top .Product__type-block,
	.template-product .grid__item.single-product_description .product-right-top .sku_wrapper,
	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper {
	    width: 80%;
	    float: left;
	    line-height: 24px;
	    margin-bottom: 3px;
	}

	.template-product .grid__item.single-product_description .product-right-top .Product__vendor-block span,
	.template-product .grid__item.single-product_description .product-right-top .Product__type-block span,
	.template-product .grid__item.single-product_description .product-right-top .sku_wrapper span,
	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper span {
	    color: black;
	    font-size: 13px;
	    font-weight: 600;
	    text-transform: capitalize;
	    text-align: left;
	    width: auto;
	    float: left;
	    min-width: 130px;
	}

	.template-product .grid__item.single-product_description .product-right-top .Product__vendor-block span:after,
	.template-product .grid__item.single-product_description .product-right-top .Product__type-block span:after,
	.template-product .grid__item.single-product_description .product-right-top .sku_wrapper span:after,
	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper span:after {
	    content: ":";
	    padding: 0 10px;
	    color: black;
	}

	.template-product .grid__item.single-product_description .product-right-top .Product__vendor-block p,
	.template-product .grid__item.single-product_description .product-right-top .Product__type-block p,
	.template-product .grid__item.single-product_description .product-right-top .sku_wrapper p,
	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper p {
	    width: auto;
	    display: inline-block;
	    vertical-align: middle;
	    margin: 0;
	    font-size: 13px;
	    text-transform: capitalize;
	    float: left;
	    text-align: left;
	    color: #707070;
	}

	@media only screen and (max-width: 1439px) {

	    .template-product .grid__item.single-product_description .product-right-top .Product__vendor-block,
	    .template-product .grid__item.single-product_description .product-right-top .Product__type-block,
	    .template-product .grid__item.single-product_description .product-right-top .sku_wrapper,
	    .template-product .grid__item.single-product_description .product-right-top .product-category_wrapper {
	        width: 100%;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper {
	    margin-bottom: 30px;
	    padding-bottom: 30px;
	    border-bottom: 1px solid #e8e9eb;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper ul.product-categories {
	    width: calc(100% - 130px);
	    display: inline-block;
	    vertical-align: middle;
	    float: left;
	    text-align: left;
	}

	@media only screen and (max-width: 479px) {
	    .template-product .grid__item.single-product_description .product-right-top .product-category_wrapper ul.product-categories {
	        width: 50%;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper ul li.single-category {
	    display: inline-block;
	    vertical-align: middle;
	    position: relative;
	    margin-right: 3px;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper ul li.single-category a {
	    color: #707070;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper ul li.single-category a:hover {
	    color: #000;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper ul li.single-category:after {
	    content: ",";
	    position: absolute;
	    right: -4px;
	    top: 0;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-category_wrapper ul li.single-category:last-child:after {
	    content: "";
	}

	.template-product .grid__item.single-product_description .product-right-top .cm-link,
	.template-product .grid__item.single-product_description .product-right-top .cm-link span {
	    font-size: 12px;
	    line-height: 24px;
	    background: transparent;
	    width: auto;
	    height: auto;
	    position: relative;
	    float: left;
	    color: black;
	    padding-left: 12px;
	}

	.template-product .grid__item.single-product_description .product-right-top .btn.btn-wishlist,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-wishlist.shopify-payment-button__button--unbranded,
	.template-product .grid__item.single-product_description .product-right-top .btn.btn-compare,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded {
	    float: left;
	    width: auto;
	    height: auto;
	    border-radius: 25px;
	    margin: 0 15px 0 0;
	    background: transparent;
	    margin-bottom: 0;
	    margin-bottom: 0;
	    padding: 0 !important;
	    line-height: 24px;
	}

	.template-product .grid__item.single-product_description .product-right-top .btn.btn-wishlist .cm-link svg,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded .cm-link svg,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-wishlist.shopify-payment-button__button--unbranded .cm-link svg,
	.template-product .grid__item.single-product_description .product-right-top .btn.btn-compare .cm-link svg,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded .cm-link svg,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded .cm-link svg {
	    width: 19px;
	    height: 14px;
	    position: relative;
	    top: 0px;
	    fill: black;
	    color: black;
	    left: -4px;
	    display: inline-block;
	    vertical-align: middle;
	}

	.template-product .grid__item.single-product_description .product-right-top .btn.btn-wishlist .cm-link svg.icon-cmheart,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded .cm-link svg.icon-cmheart,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-wishlist.shopify-payment-button__button--unbranded .cm-link svg.icon-cmheart,
	.template-product .grid__item.single-product_description .product-right-top .btn.btn-wishlist .cm-link svg.icon-compare,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded .cm-link svg.icon-compare,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-wishlist.shopify-payment-button__button--unbranded .cm-link svg.icon-compare,
	.template-product .grid__item.single-product_description .product-right-top .btn.btn-compare .cm-link svg.icon-cmheart,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded .cm-link svg.icon-cmheart,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded .cm-link svg.icon-cmheart,
	.template-product .grid__item.single-product_description .product-right-top .btn.btn-compare .cm-link svg.icon-compare,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded .cm-link svg.icon-compare,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded .cm-link svg.icon-compare {
	    top: 0;
	    left: 0;
	}

	@media only screen and (max-width: 479px) {

	    .template-product .grid__item.single-product_description .product-right-top .btn.btn-wishlist,
	    .template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-wishlist.shopify-payment-button__button--unbranded,
	    .template-product .grid__item.single-product_description .product-right-top .btn.btn-compare,
	    .template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded {
	        width: 100%;
	        margin: 5px 0;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .btn.btn-compare,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded {
	    margin-right: 0;
	    padding-left: 15px !important;
	    position: relative;
	}

	.template-product .grid__item.single-product_description .product-right-top .btn.btn-compare .icon-compare,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded .icon-compare,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded .icon-compare {
	    display: inline-block;
	    vertical-align: middle;
	}

	.template-product .grid__item.single-product_description .product-right-top .btn.btn-compare:before,
	.template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded:before,
	.shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded:before {
	    content: '';
	    background: #000;
	    width: 1px;
	    height: 15px;
	    position: absolute;
	    left: 0;
	    top: 3px;
	}

	@media only screen and (max-width: 479px) {

	    .template-product .grid__item.single-product_description .product-right-top .btn.btn-compare,
	    .template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded {
	        padding-left: 0 !important;
	    }

	    .template-product .grid__item.single-product_description .product-right-top .btn.btn-compare:before,
	    .template-product .grid__item.single-product_description .product-right-top .shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded:before,
	    .shopify-payment-button .template-product .grid__item.single-product_description .product-right-top .btn-compare.shopify-payment-button__button--unbranded:before {
	        background: transparent;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .product-form {
	    width: 100%;
	    float: left;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-form .product-form__item {
	    width: 100%;
	    float: left;
	    margin: 10px 0 20px;
	    padding: 0;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .grid__item.single-product_description .product-right-top .product-form .product-form__item {
	        margin: 10px 0;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .product-form .product-form__item label {
	    width: auto;
	    text-align: left;
	    color: black;
	    display: inline-block;
	    font-size: 13px;
	    font-weight: 600;
	    margin: 0;
	    text-transform: capitalize;
	}

	.template-product .grid__item.single-product_description .product-right-top .product-form .product-form__item label:after {
	    content: ":";
	    padding: 0 10px;
	    color: black;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .grid__item.single-product_description .product-right-top .product-form .product-form__item label {
	        min-width: 80px;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .product-form .product-form__item .single-option-selector {
	    padding: 8px 25px 8px 15px;
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	    width: auto;
	    text-transform: capitalize;
	    display: inline-block;
	    vertical-align: middle;
	    line-height: 20px;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .grid__item.single-product_description .product-right-top .product-form .product-form__item .single-option-selector {
	        width: 30%;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .product__price {
	    font-size: 21px;
	    line-height: 30px;
	    margin-bottom: 10px;
	    width: 100%;
	    float: left;
	}

	.template-product .grid__item.single-product_description .product-right-top .product__price .price .price__regular .price-item {
	    font-size: 21px;
	}

	.template-product .grid__item.single-product_description .product-right-top .product__price .price.price--on-sale .price__sale .price-item {
	    font-size: 21px;
	    letter-spacing: 1px;
	}

	.template-product .grid__item.single-product_description .product-right-top .product__price .price.price--on-sale .price__regular .price-item {
	    font-size: 16px;
	    letter-spacing: 1px;
	}

	.template-product .grid__item.single-product_description .product-right-top .price-addtocart {
	    width: 100%;
	    float: left;
	}

	.template-product .grid__item.single-product_description .product-right-top .price-addtocart .product-form__item--quantity {
	    -webkit-flex: 0 0 100px;
	    -moz-flex: 0 0 100px;
	    -ms-flex: 0 0 100px;
	    flex: 0 0 100px;
	    margin-bottom: 0;
	    width: 100%;
	    margin: 10px 0 0;
	    float: left;
	    display: inline-block;
	    vertical-align: middle;
	}

	.template-product .grid__item.single-product_description .product-right-top .price-addtocart .product-form__item--quantity #Quantity-product-template {
	    font-size: 13px;
	    line-height: 20px;
	    display: inline-block;
	    padding: 8px 5px 8px 15px;
	    width: 100px;
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	    min-height: auto;
	}

	@media only screen and (max-width: 479px) {
	    .template-product .grid__item.single-product_description .product-right-top .price-addtocart .product-form__item--quantity #Quantity-product-template {
	        width: 180px;
	    }
	}

	.template-product .grid__item.single-product_description .product-right-top .price-addtocart .product-form__item--submit {
	    margin: 25px 0 0 0;
	    padding: 0;
	    width: auto;
	    display: inline-block;
	    float: none;
	    vertical-align: middle;
	}

	.template-product .grid__item.single-product_description.medium-up--one-third.single-product_description {
	    min-height: 1230px;
	}

	@media only screen and (max-width: 1439px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third.single-product_description {
	        min-height: 1110px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third.single-product_description {
	        min-height: auto;
	    }
	}

	.template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .product-category_wrapper ul.product-categories {
	    width: 62%;
	}

	@media only screen and (max-width: 1269px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .product-category_wrapper ul.product-categories {
	        width: 50%;
	    }
	}

	.template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .product-form__item .single-option-selector {
	    width: 250px;
	}

	@media only screen and (max-width: 1269px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .product-form__item .single-option-selector {
	        width: 180px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .product-form__item .single-option-selector {
	        width: 400px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .product-form__item .single-option-selector {
	        width: 200px;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .price-addtocart .product-form__item--quantity #Quantity-product-template {
	        width: 150px;
	    }
	}

	@media only screen and (max-width: 1269px) and (max-width: 479px) {
	    .template-product .grid__item.single-product_description.medium-up--one-third .product-right-top .price-addtocart .product-form__item--quantity #Quantity-product-template {
	        width: 180px;
	    }
	}

	.template-product .grid__item.single-product_description.product-single__photos--full.single-product_description {
	    border-left: none;
	    margin: 0;
	}

	@media only screen and (max-width: 1439px) {
	    .template-product .grid__item.single-product_description.product-single__photos--full.single-product_description {
	        padding: 80px 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .template-product .grid__item.single-product_description.product-single__photos--full.single-product_description {
	        padding: 50px 0;
	    }
	}

	.template-product .thumbnails-wrapper {
	    float: left;
	    height: 100%;
	    padding: 0;
	    margin: 0 auto;
	    position: relative;
	    text-align: center;
	    width: 100%;
	}

	.template-product .thumbnails-wrapper.thumbnails-slider--active {
	    padding: 0 20px;
	}

	@media only screen and (max-width: 1439px) {
	    .template-product .thumbnails-wrapper.thumbnails-slider--active {
	        padding: 0;
	    }
	}

	.template-product .thumbnails-wrapper .slider.owl-carousel .owl-nav button.owl-prev,
	.template-product .thumbnails-wrapper .slider.owl-carousel .owl-nav button.owl-next {
	    opacity: 1;
	}

	.template-product .thumbnails-wrapper .slider.owl-carousel .owl-nav button.owl-prev {
	    left: -20px;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .thumbnails-wrapper .slider.owl-carousel .owl-nav button.owl-prev {
	        left: 0;
	    }
	}

	.template-product .thumbnails-wrapper .slider.owl-carousel .owl-nav button.owl-next {
	    right: -20px;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .thumbnails-wrapper .slider.owl-carousel .owl-nav button.owl-next {
	        right: 0;
	    }
	}

	.template-product .product-single__description {
	    width: 100%;
	    display: block;
	    margin: 50px auto 0;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .product-single__description {
	        margin: 20px 0 0 0;
	    }
	}

	.template-product .product-single__description .product-description {
	    width: 100%;
	    float: left;
	}

	.template-product .product-single__description .product-description ul.tabs {
	    float: left;
	    list-style: outside none none;
	    margin: 0 0 -1px;
	    position: relative;
	    width: 100%;
	    text-align: left;
	    z-index: 10;
	}

	.template-product .product-single__description .product-description ul.tabs li {
	    margin: 0;
	    display: inline-block;
	    vertical-align: middle;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .product-single__description .product-description ul.tabs li {
	        width: auto;
	        float: left;
	        text-align: center;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .template-product .product-single__description .product-description ul.tabs li {
	        width: 100%;
	        float: left;
	        text-align: center;
	    }
	}

	.template-product .product-single__description .product-description ul.tabs li a {
	    color: black;
	    display: block;
	    border: none;
	    line-height: 28px;
	    padding: 12px 25px;
	    font-size: 17px;
	    margin: 0;
	    text-transform: capitalize;
	    position: relative;
	    background: transparent;
	    letter-spacing: 0.7px;
	    font-weight: 500;
	}

	.template-product .product-single__description .product-description ul.tabs li a:hover {
	    color: #6c9228;
	}

	.template-product .product-single__description .product-description ul.tabs li a.active {
	    background: #f5f5f5;
	    color: black;
	    border-radius: 4px 4px 0 0;
	}

	.template-product .product-single__description .tab-container {
	    text-align: left;
	    float: left;
	    width: 100%;
	    padding: 35px;
	    position: relative;
	    letter-spacing: 0.8px;
	    z-index: 8;
	    background: #f5f5f5;
	}

	@media only screen and (max-width: 749px) {
	    .template-product .product-single__description .tab-container {
	        width: 100%;
	    }
	}

	.template-product .product-single__description .tab-container ul,
	.template-product .product-single__description .tab-container ol {
	    display: inline-block;
	    vertical-align: middle;
	}

	.template-product .product-single__description .tab-container #shopify-product-reviews .spr-container {
	    border: none;
	    padding: 0;
	    text-align: left;
	}

	.template-product .product-single__description .tab-container #shopify-product-reviews .spr-container .spr-header-title {
	    font-size: 15px;
	    text-align: left;
	}

	.template-product .product-single__description .tab-container #shopify-product-reviews .spr-container .spr-summary {
	    text-align: left;
	}

	.template-product .product-single__description .tab-container #shopify-product-reviews .spr-container .spr-summary-actions-newreview {
	    line-height: 14px;
	}

	.product-template-top .singel-product-content {
	    float: left;
	    width: calc(100% - 300px);
	}

	@media only screen and (max-width: 1439px) {
	    .product-template-top .singel-product-content {
	        width: calc(100% - 260px);
	    }
	}

	@media only screen and (max-width: 989px) {
	    .product-template-top .singel-product-content {
	        width: 100%;
	    }
	}

	.product-template-top .grid__item.singleproduct-sidebar {
	    float: right;
	    width: 21.15385em;
	    text-align: right;
	    padding: 0;
	}

	.product-template-top .grid__item.singleproduct-sidebar .product-right-banner .owl-dots {
	    margin-top: 10px;
	}

	.product-template-top .grid__item.singleproduct-sidebar .product-right-banner .banner {
	    margin-bottom: 20px;
	}

	.product-template-top .grid__item.singleproduct-sidebar .product-right-banner .banner .banner-img img {
	    border-radius: 4px;
	}

	.product-template-top .grid__item.singleproduct-sidebar .product-right-banner .banner:last-child {
	    margin-bottom: 0;
	}

	@media only screen and (max-width: 1439px) {
	    .product-template-top .grid__item.singleproduct-sidebar {
	        width: 18.46154em;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .product-template-top .grid__item.singleproduct-sidebar {
	        display: none;
	    }
	}

	.template-search .search-products-content {
	    width: 100%;
	    display: inline-block;
	    vertical-align: top;
	}

	.template-search .search-products-content .medium-up--two-fifths {
	    width: auto;
	}

	.template-search .section-header>h2:before,
	.template-search .section-header>.h2:before {
	    content: "";
	    display: none;
	}

	.template-search .section-header>h2:after,
	.template-search .section-header>.h2:after {
	    content: "";
	    display: none;
	}

	@media only screen and (max-width: 749px) {
	    .template-search .section-header .h2 {
	        text-align: center;
	        float: none;
	        display: inline-block;
	        vertical-align: top;
	    }
	}

	.template-search form.search .input-group {
	    width: 100%;
	    float: left;
	    margin: 10px 0;
	}

	.template-search form.search .input-group .input-group__field {
	    float: left;
	    width: calc(400px);
	    border-radius: 4px 0 0 4px;
	    -webkit-border-radius: 4px 0 0 4px;
	    -khtml-border-radius: 4px 0 0 4px;
	    -moz-border-radius: 4px 0 0 4px;
	    color: black;
	}

	@media only screen and (max-width: 1269px) {
	    .template-search form.search .input-group .input-group__field {
	        width: 86.3%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-search form.search .input-group .input-group__field {
	        width: 300px;
	        float: none;
	        display: inline-block;
	        vertical-align: middle;
	        margin: 0;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .template-search form.search .input-group .input-group__field {
	        width: 140px;
	    }
	}

	.template-search form.search .input-group .input-group__btn {
	    float: right;
	    width: auto;
	}

	.template-search form.search .input-group .input-group__btn .btn.search__submit,
	.template-search form.search .input-group .input-group__btn .shopify-payment-button .search__submit.shopify-payment-button__button--unbranded,
	.shopify-payment-button .template-search form.search .input-group .input-group__btn .search__submit.shopify-payment-button__button--unbranded {
	    border-radius: 0 4px 4px 0;
	    -webkit-border-radius: 0 4px 4px 0;
	    -khtml-border-radius: 0 4px 4px 0;
	    -moz-border-radius: 0 4px 4px 0;
	}

	@media only screen and (max-width: 1269px) {
	    .template-search form.search .input-group .input-group__btn {
	        width: 13.7%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-search form.search .input-group .input-group__btn {
	        width: auto;
	        float: none;
	        display: inline-block;
	        vertical-align: middle;
	        margin: 0 0 0 -5px;
	    }
	}

	.single-artical-page {
	    padding: 0;
	}

	.article__meta-buttons {
	    display: block;
	    float: left;
	}

	.article__meta-buttons .btn--small {
	    font-size: 13px;
	    line-height: 20px;
	    background: #6c9228;
	    color: black;
	}

	.article__meta-buttons .btn--small:hover {
	    background: #000;
	    color: white;
	}

	.article__meta-buttons .btn--small.btn--tertiary {
	    background: #000;
	    color: white;
	}

	.article__meta-buttons .btn--small.btn--tertiary:hover {
	    background: #6c9228;
	    color: black;
	}

	.article__meta-buttons .btn--small.article__comment-count {
	    background: #6c9228;
	    color: black;
	    text-decoration: none;
	}

	.article__meta-buttons .btn--small.article__comment-count:hover {
	    background: #000;
	    color: white;
	}

	.blog--list-view .border {
	    border-top: 1px solid #e8e9eb;
	    width: 100%;
	    float: left;
	}

	.blog--list-view .border:first-child {
	    margin-top: 0;
	    border-top: 0;
	}

	.blog--list-view .border:first-child .article--listing {
	    padding-top: 0;
	}

	.blog--list-view .border:last-child {
	    margin-bottom: 0;
	}

	.blog--list-view .border:last-child .article--listing {
	    margin-bottom: 0;
	}

	.blog--list-view .border .article--listing {
	    width: 100%;
	    float: left;
	    margin-bottom: 30px;
	    padding-top: 30px;
	}

	.blog--list-view .border .article--listing .article__date {
	    width: 80px;
	    float: left;
	    text-align: center;
	    padding: 8px 0;
	    background-color: rgba(0, 0, 0, 0.6);
	    position: absolute;
	    z-index: 1;
	    left: 15px;
	    top: 15px;
	    border-radius: 5px;
	}

	.blog--list-view .border .article--listing .article__date .date {
	    display: inline-block;
	    vertical-align: middle;
	    width: auto;
	    font-size: 13px;
	    line-height: 15px;
	    color: white;
	    font-weight: 600;
	    letter-spacing: 0.4px;
	}

	.blog--list-view .border .article--listing .article__date .month {
	    display: inline-block;
	    vertical-align: middle;
	    width: auto;
	    font-size: 13px;
	    line-height: 15px;
	    color: white;
	    font-weight: 600;
	    letter-spacing: 0.4px;
	}

	.blog--list-view .border .article__list-image-wrapper {
	    width: 100%;
	    margin-bottom: 0;
	    float: none;
	    margin-right: 30px;
	    display: inline-block;
	    vertical-align: middle;
	    position: relative;
	}

	@media only screen and (max-width: 1439px) {
	    .blog--list-view .border .article__list-image-wrapper {
	        margin-right: 20px;
	        width: 50%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .blog--list-view .border .article__list-image-wrapper {
	        width: 100%;
	        margin-right: 0;
	    }
	}

	.blog--list-view .border .blog-description {
	    float: right;
	    width: 49%;
	    margin: 0;
	    display: inline-block;
	    vertical-align: middle;
	}

	@media only screen and (max-width: 1439px) {
	    .blog--list-view .border .blog-description {
	        width: 46%;
	        margin: 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .blog--list-view .border .blog-description {
	        width: 100%;
	        margin-top: 30px;
	    }
	}

	.blog--list-view .border .blog-description .article__title {
	    padding: 0;
	    text-align: left;
	    margin-bottom: 30px;
	    display: block;
	    font-size: 19px;
	    line-height: 30px;
	    font-weight: 600;
	    color: black;
	    letter-spacing: 0.4px;
	}

	@media only screen and (max-width: 1269px) {
	    .blog--list-view .border .blog-description .article__title {
	        margin-bottom: 15px;
	        font-size: 16px;
	    }
	}

	.blog--list-view .border .blog-description .article__author {
	    display: block;
	    margin-top: 0;
	    width: auto;
	    text-align: left;
	    text-transform: capitalize;
	    font-size: 13px;
	    color: black;
	    font-weight: 400;
	    letter-spacing: 0.8px;
	}

	.blog--list-view .border .blog-description .rte {
	    float: left;
	    width: 100%;
	    margin-bottom: 30px;
	}

	@media only screen and (max-width: 1269px) {
	    .blog--list-view .border .blog-description .rte {
	        margin-bottom: 15px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .blog--list-view .border .blog-description .rte {
	        margin-bottom: 30px;
	    }
	}

	.blog--list-view .border .blog-description .article__tags--list.rte {
	    width: 100%;
	    float: left;
	    margin-top: 10px;
	    font-style: normal;
	    margin-bottom: 0;
	}

	.blog--list-view .border .blog-description .article__tags--list.rte .tag-title {
	    color: black;
	    font-weight: 600;
	    margin-right: 5px;
	    text-transform: capitalize;
	}

	.blog--list-view .border .blog-description .article__tags--list.rte a {
	    border: none;
	}

	@media only screen and (max-width: 1269px) {
	    .template-article .title-breadcrumbs .title-breadcrumbs-container .page-title {
	        width: 100%;
	        float: left;
	        text-align: left;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .template-article .title-breadcrumbs .title-breadcrumbs-container .breadcrumb {
	        width: 100%;
	        text-align: left;
	        margin-top: 5px;
	    }

	    .template-article .title-breadcrumbs .title-breadcrumbs-container .breadcrumb a:first-child {
	        margin-left: 0;
	    }
	}

	.title-breadcrumbs {
	    width: 100%;
	    float: left;
	    text-align: center;
	    margin: 0 0 30px 0;
	}

	.title-breadcrumbs .title-breadcrumbs-container {
	    float: left;
	    text-align: center;
	    width: 100%;
	    position: relative;
	    margin: 2px 0 0;
	}

	.title-breadcrumbs .title-breadcrumbs-container .page-title {
	    width: auto;
	    float: left;
	    color: black;
	    font-size: 16px;
	    line-height: 24px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 0.7px;
	}

	@media only screen and (max-width: 749px) {
	    .title-breadcrumbs .title-breadcrumbs-container .page-title {
	        width: 100%;
	    }
	}

	.title-breadcrumbs .title-breadcrumbs-container .breadcrumb {
	    position: relative;
	    margin-top: 0;
	    float: right;
	    width: auto;
	}

	.title-breadcrumbs .title-breadcrumbs-container .breadcrumb a {
	    color: black;
	    font-size: 13px;
	    line-height: 26px;
	    font-weight: 500;
	    letter-spacing: 0.2px;
	    text-transform: Capitalize;
	    margin: 0 7px;
	    position: relative;
	    display: inline-block;
	    vertical-align: middle;
	}

	.title-breadcrumbs .title-breadcrumbs-container .breadcrumb a:hover {
	    color: #6c9228;
	}

	.title-breadcrumbs .title-breadcrumbs-container .breadcrumb a:before {
	    content: "";
	    padding: 0;
	    font-size: 13px;
	    color: black;
	    position: absolute;
	    left: -19px;
	    right: 0;
	    height: 15px;
	    width: 15px;
	    top: 4px;
	    bottom: 0;
	    display: block;
	    background: url("../img/icn-sprt.png") no-repeat scroll -8px -777px;
	}

	.title-breadcrumbs .title-breadcrumbs-container .breadcrumb a:nth-child(1):before {
	    display: none;
	}

	.title-breadcrumbs .title-breadcrumbs-container .breadcrumb span {
	    color: black;
	    font-size: 13px;
	    line-height: 26px;
	    font-weight: 500;
	    letter-spacing: 0.2px;
	    text-transform: Capitalize;
	    margin: 0 0 0 10px;
	    position: relative;
	    display: inline-block;
	    vertical-align: middle;
	}

	.title-breadcrumbs .title-breadcrumbs-container .breadcrumb span:before {
	    content: "";
	    padding: 0;
	    font-size: 13px;
	    color: black;
	    position: absolute;
	    left: -16px;
	    right: 0;
	    height: 15px;
	    width: 15px;
	    top: 7px;
	    bottom: 0;
	    display: block;
	    background: url("../img/icn-sprt.png") no-repeat scroll -8px -777px;
	}

	@media only screen and (max-width: 749px) {
	    .title-breadcrumbs .title-breadcrumbs-container .breadcrumb {
	        width: 100%;
	        margin-top: 5px;
	    }
	}

	.site-header {
	    width: 100%;
	}

	.header-fix.sticky-menu {
	    -moz-animation: 0.9s ease 0s normal both 1 running fixedAnim;
	    -o-animation: 0.9s ease 0s normal both 1 running fixedAnim;
	    -webkit-animation: 0.9s ease 0s normal both 1 running fixedAnim;
	    animation: 0.9s ease 0s normal both 1 running fixedAnim;
	    background: black none repeat scroll 0 0;
	    box-sizing: border-box;
	    color: black;
	    display: block;
	    float: left;
	    left: auto;
	    margin: 0;
	    padding: 0;
	    position: fixed;
	    right: 0;
	    top: 0;
	    -ms-transition: all 300ms ease 0s;
	    -webkit-transition: all 300ms ease 0s;
	    transition: all 300ms ease 0s;
	    width: 100%;
	    z-index: 99;
	    margin: 0 auto;
	    box-shadow: 0px -20px 30px 6px #000;
	    -moz-box-shadow: 0px -20px 30px 6px #000;
	    -webkit-box-shadow: 0px -20px 30px 6px #000;
	}

	.header-fix.sticky-menu .notification-bar {
	    display: none;
	}

	@keyframes fixedAnim {
	    0% {
	        top: -100%;
	    }

	    100% {
	        top: 0;
	    }
	}

	@-webkit-keyframes fixedAnim {
	    0% {
	        top: -100%;
	    }

	    100% {
	        top: 0;
	    }
	}

	@-moz-keyframes fixedAnim {
	    0% {
	        top: -100%;
	    }

	    100% {
	        top: 0;
	    }
	}

	.site-header-fix {
	    background: #fff;
	}

	.site-header-fix.header-style {
	    min-height: 115px;
	}

	.header-bottom .header-bottom-left,
	.header-bottom .header-bottom-center,
	.header-bottom .header-bottom-right {
	    display: inline-block;
	    vertical-align: middle;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat {
	    display: none;
	    position: absolute;
	    top: 100%;
	    width: 245px;
	    color: black;
	    background-color: black;
	    z-index: 1;
	    border-radius: 0 0 4px 4px;
	    border-width: 0 1px 1px 1px;
	    border-style: solid;
	    padding: 10px 0;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item {
	    float: left;
	    width: 100%;
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item {
	        position: relative;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item a {
	    color: white;
	    padding: 11px 15px 11px 32px;
	    float: left;
	    width: 100%;
	    position: relative;
	    text-transform: capitalize;
	    line-height: 20px;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item a:hover {
	    color: #6c9228;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item a:hover:before {
	    background-position: -141px -824px;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item a:before {
	    content: '';
	    position: absolute;
	    background: url("../img/icn-sprt.png") no-repeat scroll -68px -824px;
	    width: 15px;
	    height: 10px;
	    left: 10px;
	    top: 12px;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item:last-child {
	    border-bottom: none;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown {
	    padding: 20px 30px 8px;
	    border-radius: 0 25px 0px 0;
	    overflow: auto;
	    max-height: 441px;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist {
	    padding: 0;
	    box-shadow: none;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid {
	    margin-bottom: 0;
	    display: block;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item {
	    width: 20%;
	    float: left;
	    margin: 0;
	    padding: 0 25px 20px 0;
	    min-width: 200px;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item:nth-child(4n+4) {
	    padding-right: 0;
	}

	@media only screen and (max-width: 1269px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item:nth-child(4n+4) {
	        padding-right: 25px;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item a {
	    padding: 5px 10px 5px 20px;
	    background-image: none;
	    margin: 0;
	}

	@media only screen and (min-width: 990px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item a {
	        color: black;
	        position: relative;
	        padding: 5px 10px 5px 25px;
	        margin: 0;
	        font-weight: normal;
	        text-transform: capitalize;
	        background-image: none;
	        line-height: 18px;
	        width: auto;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item a:before {
	    content: '';
	    position: absolute;
	    font-size: 13px;
	    left: 0;
	    font-weight: normal;
	    height: 20px;
	    width: 20px;
	    text-align: center;
	    background: none;
	    top: 5px;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item a.site-nav__child-link--parent:before {
	    content: "";
	}

	@media only screen and (min-width: 990px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item a.site-nav__child-link--parent {
	        text-transform: uppercase;
	        color: #000;
	        font-weight: bold;
	        padding: 5px;
	        margin-bottom: 5px;
	        line-height: 24px;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item a:hover {
	    color: #6c9228;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item ul.grand-child-has-dropdown li.site-cat-item {
	    border-bottom: none;
	}

	@media only screen and (max-width: 1269px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item {
	        width: 33.33%;
	    }

	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item:nth-child(3n+3) {
	        padding-right: 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item {
	        width: 100%;
	        min-width: auto;
	        padding: 0;
	        position: relative;
	    }

	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist .site-nav__childlist-grid .site-nav__childlist-item ul.grand-child-has-dropdown {
	        float: left;
	        width: 100%;
	        display: none;
	        padding-left: 20px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown .site-nav__childlist {
	        background: transparent;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown {
	        width: 290%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown {
	        width: 100%;
	        left: 0;
	        position: relative;
	        visibility: visible;
	        opacity: 1;
	        min-height: auto;
	        max-height: none;
	        display: none;
	        background: transparent;
	        box-shadow: none;
	        padding: 0 15px 0 25px;
	    }
	}

	@media only screen and (min-width: 990px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown:hover .site-nav__dropdown {
	        visibility: visible;
	        opacity: 1;
	    }

	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.site-cat--has-dropdown:hover>a:after {
	        border-left: 13px solid rgba(0, 0, 0, 0);
	        border-right: 13px solid rgba(0, 0, 0, 0);
	        border-top: 10px solid white;
	        content: "";
	        background-color: transparent;
	        height: 0;
	        left: auto;
	        right: -9px;
	        margin-left: 0;
	        position: absolute;
	        top: 20px;
	        transform: rotate(90deg);
	        -webkit-transform: rotate(90deg);
	        -ms-transform: rotate(90deg);
	        -o-transform: rotate(90deg);
	        -moz-transform: rotate(90deg);
	        width: 0;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown {
	    width: 100%;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown li.site-cat-item {
	    border-bottom: none;
	    position: relative;
	}

	@media only screen and (min-width: 990px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown li.site-cat-item {
	        padding: 0 30px;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown li.site-cat-item a.site-cat__link--main {
	    padding: 5px 10px 5px 25px;
	    background: none;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown li.site-cat-item a.site-cat__link--main:hover {
	    color: #6c9228;
	}

	@media only screen and (min-width: 990px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown li.site-cat-item a.site-cat__link--main {
	        text-transform: uppercase;
	        color: #000;
	        font-weight: bold;
	        padding: 5px;
	        margin-bottom: 5px;
	        line-height: 24px;
	        background: none;
	    }

	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown li.site-cat-item a.site-cat__link--main:before {
	        background: none;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu .children.site-nav__dropdown li.site-cat-item.site-nav__dropdown {
	    opacity: 0;
	    visibility: hidden;
	}

	@media only screen and (min-width: 990px) {
	    .header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu ul.children.site-nav__dropdown {
	        opacity: 0;
	        visibility: hidden;
	        padding: 15px 0 10px;
	    }
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu ul.children.site-nav__dropdown li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown {
	    opacity: 0;
	    visibility: hidden;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu ul.children.site-nav__dropdown li.site-cat-item.site-cat--has-dropdown .site-nav__dropdown ul.grand-child-has-dropdown li.site-cat-item {
	    padding: 0;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu ul.children.site-nav__dropdown li.site-cat-item.site-cat--has-dropdown:hover .site-nav__dropdown {
	    opacity: 1;
	    visibility: visible;
	    min-height: auto;
	}

	.header-bottom .header-bottom-left .category_box ul#SiteCat li.site-cat-item.cat-parent.hiden_menu:hover ul.children.site-nav__dropdown {
	    opacity: 1;
	    visibility: visible;
	}

	.header-bottom .header-bottom-left .category-text {
	    display: inline-block;
	    vertical-align: middle;
	    padding-left: 10px;
	    padding-top: 4px;
	}

	@media only screen and (max-width: 479px) {
	    .header-bottom .header-bottom-left .category-text {
	        display: none;
	    }
	}

	.header-bottom .header-bottom-left .categories_title {
	    padding: 17px 51px 15px 0;
	    cursor: pointer;
	    line-height: 17px;
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom .header-bottom-left .categories_title {
	        padding: 15px 20px 15px 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .header-bottom .header-bottom-left .categories_title {
	        padding: 17px 20px 16px 0;
	    }
	}

	.header-bottom .header-bottom-left .categories_title:before {
	    content: "";
	    background: url("../img/icn-sprt.png") no-repeat scroll -72px -2px;
	    width: 18px;
	    height: 18px;
	    display: inline-block;
	    vertical-align: middle;
	}

	.header-bottom .header-bottom-left .categories_title .text1 {
	    font-size: 13px;
	    text-transform: capitalize;
	    color: white;
	    display: block;
	    font-weight: 400;
	}

	.header-bottom .header-bottom-left .categories_title .text2 {
	    font-size: 15px;
	    font-weight: 600;
	    text-transform: capitalize;
	    color: #fff;
	    display: inline-block;
	    vertical-align: middle;
	    letter-spacing: 0.4px;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {
	    .header-bottom .header-bottom-left .categories_title .text2 {
	        display: none;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .header-bottom .header-bottom-left .categories_title {
	        padding: 18px 20px 13px 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom .header-bottom-center {
	        display: none;
	    }
	}

	.header-bottom .header-bottom-right {
	    float: right;
	    border-left: 1px solid #d1ab00;
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom .header-bottom-right {
	        position: relative;
	        padding: 0;
	    }

	    .header-bottom .header-bottom-right:before,
	    .header-bottom .header-bottom-right:after {
	        background: -webkit-linear-gradient(90deg, #6c9228 0%, #1c4587 49.341%, #6c9228 100%);
	        background: -moz-linear-gradient(90deg, #6c9228 0%, #1c4587 49.341%, #6c9228 100%);
	        background: -o-linear-gradient(90deg, #6c9228 0%, #1c4587 49.341%, #6c9228 100%);
	        background: -ms-linear-gradient(90deg, #6c9228 0%, #1c4587 49.341%, #6c9228 100%);
	        position: absolute;
	        content: '';
	        width: 1px;
	        height: 50px;
	        left: -10px;
	        top: 9px;
	    }

	    .header-bottom .header-bottom-right:after {
	        background: -webkit-linear-gradient(90deg, #6c9228 0%, black 49.341%, #6c9228 100%);
	        background: -moz-linear-gradient(90deg, #6c9228 0%, black 49.341%, #6c9228 100%);
	        background: -o-linear-gradient(90deg, #6c9228 0%, black 49.341%, #6c9228 100%);
	        background: -ms-linear-gradient(90deg, #6c9228 0%, black 49.341%, #6c9228 100%);
	        left: -9px;
	    }
	}

	@media only screen and (max-width: 989px) and (max-width: 989px) {

	    .header-bottom .header-bottom-right:before,
	    .header-bottom .header-bottom-right:after {
	        display: none;
	    }
	}

	@media only screen and (max-width: 989px) and (max-width: 989px) {
	    .header-bottom .header-bottom-right:after {
	        display: none;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .header-bottom .header-bottom-right {
	        border-left: none;
	    }
	}

	.cart-label,
	.account-label {
	    font-size: 13px;
	    line-height: 15px;
	    text-transform: capitalize;
	    color: #1e1e1e;
	}

	@media only screen and (max-width: 749px) {

	    .cart-label,
	    .account-label {
	        display: none;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .account-block {
	        width: 3.46154em;
	        height: 3.46154em;
	    }
	}

	.account-block .icon.icon-user {
	    position: relative;
	    width: 20px;
	    height: 20px;
	    vertical-align: top;
	    text-align: center;
	    color: #1e1e1e;
	}

	@media only screen and (max-width: 749px) {
	    .account-block .icon.icon-user {
	        display: inline-block;
	    }
	}

	.grid__item.site-header-logo {
	    float: left;
	    display: inline-block;
	}

	.grid__item.site-header__icons.logo-align--left {
	    float: right;
	    width: auto;
	    display: inline-block;
	    top: 20px;
	}

	.site-header-logo {
	    padding: 5px 0;
	}

	nav#AccessibleNav {
	    width: auto;
	    float: left;
	    position: relative;
	    padding-left: 10px;
	    border-left: 1px solid #fff;
	}

	@media only screen and (max-width: 1269px) {
	    nav#AccessibleNav {
	        position: unset;
	    }
	}

	.tm_headerlinkmenu {
	    float: right;
	    text-align: right;
	    position: relative;
	    z-index: 99;
	    cursor: pointer;
	    margin: 0;
	    padding: 0 20px 0 30px;
	}

	@media only screen and (max-width: 1269px) {
	    .tm_headerlinkmenu {
	        padding: 0 15px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .tm_headerlinkmenu {
	        padding: 0 7px 0 10px;
	    }
	}

	.tm_headerlinkmenu:before {
	    content: "";
	    position: absolute;
	    border-left: 1px solid #494949;
	    height: 100%;
	    left: 0;
	}

	@media only screen and (max-width: 749px) {
	    .tm_headerlinkmenu:before {
	        display: none;
	    }
	}

	.tm_headerlinkmenu .tm_header-dropdown {
	    margin: 0 0 0 0;
	    text-align: left;
	}

	.tm_headerlinkmenu .tm_header-dropdown .account-block {
	    padding-right: 0;
	    height: 22px;
	    width: 22px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .account-block:hover {
	    background-position: 0 -31px;
	}

	@media only screen and (max-width: 749px) {
	    .tm_headerlinkmenu .tm_header-dropdown .account-block {
	        background: transparent;
	    }
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account {
	    position: absolute;
	    top: 56px;
	    right: 0;
	    left: auto;
	    z-index: 7;
	    padding: 20px 20px 15px;
	    display: none;
	    width: 13.84615em;
	    text-align: left !important;
	    background-color: white;
	    box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -moz-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -webkit-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    border-radius: 0 0 4px 4px;
	}

	@media only screen and (max-width: 989px) {
	    .tm_headerlinkmenu .tm_header-dropdown .my-account {
	        top: 49px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .tm_headerlinkmenu .tm_header-dropdown .my-account {
	        top: 41px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .tm_headerlinkmenu .tm_header-dropdown .my-account {
	        top: 40px;
	    }
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account li {
	    float: left;
	    width: 100%;
	    text-align: left;
	    margin-bottom: 5px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .text-center.title {
	    font-size: 13px;
	    margin-bottom: 15px;
	    width: 100%;
	    text-align: left !important;
	    text-transform: uppercase;
	    letter-spacing: 0.8px;
	    color: black;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account label {
	    font-size: 11px;
	    text-transform: capitalize;
	    line-height: 18px;
	    color: black;
	    text-align: left !important;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account #CustomerEmail,
	.tm_headerlinkmenu .tm_header-dropdown .my-account #CustomerPassword {
	    padding: 10px 10px;
	    font-size: 11px;
	    margin-bottom: 20px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .btn,
	.tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .shopify-payment-button__button--unbranded {
	    margin-bottom: 20px;
	    padding: 10px 31px;
	    font-size: 11px;
	    text-transform: capitalize;
	    float: left;
	    border: 1px solid #000;
	    margin: 0;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .btn:hover,
	.tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .shopify-payment-button__button--unbranded:hover,
	.tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .btn:focus,
	.tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
	.shopify-payment-button .tm_headerlinkmenu .tm_header-dropdown .my-account .text-center .shopify-payment-button__button--unbranded:focus {
	    border: 1px solid #6c9228;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .account-register {
	    float: right;
	    margin: 14px 0;
	    line-height: 18px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .account-register #customer_register_link {
	    text-transform: capitalize;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .forgot_password {
	    float: left;
	    width: 100%;
	    text-align: center;
	    text-transform: capitalize;
	    margin-top: 20px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .section-header.text-center {
	    margin-bottom: 15px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .grid__item {
	    width: 100%;
	    float: left;
	    padding-left: 0;
	    padding-bottom: 12px;
	    margin-bottom: 12px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .grid__item h2,
	.tm_headerlinkmenu .tm_header-dropdown .my-account .grid__item .h2 {
	    font-size: 11px;
	    margin-bottom: 8px;
	    color: black;
	    text-transform: capitalize;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .grid__item p {
	    font-size: 11px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .grid__item #RecoverPasswordForm {
	    width: 100%;
	    float: left;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .grid__item #RecoverPasswordForm .text-center {
	    margin-bottom: 20px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .grid__item #RecoverPasswordForm .text-center .text-link {
	    margin: 10px 0;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account #customer_logout_link {
	    color: #6c9228;
	    font-weight: 600;
	    text-transform: uppercase;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency {
	    float: left;
	    width: auto;
	    position: relative;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency .currency-title {
	    color: black;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency .currency-title:before {
	    position: absolute;
	    content: '';
	    left: auto;
	    right: -20px;
	    top: 4px;
	    color: black;
	    background: url("../img/icn-sprt.png") no-repeat scroll -68px -777px;
	    width: 15px;
	    height: 15px;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency .currency-title:hover {
	    color: #6c9228;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency .currency-title:hover:before {
	    color: #6c9228;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency .currency-menu {
	    padding: 5px 10px;
	    display: none;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency .currency-menu #currencies span {
	    font-size: 13px;
	    color: black;
	    display: block;
	}

	.tm_headerlinkmenu .tm_header-dropdown .my-account .currency .currency-menu #currencies span:hover {
	    color: #6c9228;
	}

	@media only screen and (max-width: 989px) {
	    .tm_headerlinkmenu {
	        z-index: 1;
	    }
	}

	.my-account .text-center a,
	.my-account .text-center .forgot_password a {
	    font-size: 11px;
	}

	@media only screen and (max-width: 749px) {
	    .tabs-holder {
	        position: relative;
	        clear: both;
	    }
	}

	.view-all-btn.text-center {
	    float: right;
	    top: 3px;
	    position: absolute;
	    right: 0;
	}

	.view-all-btn.text-center .btn,
	.view-all-btn.text-center .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .view-all-btn.text-center .shopify-payment-button__button--unbranded {
	    background: transparent;
	    color: black;
	    padding: 0;
	}

	.view-all-btn.text-center .btn:after,
	.view-all-btn.text-center .shopify-payment-button .shopify-payment-button__button--unbranded:after,
	.shopify-payment-button .view-all-btn.text-center .shopify-payment-button__button--unbranded:after {
	    content: "";
	    border-bottom: 1px solid black;
	    width: 100%;
	    bottom: 4px;
	    display: block;
	    position: relative;
	}

	.view-all-btn.text-center .btn:hover:after,
	.view-all-btn.text-center .shopify-payment-button .shopify-payment-button__button--unbranded:hover:after,
	.shopify-payment-button .view-all-btn.text-center .shopify-payment-button__button--unbranded:hover:after {
	    border-bottom: 1px solid #6c9228;
	}

	.view-all-btn.text-center .btn:hover,
	.view-all-btn.text-center .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .view-all-btn.text-center .shopify-payment-button__button--unbranded:hover {
	    color: #6c9228;
	}

	@media only screen and (max-width: 749px) {
	    .view-all-btn.text-center {
	        float: none;
	        top: -45px;
	        position: relative;
	    }
	}

	.cm-wishlist-button,
	.cm-compare-button {
	    display: inline-block !important;
	    vertical-align: top !important;
	    width: auto !important;
	    height: auto !important;
	    right: 0 !important;
	    background: none !important;
	    border: none !important;
	    padding: 0 26px 0 7px !important;
	}

	.cm-wishlist-button a,
	.cm-compare-button a {
	    display: inline-block !important;
	    vertical-align: top;
	    color: #1e1e1e;
	}

	.cm-wishlist-counter,
	.cm-compare-counter {
	    top: 0 !important;
	    color: #fff !important;
	    right: -26px !important;
	    font-weight: 500;
	}

	@media only screen and (max-width: 749px) {

	    .cm-wishlist-counter,
	    .cm-compare-counter {
	        top: -12px !important;
	        right: -16px !important;
	        z-index: 2;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .cm-wishlist-counter,
	    .cm-compare-counter {
	        right: -14px !important;
	        top: -11px !important;
	    }
	}

	.cm-compare-button {
	    margin-right: 25px;
	    margin-bottom: 0 !important;
	    margin-left: 13px;
	}

	@media only screen and (max-width: 1269px) {
	    .cm-compare-button {
	        padding: 0 25px 0 0 !important;
	        margin-right: 15px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .cm-compare-button {
	        margin-right: 10px;
	        margin-left: 10px;
	        padding: 0 !important;
	        width: 20px !important;
	        height: 20px !important;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .cm-compare-button {
	        margin-left: 8px;
	    }
	}

	.cm-wishlist-icon::before,
	.cm-compare-icon::before {
	    top: 0 !important;
	    min-width: 18px !important;
	    min-height: 18px !important;
	    background: linear-gradient(152deg, #0f776d, #00d048);
	    right: -25px !important;
	}

	@media only screen and (max-width: 749px) {

	    .cm-wishlist-icon::before,
	    .cm-compare-icon::before {
	        top: -13px !important;
	        right: -15px !important;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .cm-wishlist-icon::before,
	    .cm-compare-icon::before {
	        z-index: 1;
	        right: -13px !important;
	        top: -11px !important;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .cm-wishlist-button {
	        padding: 0 12px !important;
	        width: 42px !important;
	        height: 20px !important;
	    }

	    .cm-wishlist-button a svg {
	        fill: #fff;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .cm-wishlist-button {
	        padding: 0 10px !important;
	        width: 40px !important;
	    }
	}

	.cm-wishlist-button a svg,
	.cm-compare-button a svg {
	    display: none;
	}

	@media only screen and (max-width: 749px) {

	    .cm-wishlist-button a svg,
	    .cm-compare-button a svg {
	        display: block;
	        top: 1px;
	        position: relative;
	        left: 0;
	        width: 18px;
	        height: 18px;
	        margin: 0 auto;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .cm-wishlist-button a svg,
	    .cm-compare-button a svg {
	        top: 0;
	        left: 0;
	        z-index: 0;
	    }
	}

	@media only screen and (max-width: 749px) {

	    .cm-wishlist-button a,
	    .cm-compare-button a {
	        font-size: 0;
	        padding-right: 0 !important;
	    }
	}

	.popup-wishlist__head>h5,
	.popup-wishlist__head>.h5 {
	    color: black;
	}

	.product-store-lists__title a {
	    font-size: 12px;
	    letter-spacing: 0.4px;
	    text-transform: capitalize;
	}

	.product-store-lists__price span {
	    font-size: 14px;
	    font-weight: 500;
	}

	.product-store-lists__variant {
	    font-size: 12px;
	    color: black;
	    font-weight: 500;
	}

	.popup-confirm-transfer-data__content {
	    color: black;
	    font-size: 14px;
	}

	.site-header__cart {
	    float: right;
	    position: relative;
	    z-index: 99;
	}

	.site-header__cart .cart-text_block {
	    position: relative;
	    cursor: pointer;
	}

	.site-header__cart .cart-text_block .icon {
	    display: inline-block;
	    vertical-align: top;
	    width: 21px;
	    height: 21px;
	    color: #1e1e1e;
	}

	@media only screen and (max-width: 749px) {
	    .site-header__cart .cart-text_block .icon {
	        float: left;
	        display: inline-block;
	        color: white;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-header__cart .cart-text_block .icon {
	        position: relative;
	        top: -1px;
	        right: -3px;
	    }
	}

	.site-header__cart .cart-text_block .cart-content {
	    display: inline-block;
	    vertical-align: middle;
	    text-align: left;
	    padding-left: 20px;
	    margin: -9px 0 0;
	}

	@media only screen and (max-width: 749px) {
	    .site-header__cart .cart-text_block .cart-content {
	        padding-left: 0px;
	    }
	}

	.site-header__cart .cart-text_block .cart-content .price-amount {
	    margin-top: 5px;
	    color: #6c9228;
	    line-height: 14px;
	}

	@media only screen and (max-width: 749px) {
	    .site-header__cart .cart-text_block .cart-content .price-amount {
	        display: none;
	    }
	}

	.site-header__cart .cart-text_block:hover .cart-icon {
	    background-position: 0 -93px;
	}

	@media only screen and (max-width: 749px) {
	    .site-header__cart .cart-text_block {
	        padding-right: 15px;
	    }
	}

	.site-header__cart .cart-content.block {
	    position: absolute;
	    top: 56px;
	    right: 0;
	    left: auto;
	    z-index: 7;
	    padding: 20px;
	    display: none;
	    width: 20em;
	    background-color: white;
	    box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -moz-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    -webkit-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.1);
	    border-radius: 0 0 4px 4px;
	}

	@media only screen and (max-width: 989px) {
	    .site-header__cart .cart-content.block {
	        top: 49px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .site-header__cart .cart-content.block {
	        top: 41px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-header__cart .cart-content.block {
	        top: 40px;
	    }
	}

	.site-header__cart .cart-content.block .cart-block-content .cart_content-block {
	    float: left;
	    width: 100%;
	    max-height: 200px;
	    overflow: hidden;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart_content-block:hover {
	    overflow-y: auto;
	}

	.site-header__cart .cart-content.block .cart-block-content .sca-qv-button {
	    display: none !important;
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block {
	    float: left;
	    font-size: 12px;
	    line-height: 18px;
	    margin-bottom: 10px;
	    width: 100%;
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block .tm-cart-image-block {
	    float: left;
	    min-width: 50px;
	    width: 60px;
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block .tm-cart-image-block>a {
	    width: 100%;
	    float: left;
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block .tm-cart-image-block>a .cart__image {
	    border: 1px solid #e8e9eb;
	    border-radius: 4px;
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block .tm-productdetails {
	    float: left;
	    padding-left: 20px;
	    width: calc(100% - 60px);
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block .tm-productdetails .product-item__title {
	    float: right;
	    text-align: right;
	    width: 100%;
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block .tm-productdetails .product-item__title>a {
	    float: left;
	    text-transform: capitalize;
	    width: 100%;
	}

	.site-header__cart .cart-content.block .cart-block-content .tm_cart_block .tm-productdetails .product-item__title span {
	    float: right;
	    line-height: 20px;
	    color: black;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-summary {
	    border-bottom: 1px solid #e8e9eb;
	    border-top: 1px solid #e8e9eb;
	    float: left;
	    padding: 10px 0;
	    width: 100%;
	    font-size: 12px;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-summary .cart-total {
	    float: left;
	    text-align: left;
	    width: 50%;
	    color: black;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-summary .cart-total-title,
	.site-header__cart .cart-content.block .cart-block-content .cart-summary .title {
	    font-weight: 500;
	    letter-spacing: 0.8px;
	    margin-bottom: 0;
	    text-transform: uppercase;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-summary .cart-total-title .cart__subtotal-title,
	.site-header__cart .cart-content.block .cart-block-content .cart-summary .cart-total-title .cart__subtotal-title,
	.site-header__cart .cart-content.block .cart-block-content .cart-summary .title .cart__subtotal-title,
	.site-header__cart .cart-content.block .cart-block-content .cart-summary .title .cart__subtotal-title {
	    font-size: 13px;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-summary .subtotal {
	    float: right;
	    text-align: right;
	    width: 50%;
	    color: black;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-summary .subtotal .price {
	    float: right;
	    width: auto;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-summary .subtotal .price .cart__subtotal {
	    display: inline-block;
	    min-width: 150px;
	    padding-left: 15px;
	    vertical-align: top;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-viewcart {
	    width: 100%;
	    display: inline-block;
	    vertical-align: top;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-viewcart .dropdown-site-header__cart {
	    float: none;
	    padding: 10px 16px 6px;
	    text-transform: capitalize;
	    width: auto;
	    text-align: center;
	    line-height: 18px;
	    letter-spacing: 0.8px;
	    margin: 10px 0 0;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-viewcart .dropdown-site-header__cart>p {
	    color: white !important;
	    font-weight: 400;
	}

	.site-header__cart .cart-content.block .cart-block-content .cart-viewcart .dropdown-site-header__cart:hover>p,
	.site-header__cart .cart-content.block .cart-block-content .cart-viewcart .dropdown-site-header__cart:focus>p {
	    color: black !important;
	}

	@media only screen and (max-width: 989px) {
	    .site-header__cart {
	        z-index: 1;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .site-header__cart {
	        width: 36px;
	        height: 22px;
	    }
	}

	.site-header .header-top {
	    float: left;
	    width: 100%;
	    position: relative;
	    z-index: 1;
	    padding: 5px 0;
	    background: #fff;
	}

	@media only screen and (max-width: 989px) {
	    .site-header .header-top {
	        padding: 15px 0;
	    }
	}

	.site-header .header-top .header-top-left,
	.site-header .header-top .header-top-center,
	.site-header .header-top .header-top-right {
	    display: inline-block;
	    vertical-align: top;
	}

	.site-header .header-top .header-top-center {
	    width: auto;
	    float: right;
	    margin-top: 12px;
	}

	.site-header .header-bottom {
	    float: left;
	    width: 100%;
	    background: linear-gradient(152deg, #0f776d, #00d048);
	}

	@media only screen and (max-width: 749px) {
	    .site-header .header-bottom .header-top-right {
	        padding: 15px 0 0 15px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-header .header-bottom .header-top-right {
	        display: block !important;
	    }
	}

	.site-header.logo--center .logo-align--center {
	    position: relative;
	    width: 100%;
	    float: left;
	    padding: 0;
	}

	.site-header.logo--center .logo-align--center .header-left {
	    width: auto;
	    float: left;
	}

	@media (max-width: 1600px) {
	    .site-header.logo--center .logo-align--center .header-left {
	        width: 40%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .site-header.logo--center .logo-align--center .header-left .small--hide {
	        display: none !important;
	    }
	}

	.site-header.logo--center .logo-align--center .header-left .site-nav {
	    text-align: left;
	}

	.site-header.logo--center .logo-align--center .header-left .site-nav__childlist-item {
	    padding: 0 17px;
	}

	@media only screen and (max-width: 1439px) {
	    .site-header.logo--center .logo-align--center .header-left .site-nav__childlist-item {
	        padding: 0 3px;
	    }
	}

	.site-header.logo--center .logo-align--center .header-center {
	    width: 195px;
	    position: absolute;
	    left: 0;
	    right: 0;
	    top: 18px;
	    margin: 0 auto;
	}

	@media only screen and (max-width: 989px) {
	    .site-header.logo--center .logo-align--center .header-center {
	        margin: 19px 0;
	        position: relative;
	        width: auto;
	        float: left;
	        top: auto;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-header.logo--center .logo-align--center .header-center {
	        margin: 20px 0;
	    }
	}

	.site-header.logo--center .logo-align--center .header-center .site-header__logo {
	    width: 150px;
	    margin: 0;
	    position: relative;
	    z-index: 99;
	}

	.site-header.logo--left .logo-align--left {
	    position: relative;
	    width: 100%;
	    float: left;
	    padding: 0;
	}

	.site-header.logo--left .logo-align--left .header-left {
	    width: auto;
	    position: relative;
	    margin: -7px 0 0;
	}

	@media only screen and (max-width: 479px) {
	    .site-header.logo--left .logo-align--left .header-left {
	        margin: -4px 0 0;
	    }
	}

	.site-header.logo--left .logo-align--left .header-left .site-header__logo {
	    position: relative;
	    z-index: 99;
	    margin-top: 12px;
	}

	@media only screen and (max-width: 479px) {
	    .site-header.logo--left .logo-align--left .header-left .site-header__logo {
	        width: 130px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .header-top-left {
	        width: 20%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .header-top-left {
	        width: auto;
	    }
	}

	.site-header__search {
	    display: inline-block;
	    vertical-align: top;
	}

	.header-bottom-right .header-cms-service {
	    margin-left: 15px;
	}

	.header-bottom-right .header-cms-service .service-block,
	.header-bottom-right .header-cms-service .contact-block {
	    display: inline-block;
	    vertical-align: middle;
	    margin: 4px 0 4px 10px;
	}

	.header-bottom-right .header-cms-service .service-block .service-icon,
	.header-bottom-right .header-cms-service .service-block .contact-icon,
	.header-bottom-right .header-cms-service .contact-block .service-icon,
	.header-bottom-right .header-cms-service .contact-block .contact-icon {
	    margin-top: 8px;
	    width: 40px;
	    height: 40px;
	    display: inline-block;
	    vertical-align: middle;
	    background-repeat: no-repeat;
	    background-position: center 5px;
	    background-attachment: scroll;
	    -webkit-transition: all 0.3s ease-in-out 0s;
	    -moz-transition: all 0.3s ease-in-out 0s;
	    -ms-transition: all 0.3s ease-in-out 0s;
	    -o-transition: all 0.3s ease-in-out 0s;
	    transition: all 0.3s ease-in-out 0s;
	}

	.header-bottom-right .header-cms-service .service-block .service-block-inner,
	.header-bottom-right .header-cms-service .service-block .contact-block-inner,
	.header-bottom-right .header-cms-service .contact-block .service-block-inner,
	.header-bottom-right .header-cms-service .contact-block .contact-block-inner {
	    display: inline-block;
	    vertical-align: middle;
	    margin-top: 5px;
	}

	.header-bottom-right .header-cms-service .service-block .service-block-inner .text1,
	.header-bottom-right .header-cms-service .service-block .contact-block-inner .text1,
	.header-bottom-right .header-cms-service .contact-block .service-block-inner .text1,
	.header-bottom-right .header-cms-service .contact-block .contact-block-inner .text1 {
	    color: black;
	    line-height: 20px;
	    text-transform: capitalize;
	    letter-spacing: 0.4px;
	    font-weight: 500;
	}

	.header-bottom-right .header-cms-service .service-block .service-block-inner .text2,
	.header-bottom-right .header-cms-service .service-block .contact-block-inner .text2,
	.header-bottom-right .header-cms-service .contact-block .service-block-inner .text2,
	.header-bottom-right .header-cms-service .contact-block .contact-block-inner .text2 {
	    color: white;
	    line-height: 20px;
	    text-transform: capitalize;
	    font-size: 13px;
	    font-weight: 600;
	}

	.header-bottom-right .header-cms-service .service-block:hover .service-icon,
	.header-bottom-right .header-cms-service .service-block:hover .contact-icon,
	.header-bottom-right .header-cms-service .contact-block:hover .service-icon,
	.header-bottom-right .header-cms-service .contact-block:hover .contact-icon {
	    background-position: center -30px;
	}

	@media only screen and (max-width: 1269px) {
	    .header-bottom-right .header-cms-service .contact-block {
	        margin-left: 0;
	    }
	}

	@media only screen and (max-width: 1439px) {
	    .header-bottom-right .header-cms-service {
	        margin-left: 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .header-bottom-right .header-cms-service {
	        display: none;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .header-bottom-right {
	        display: none;
	    }
	}

	.header-top-right {
	    text-align: right;
	    float: right;
	    padding: 9px 0 6px 65px;
	}

	.header-top-right .service-title {
	    border-radius: 4px;
	}

	.header-top-right .service-title a {
	    font-weight: 600;
	    font-size: 16px;
	    text-transform: capitalize;
	    color: #000;
	    padding: 9px 20px 7px;
	    background: #fff;
	    float: left;
	    vertical-align: middle;
	    border-radius: 0 4px 4px 0;
	    border-left: 2px dashed #2457aa;
	    letter-spacing: 0;
	}

	@media only screen and (max-width: 1439px) {
	    .header-top-right {
	        padding: 9px 0 0 30px;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .header-top-right {
	        padding: 9px 0 9px 15px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .header-top-right {
	        padding: 15px 0 0 15px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .header-top-right {
	        padding: 12px 0 0 0;
	    }
	}

	.site-header__icons.logo-align--center {
	    display: none;
	}

	@media only screen and (max-width: 749px) {
	    .site-header__icons.logo-align--center {
	        display: block;
	    }
	}

	.brand {
	    width: 100%;
	    float: left;
	    margin: 30px auto 0 auto;
	}

	.brand .owl-theme .owl-controls {
	    display: none !important;
	}

	@media only screen and (max-width: 989px) {
	    .brand {
	        margin: 0 auto;
	    }
	}

	.categoryblock {
	    float: left;
	    width: 50%;
	}

	@media only screen and (max-width: 1439px) {
	    .middle-category-cms .categoryblock.categoryblock-1 {
	        width: 70%;
	        padding-right: 15px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .middle-category-cms .categoryblock.categoryblock-1 {
	        width: 100%;
	        padding-right: 0;
	        display: inline-block;
	        vertical-align: middle;
	        text-align: center;
	        float: none;
	        margin-bottom: 10px;
	    }
	}

	.middle-category-cms .categoryblock.categoryblock-1 .category-cms-description {
	    width: 30%;
	}

	@media only screen and (max-width: 1439px) {
	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description {
	        width: 50%;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description {
	        left: 40px;
	        top: 14%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description {
	        width: 60%;
	        top: 10px;
	        left: 5%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description {
	        text-align: left;
	        top: 10%;
	    }

	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description .cms-banner-subtitle {
	        margin: 10px 0;
	        line-height: 18px;
	    }
	}

	@media (max-width: 550px) {
	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description {
	        top: 15%;
	    }

	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description .cms-banner-subtitle {
	        margin: 5px 0;
	        line-height: 15px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description {
	        width: 90%;
	        left: 20px;
	    }

	    .middle-category-cms .categoryblock.categoryblock-1 .category-cms-description .cms-banner-subtitle {
	        display: none;
	    }
	}

	.middle-category-cms .categoryblock.categoryblock-2 {
	    float: right;
	}

	@media only screen and (max-width: 1439px) {
	    .middle-category-cms .categoryblock.categoryblock-2 {
	        width: 30%;
	        padding-left: 15px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .middle-category-cms .categoryblock.categoryblock-2 {
	        width: 100%;
	        padding-right: 0;
	        display: inline-block;
	        vertical-align: middle;
	        text-align: center;
	        float: none;
	        margin-top: 10px;
	    }
	}

	.middle-category-cms .categoryblock.categoryblock-2 .category-cms-description {
	    left: 45px;
	}

	@media only screen and (max-width: 1269px) {
	    .middle-category-cms .categoryblock.categoryblock-2 .category-cms-description {
	        width: 80%;
	        top: 14%;
	        left: 35px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .middle-category-cms .categoryblock.categoryblock-2 .category-cms-description {
	        top: 10px;
	        left: 10%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .middle-category-cms .categoryblock.categoryblock-2 .category-cms-description {
	        width: 70%;
	        top: 25%;
	        text-align: left;
	        left: 18%;
	    }

	    .middle-category-cms .categoryblock.categoryblock-2 .category-cms-description .cms-banner-subtitle {
	        margin: 10px auto;
	    }
	}

	@media (max-width: 550px) {
	    .middle-category-cms .categoryblock.categoryblock-2 .category-cms-description {
	        width: 60%;
	        top: 24%;
	        left: 10%;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .middle-category-cms .categoryblock .category-cms-description .cms-banner-title {
	        font-size: 26px;
	        line-height: 32px;
	    }

	    .middle-category-cms .categoryblock .category-cms-description .cms-banner-subtitle {
	        margin: 10px 0;
	        font-size: 14px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .middle-category-cms .categoryblock .category-cms-description .cms-banner-title {
	        font-size: 20px;
	        line-height: 28px;
	        margin-bottom: 5px;
	    }

	    .middle-category-cms .categoryblock .category-cms-description .cms-banner-subtitle {
	        font-size: 12px;
	        margin: 0 0 5px 0;
	    }

	    .middle-category-cms .categoryblock .category-cms-description .text-button .btn.cms__btn,
	    .middle-category-cms .categoryblock .category-cms-description .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .middle-category-cms .categoryblock .category-cms-description .text-button .cms__btn.shopify-payment-button__button--unbranded {
	        font-size: 14px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .middle-category-cms .categoryblock .category-cms-description .cms-banner-title {
	        margin-bottom: 0;
	    }
	}

	@media (max-width: 550px) {
	    .middle-category-cms .categoryblock .category-cms-description {
	        font-size: 13px;
	        line-height: 18px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .middle-category-cms .categoryblock .category-cms-description .cms-banner-title {
	        font-size: 18px;
	        line-height: 25px;
	        margin-bottom: 10px;
	    }

	    .middle-category-cms .categoryblock .category-cms-description .cms-banner-subtitle {
	        font-size: 11px;
	        display: none;
	    }

	    .middle-category-cms .categoryblock .category-cms-description .text-button .btn.cms__btn,
	    .middle-category-cms .categoryblock .category-cms-description .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .middle-category-cms .categoryblock .category-cms-description .text-button .cms__btn.shopify-payment-button__button--unbranded {
	        font-size: 12px;
	        line-height: 15px;
	    }
	}

	.bottom_cat_cms {
	    margin: 0 -15px;
	}

	.bottom_cat_cms .categoryblock {
	    width: 50%;
	    padding: 0 15px;
	}

	.bottom_cat_cms .categoryblock .category-cms-description {
	    width: 45%;
	}

	@media only screen and (max-width: 1439px) {
	    .bottom_cat_cms .categoryblock .category-cms-description {
	        top: 11%;
	        width: 50%;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .bottom_cat_cms .categoryblock .category-cms-description {
	        width: 70%;
	        top: 10%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .bottom_cat_cms .categoryblock .category-cms-description {
	        width: 60%;
	        top: 18%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .bottom_cat_cms .categoryblock .category-cms-description {
	        width: 80%;
	        left: 10%;
	        top: 25%;
	    }
	}

	@media (max-width: 550px) {
	    .bottom_cat_cms .categoryblock .category-cms-description {
	        left: 5%;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .bottom_cat_cms .categoryblock .category-cms-description {
	        width: 70%;
	        left: 8%;
	        top: 20%;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .bottom_cat_cms .categoryblock {
	        padding: 0 10px;
	    }
	}

	@media (max-width: 550px) {
	    .bottom_cat_cms .categoryblock {
	        width: 100%;
	        display: inline-block;
	        vertical-align: middle;
	        padding: 0;
	    }

	    .bottom_cat_cms .categoryblock.categoryblock-1 {
	        margin-bottom: 10px;
	    }

	    .bottom_cat_cms .categoryblock.categoryblock-2 {
	        margin-top: 10px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .bottom_cat_cms {
	        margin: 0 -10px;
	    }
	}

	@media (max-width: 550px) {
	    .bottom_cat_cms {
	        margin: 0;
	    }
	}

	.categoryblock {
	    position: relative;
	}

	.categoryblock .category-cms-description {
	    position: absolute;
	    width: 55%;
	    left: 6%;
	    right: auto;
	    top: 18%;
	    bottom: auto;
	}

	@media only screen and (max-width: 1439px) {
	    .categoryblock .category-cms-description {
	        width: 60%;
	        top: 12%;
	    }
	}

	.categoryblock .cms-banner-title {
	    font-size: 24px;
	    font-weight: 600;
	    line-height: normal;
	    text-transform: capitalize;
	    color: white;
	    position: relative;
	    letter-spacing: 0px;
	    text-shadow: 0.5px 0.866px 2px rgba(0, 0, 0, 0.5);
	}

	@media only screen and (max-width: 989px) {
	    .categoryblock .cms-banner-title {
	        font-size: 20px;
	        line-height: 30px;
	        margin: 0 0 5px 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .categoryblock .cms-banner-title {
	        font-size: 16px;
	        line-height: 15px;
	        margin: 0 0 10px;
	    }
	}

	@media (max-width: 550px) {
	    .categoryblock .cms-banner-title {
	        font-size: 28px;
	        line-height: 35px;
	        margin: 0;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .categoryblock .cms-banner-title {
	        font-size: 19px;
	        line-height: 25px;
	        margin-bottom: 5px;
	    }
	}

	.categoryblock .cms-banner-subtitle {
	    font-size: 14px;
	    letter-spacing: 0.4px;
	    margin: 5px 0 48px;
	    color: white;
	    text-transform: capitalize;
	    text-shadow: 0.5px 0.866px 2px rgba(0, 0, 0, 0.5);
	}

	@media only screen and (max-width: 1269px) {
	    .categoryblock .cms-banner-subtitle {
	        margin: 10px 0;
	        font-size: 10px;
	        line-height: 20px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .categoryblock .cms-banner-subtitle {
	        margin: 0 0 5px 0;
	        font-size: 12px;
	        display: none;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .categoryblock .cms-banner-subtitle {
	        margin: 7px 0 2px;
	        font-size: 10px;
	        line-height: 13px;
	    }
	}

	@media (max-width: 550px) {
	    .categoryblock .cms-banner-subtitle {
	        font-size: 12px;
	        margin: 10px 0;
	        line-height: 20px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .categoryblock .cms-banner-subtitle {
	        font-size: 10px;
	        line-height: 15px;
	        margin: 5px 0;
	        display: none;
	    }
	}

	.categoryblock .text-button .btn.cms__btn,
	.categoryblock .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	.shopify-payment-button .categoryblock .text-button .cms__btn.shopify-payment-button__button--unbranded {
	    background-color: transparent;
	    padding: 0;
	    font-size: 15px;
	    font-weight: 500;
	    letter-spacing: 0.2px;
	    color: #6c9228;
	    text-transform: capitalize;
	    border-bottom: 1px solid #6c9228;
	    border-radius: 0;
	    line-height: 18px;
	}

	.categoryblock .text-button .btn.cms__btn:hover,
	.categoryblock .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .categoryblock .text-button .cms__btn.shopify-payment-button__button--unbranded:hover {
	    background-color: transparent;
	    color: white;
	    border-color: white;
	}

	@media only screen and (max-width: 989px) {

	    .categoryblock .text-button .btn.cms__btn,
	    .categoryblock .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .categoryblock .text-button .cms__btn.shopify-payment-button__button--unbranded {
	        font-size: 14px;
	    }
	}

	@media only screen and (max-width: 749px) {

	    .categoryblock .text-button .btn.cms__btn,
	    .categoryblock .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .categoryblock .text-button .cms__btn.shopify-payment-button__button--unbranded {
	        font-size: 12px;
	        line-height: 15px;
	    }
	}

	@media (max-width: 550px) {

	    .categoryblock .text-button .btn.cms__btn,
	    .categoryblock .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .categoryblock .text-button .cms__btn.shopify-payment-button__button--unbranded {
	        font-size: 14px;
	        line-height: 24px;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .categoryblock .text-button .btn.cms__btn,
	    .categoryblock .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	    .shopify-payment-button .categoryblock .text-button .cms__btn.shopify-payment-button__button--unbranded {
	        font-size: 12px;
	        line-height: 15px;
	    }
	}

	.categoryblock .category-image {
	    overflow: hidden;
	    position: relative;
	    display: block;
	    vertical-align: top;
	}

	.categoryblock .category-image .cms-banner-img a {
	    display: block;
	    overflow: hidden;
	    position: relative;
	}

	.categoryblock .category-image .cms-banner-img a:before {
	    bottom: 0;
	    content: "";
	    left: 50%;
	    opacity: 1;
	    -moz-opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    position: absolute;
	    right: 51%;
	    top: 0;
	    background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
	}

	.categoryblock .category-image .cms-banner-img a:after {
	    bottom: 50%;
	    content: "";
	    left: 0;
	    opacity: 1;
	    -moz-opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    position: absolute;
	    right: 0;
	    top: 50%;
	    background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
	}

	.categoryblock .category-image img {
	    display: block;
	}

	.categoryblock .category {
	    overflow: hidden;
	    position: relative;
	    display: inline-block;
	    vertical-align: top;
	    width: 100%;
	    float: left;
	    position: relative;
	}

	.categoryblock .category:hover .cms-banner-img a:before {
	    left: 15px;
	    right: 15px;
	    top: 15px;
	    bottom: 15px;
	    transition: all 500ms ease-in-out 0s;
	    -webkit-transition: all 500ms ease-in-out 0s;
	    -moz-transition: all 500ms ease-in-out 0s;
	    -o-transition: all 500ms ease-in-out 0s;
	    -ms-transition: all 500ms ease-in-out 0s;
	}

	.categoryblock .category:hover .cms-banner-img a:after {
	    left: 15px;
	    right: 15px;
	    top: 15px;
	    bottom: 15px;
	    transition: all 500ms ease-in-out 0s;
	    -webkit-transition: all 500ms ease-in-out 0s;
	    -moz-transition: all 500ms ease-in-out 0s;
	    -o-transition: all 500ms ease-in-out 0s;
	    -ms-transition: all 500ms ease-in-out 0s;
	}

	.cat_cms_top .categoryblock .cms-banner-title {
	    font-weight: 600;
	}

	.cat_cms_top {
	    margin: 0 -15px;
	}

	@media only screen and (max-width: 989px) {
	    .cat_cms_top {
	        margin: 0px -10px;
	    }
	}

	.cat_cms_top .categoryblock {
	    float: left;
	    width: 50%;
	    padding: 0 15px;
	    margin-bottom: 35px;
	}

	@media only screen and (max-width: 989px) {
	    .cat_cms_top .categoryblock {
	        padding: 0px 10px;
	    }
	}

	@media (max-width: 550px) {
	    .cat_cms_top .categoryblock {
	        width: 100%;
	        display: inline-block;
	        vertical-align: top;
	        text-align: center;
	        margin-bottom: 15px;
	    }

	    .cat_cms_top .categoryblock:last-child {
	        margin-bottom: 0;
	    }
	}

	.cat_cms_top .categoryblock .category {
	    overflow: hidden;
	    position: relative;
	    display: inline-block;
	    vertical-align: top;
	    width: 100%;
	    float: left;
	    position: relative;
	}

	.cat_cms_top .categoryblock .category .cms-banner-title {
	    margin-bottom: 0;
	}

	@media only screen and (max-width: 1269px) {
	    .cat_cms_top .categoryblock .category .cms-banner-subtitle {
	        margin: 15px 0;
	    }
	}

	.cat_cms_top .categoryblock .category .cms-banner-subtitle2 {
	    margin-top: 50px;
	    text-transform: capitalize;
	    color: white;
	    font-size: 12px;
	}

	@media only screen and (max-width: 1269px) {
	    .cat_cms_top .categoryblock .category .cms-banner-subtitle2 {
	        margin-top: 12px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .cat_cms_top .categoryblock .category .cms-banner-subtitle2 {
	        margin-top: 10px;
	        font-size: 10px;
	        line-height: 20px;
	    }
	}

	.cat_cms_top .categoryblock .category .text-button .btn.cms__btn,
	.cat_cms_top .categoryblock .category .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded,
	.shopify-payment-button .cat_cms_top .categoryblock .category .text-button .cms__btn.shopify-payment-button__button--unbranded {
	    padding: 0;
	    color: #6c9228;
	    border-color: #6c9228;
	    border-bottom: 1px solid;
	    font-size: 15px;
	}

	.cat_cms_top .categoryblock .category .text-button .btn.cms__btn:hover,
	.cat_cms_top .categoryblock .category .text-button .shopify-payment-button .cms__btn.shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .cat_cms_top .categoryblock .category .text-button .cms__btn.shopify-payment-button__button--unbranded:hover {
	    color: #fff !important;
	    border-color: #fff;
	}

	.cat_cms_top .categoryblock .category-cms-description {
	    top: 22%;
	    right: auto;
	    margin: 0;
	    text-align: left;
	}

	@media only screen and (max-width: 1269px) {
	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-title {
	        font-size: 18px;
	        line-height: 30px;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .cat_cms_top .categoryblock .category-cms-description {
	        width: 90%;
	    }

	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-title {
	        font-size: 20px;
	        line-height: 25px;
	    }

	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-subtitle {
	        display: none;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-title {
	        font-size: 15px;
	        margin-bottom: 5px;
	    }
	}

	@media (max-width: 550px) {
	    .cat_cms_top .categoryblock .category-cms-description {
	        top: 8%;
	        left: 10%;
	    }

	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-title {
	        font-size: 18px;
	        line-height: 20px;
	        margin-bottom: 10px;
	        margin-top: 8%;
	    }

	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-subtitle {
	        display: none;
	    }

	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-subtitle2 {
	        margin-top: 30px;
	        font-size: 13px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-title {
	        margin-bottom: 10px;
	    }

	    .cat_cms_top .categoryblock .category-cms-description .cms-banner-subtitle2 {
	        margin-top: 20px;
	    }
	}

	.product-container-collection {
	    margin: 0;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {
	    .product-container-collection {
	        margin: 0;
	    }
	}

	.product-container-collection .collection-1 .section-header h2,
	.product-container-collection .collection-1 .section-header .h2,
	.product-container-collection .collection-2 .section-header h2,
	.product-container-collection .collection-2 .section-header .h2,
	.product-container-collection .collection-3 .section-header h2,
	.product-container-collection .collection-3 .section-header .h2 {
	    font-size: 20px;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {

	    .product-container-collection .collection-1 .section-header h2,
	    .product-container-collection .collection-1 .section-header .h2,
	    .product-container-collection .collection-2 .section-header h2,
	    .product-container-collection .collection-2 .section-header .h2,
	    .product-container-collection .collection-3 .section-header h2,
	    .product-container-collection .collection-3 .section-header .h2 {
	        color: black;
	        font-size: 20px;
	    }
	}

	.product-container-collection .collection-1 .section-header .text-right,
	.product-container-collection .collection-2 .section-header .text-right,
	.product-container-collection .collection-3 .section-header .text-right {
	    float: right;
	    cursor: pointer;
	    font-weight: 400;
	    font-size: 12px;
	    text-transform: capitalize;
	}

	.product-container-collection .collection-1 .section-header .text-right:hover,
	.product-container-collection .collection-2 .section-header .text-right:hover,
	.product-container-collection .collection-3 .section-header .text-right:hover {
	    color: #6c9228;
	}

	.product-container-collection .collection-1 .section-header .text-right:hover:after,
	.product-container-collection .collection-2 .section-header .text-right:hover:after,
	.product-container-collection .collection-3 .section-header .text-right:hover:after {
	    border-bottom: 1px solid #6c9228;
	}

	.product-container-collection .collection-1 .section-header .text-right .btn,
	.product-container-collection .collection-1 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .product-container-collection .collection-1 .section-header .text-right .shopify-payment-button__button--unbranded,
	.product-container-collection .collection-2 .section-header .text-right .btn,
	.product-container-collection .collection-2 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .product-container-collection .collection-2 .section-header .text-right .shopify-payment-button__button--unbranded,
	.product-container-collection .collection-3 .section-header .text-right .btn,
	.product-container-collection .collection-3 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .product-container-collection .collection-3 .section-header .text-right .shopify-payment-button__button--unbranded {
	    background-color: transparent;
	    color: #000;
	    padding: 0;
	}

	.product-container-collection .collection-1 .section-header .text-right .btn:after,
	.product-container-collection .collection-1 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:after,
	.shopify-payment-button .product-container-collection .collection-1 .section-header .text-right .shopify-payment-button__button--unbranded:after,
	.product-container-collection .collection-2 .section-header .text-right .btn:after,
	.product-container-collection .collection-2 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:after,
	.shopify-payment-button .product-container-collection .collection-2 .section-header .text-right .shopify-payment-button__button--unbranded:after,
	.product-container-collection .collection-3 .section-header .text-right .btn:after,
	.product-container-collection .collection-3 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:after,
	.shopify-payment-button .product-container-collection .collection-3 .section-header .text-right .shopify-payment-button__button--unbranded:after {
	    content: "";
	    border-bottom: 1px solid #000;
	    width: 100%;
	    bottom: 4px;
	    display: block;
	    position: relative;
	}

	.product-container-collection .collection-1 .section-header .text-right .btn:hover,
	.product-container-collection .collection-1 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .product-container-collection .collection-1 .section-header .text-right .shopify-payment-button__button--unbranded:hover,
	.product-container-collection .collection-2 .section-header .text-right .btn:hover,
	.product-container-collection .collection-2 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .product-container-collection .collection-2 .section-header .text-right .shopify-payment-button__button--unbranded:hover,
	.product-container-collection .collection-3 .section-header .text-right .btn:hover,
	.product-container-collection .collection-3 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .product-container-collection .collection-3 .section-header .text-right .shopify-payment-button__button--unbranded:hover {
	    background-color: transparent;
	    color: #6c9228;
	}

	.product-container-collection .collection-1 .section-header .text-right .btn:hover:after,
	.product-container-collection .collection-1 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:hover:after,
	.shopify-payment-button .product-container-collection .collection-1 .section-header .text-right .shopify-payment-button__button--unbranded:hover:after,
	.product-container-collection .collection-2 .section-header .text-right .btn:hover:after,
	.product-container-collection .collection-2 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:hover:after,
	.shopify-payment-button .product-container-collection .collection-2 .section-header .text-right .shopify-payment-button__button--unbranded:hover:after,
	.product-container-collection .collection-3 .section-header .text-right .btn:hover:after,
	.product-container-collection .collection-3 .section-header .text-right .shopify-payment-button .shopify-payment-button__button--unbranded:hover:after,
	.shopify-payment-button .product-container-collection .collection-3 .section-header .text-right .shopify-payment-button__button--unbranded:hover:after {
	    border-color: #6c9228;
	}

	.product_tab-block {
	    float: left;
	    position: relative;
	    width: 100%;
	}

	.product_tab-block .section-header {
	    width: 100%;
	    float: left;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {
	    .product_tab-block .section-header {
	        margin-bottom: 0;
	        text-align: center;
	        padding-bottom: 50px;
	    }

	    .product_tab-block .section-header h2,
	    .product_tab-block .section-header .h2 {
	        float: none;
	        text-align: center;
	    }
	}

	.product_tab-block .product-container-collection .slider {
	    float: left;
	    width: 100%;
	}

	.product_tab-block .collection-header-text {
	    position: relative;
	    float: left;
	    margin-left: 20px;
	    margin-top: 3px;
	}

	@media only screen and (max-width: 749px) {
	    .product_tab-block .collection-header-text {
	        margin-top: 0;
	        margin-left: 0;
	        width: 100%;
	    }
	}

	.product_tab-block .collection-header-text .tabs {
	    float: left;
	    width: 100%;
	    position: relative;
	    text-align: center;
	}

	.product_tab-block .collection-header-text .tabs li {
	    display: inline-block;
	    vertical-align: middle;
	    text-align: center;
	    width: auto;
	    position: relative;
	}

	@media only screen and (max-width: 749px) {
	    .product_tab-block .collection-header-text .tabs li {
	        padding: 5px 0;
	        float: left;
	        width: 100%;
	    }
	}

	.product_tab-block .collection-header-text .tabs li a {
	    color: #c7c7c7;
	    display: block;
	    float: left;
	    font-size: 16px;
	    line-height: 20px;
	    margin: 0 20px;
	    text-align: center;
	    text-transform: capitalize;
	}

	.product_tab-block .collection-header-text .tabs li a.active,
	.product_tab-block .collection-header-text .tabs li a:hover {
	    color: #6c9228;
	}

	@media only screen and (max-width: 749px) {
	    .product_tab-block .collection-header-text .tabs li a {
	        margin: 0;
	        width: 100%;
	        float: left;
	        text-align: center;
	    }
	}

	.product_tab-block .product-grid .text-center a.btn,
	.product_tab-block .product-grid .text-center .shopify-payment-button a.shopify-payment-button__button--unbranded,
	.shopify-payment-button .product_tab-block .product-grid .text-center a.shopify-payment-button__button--unbranded {
	    margin: 0;
	    padding: 0;
	}

	.product_tab-block .product-grid .text-center a.btn:hover,
	.product_tab-block .product-grid .text-center .shopify-payment-button a.shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .product_tab-block .product-grid .text-center a.shopify-payment-button__button--unbranded:hover {
	    background-color: transparent;
	}

	.product_tab-block .product-grid .text-center a.btn:hover:after,
	.product_tab-block .product-grid .text-center .shopify-payment-button a.shopify-payment-button__button--unbranded:hover:after,
	.shopify-payment-button .product_tab-block .product-grid .text-center a.shopify-payment-button__button--unbranded:hover:after {
	    border-bottom: 1px solid #6c9228;
	}

	.product_tab-block .product-grid .text-center a.btn:after,
	.product_tab-block .product-grid .text-center .shopify-payment-button a.shopify-payment-button__button--unbranded:after,
	.shopify-payment-button .product_tab-block .product-grid .text-center a.shopify-payment-button__button--unbranded:after {
	    content: "";
	    border-bottom: 1px solid black;
	    width: 100%;
	    bottom: 4px;
	    display: block;
	    position: relative;
	}

	.product_tab-block .owl-theme .owl-controls {
	    display: none !important;
	}

	.template-list-collections .grid.grid--uniform {
	    margin: 0 -20px;
	}

	.template-list-collections .grid--uniform .grid__item {
	    padding: 0 20px 20px 20px;
	}

	@media only screen and (max-width: 1439px) {
	    .template-list-collections .grid--uniform .grid__item.medium-up--one-quarter {
	        padding: 0 10px 20px 10px;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .template-list-collections .grid--uniform .grid__item.medium-up--one-quarter {
	        width: 32.90%;
	        float: none;
	        display: inline-block;
	        vertical-align: middle;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .template-list-collections .grid--uniform .grid__item {
	        padding: 0 10px 20px 10px;
	    }

	    .template-list-collections .grid--uniform .grid__item.medium-up--one-half,
	    .template-list-collections .grid--uniform .grid__item.medium-up--one-third,
	    .template-list-collections .grid--uniform .grid__item.medium-up--one-quarter {
	        width: 50%;
	        float: left;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .template-list-collections .grid--uniform .grid__item.medium-up--one-half,
	    .template-list-collections .grid--uniform .grid__item.medium-up--one-third,
	    .template-list-collections .grid--uniform .grid__item.medium-up--one-quarter {
	        width: 100%;
	    }
	}

	.template-list-collections .grid--uniform .grid__item .collection-grid-item {
	    position: relative;
	    width: 100%;
	    margin: 0;
	    padding: 0;
	}

	.template-list-collections .grid--uniform .grid__item .collection-grid-item .collection-grid-item__link {
	    position: relative;
	    top: auto;
	    left: auto;
	    bottom: auto;
	    right: auto;
	}

	.template-list-collections .grid--uniform .grid__item .collection-grid-item .collection-grid-item__link .collection-grid-item__title-wrapper {
	    width: 100%;
	    float: left;
	}

	.template-list-collections .grid--uniform .grid__item .collection-grid-item .collection-grid-item__link .collection-grid-item__title-wrapper:before {
	    content: "";
	    display: none;
	}

	.template-list-collections .grid--uniform .grid__item .collection-grid-item .collection-grid-item__link .collection-grid-item__title-wrapper .collection-grid-item__title {
	    position: relative;
	    transition: none;
	    -webkit-transition: none;
	    -moz-transition: none;
	    -ms-transition: none;
	    -o-transition: none;
	    transform: none;
	    -webkit-transform: none;
	    -ms-transform: none;
	    -o-transform: none;
	    -moz-transform: none;
	    text-shadow: none;
	    color: black;
	    text-align: center;
	    width: 100%;
	    top: 0;
	    padding: 0;
	    font-size: 13px;
	    margin: 20px 0 0;
	    letter-spacing: 0.8px;
	    text-transform: capitalize;
	    font-weight: 600;
	}

	.template-list-collections .grid--uniform .grid__item .collection-grid-item .collection-grid-item__link .collection-grid-item__title-wrapper .collection-grid-item__title:hover {
	    color: #6c9228;
	}

	.reviews .spr-icon-star-empty::before {
	    content: '\e800';
	    color: #d3d3d3;
	}

	.reviews .spr-icon-star {
	    color: #6c9228;
	}

	.spr-icon {
	    color: #6c9228;
	    font-size: 100% !important;
	}

	.spr-review-header-title {
	    font-size: 14px;
	    color: #000000;
	    letter-spacing: 0.5px;
	}

	.spr-review-header-byline {
	    font-style: normal !important;
	}

	.spr-review-header-byline strong {
	    font-weight: 500;
	    color: #000;
	    letter-spacing: 0.5px;
	}

	.product-collection {
	    width: 100%;
	    float: left;
	    position: relative;
	}

	.collection {
	    position: relative;
	}

	.product-collection-tab-slider {
	    margin: 0 -5px;
	}

	.product-collection-tab-slider .product_block {
	    margin: 0;
	}

	.product_block {
	    margin: 0 -5px;
	}

	.slider .grid__item.product {
	    float: none;
	    width: auto;
	}

	.product-item-grid {
	    width: 100%;
	    float: left;
	}

	.product-item-grid .grid__item.product {
	    margin-bottom: 30px;
	    padding: 0 5px;
	}

	.grid__item.product {
	    padding: 0 5px;
	    position: relative;
	    z-index: 8;
	    overflow: hidden;
	}

	@media only screen and (max-width: 1269px) {
	    .grid__item.product.medium-up--one-fifth {
	        width: 24.50%;
	        float: none;
	        clear: both;
	        display: inline-block;
	        vertical-align: top;
	    }

	    .grid__item.product.medium-up--one-quarter {
	        width: 32.89%;
	        float: none;
	        clear: both;
	        display: inline-block;
	        vertical-align: top;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .grid__item.product.medium-up--one-fifth {
	        width: 32.92%;
	    }
	}

	@media only screen and (max-width: 749px) {

	    .grid__item.product.medium-up--one-fifth,
	    .grid__item.product.medium-up--one-quarter,
	    .grid__item.product.medium-up--one-third {
	        width: 32.75%;
	        float: none;
	        clear: both;
	        display: inline-block;
	        vertical-align: top;
	        margin-bottom: 5px;
	    }

	    .grid__item.product.medium-up--one-half {
	        width: 49%;
	        float: none;
	        clear: both;
	        display: inline-block;
	        vertical-align: top;
	    }
	}

	@media (max-width: 550px) {

	    .grid__item.product.medium-up--one-fifth,
	    .grid__item.product.medium-up--one-quarter,
	    .grid__item.product.medium-up--one-third {
	        width: 49.5%;
	    }
	}

	@media only screen and (max-width: 479px) {

	    .grid__item.product.medium-up--one-fifth,
	    .grid__item.product.medium-up--one-quarter,
	    .grid__item.product.medium-up--one-third {
	        width: 49%;
	    }
	}

	.grid__item.product .product-item {
	    float: left;
	    width: 100%;
	}

	.grid__item.product .product-item:hover .product-desc .grid-view-item__meta {
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	}

	.grid__item.product .product-item:hover .product-desc .price {
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	}

	@media only screen and (max-width: 749px) {
	    .grid__item.product .product-item:hover .product-desc .price {
	        opacity: 1;
	        -khtml-opacity: 1;
	        -webkit-opacity: 1;
	        -moz-opacity: 1;
	    }
	}

	.grid__item.product .product-item:hover .product-block-hover {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    transform: translateX(0px);
	    -webkit-transform: translateX(0px);
	    -ms-transform: translateX(0px);
	    -o-transform: translateX(0px);
	    -moz-transform: translateX(0px);
	}

	@media only screen and (max-width: 749px) {
	    .grid__item.product .product-item:hover .product-block-hover {
	        transform: none;
	    }
	}

	.grid__item.product .grid-view-item {
	    margin: 0;
	    float: left;
	    width: 100%;
	    position: relative;
	}

	.grid__item.product .grid-view-item .image-container {
	    position: relative;
	}

	.grid__item.product .grid-view-item .product-desc {
	    background: #fff;
	    text-align: left;
	    float: left;
	    width: 100%;
	    padding: 10px 30px 8px 0px;
	    position: relative;
	}

	.grid__item.product .grid-view-item .product-desc .grid-view-item__meta {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    -ms-transition: all 0.2s ease-in-out 0s;
	    -webkit-transition: all 0.2s ease-in-out 0s;
	    transition: all 0.2s ease-in-out 0s;
	}

	.grid__item.product .grid-view-item .product-desc .reviews {
	    float: left;
	    width: 100%;
	    line-height: 24px;
	    margin-bottom: 8px;
	    position: relative;
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    -ms-transition: all 0.2s ease-in-out 0s;
	    -webkit-transition: all 0.2s ease-in-out 0s;
	    transition: all 0.2s ease-in-out 0s;
	}

	.grid__item.product .grid-view-item .product-desc .reviews .spr-badge-starrating .spr-icon {
	    font-size: 12px !important;
	}

	.grid__item.product .grid-view-item .product-desc .price {
	    opacity: 1;
	}

	@media only screen and (max-width: 1269px) {
	    .grid__item.product .grid-view-item .product-desc {
	        padding: 10px 10px 8px 5px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .grid__item.product .grid-view-item .product-desc {
	        padding: 10px 5px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .grid__item.product .grid-view-item .product-desc {
	        padding: 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .grid__item.product .product-block-hover {
	        display: none;
	    }
	}

	.reviews .spr-badge-caption {
	    display: none;
	}

	.template-product .single-product_description .reviews .spr-badge-caption {
	    display: inline-block;
	    vertical-align: top;
	}

	.spr-icon:before {
	    font-size: 110% !important;
	    margin: 0 1px;
	}

	.spr-icon {
	    opacity: 1 !important;
	    -khtml-opacity: 1 !important;
	    -webkit-opacity: 1 !important;
	    -moz-opacity: 1 !important;
	}

	.product-block-hover {
	    opacity: 0;
	    -khtml-opacity: 0;
	    -webkit-opacity: 0;
	    -moz-opacity: 0;
	    position: absolute;
	    top: auto;
	    bottom: 0;
	    left: 0;
	    width: 100%;
	    right: auto;
	    -ms-transition: all 300ms ease;
	    -webkit-transition: all 300ms ease;
	    transition: all 300ms ease;
	    transform: translateX(-170px);
	    -webkit-transform: translateX(-170px);
	    -ms-transform: translateX(-170px);
	    -o-transform: translateX(-170px);
	    -moz-transform: translateX(-170px);
	}

	@media only screen and (max-width: 749px) {
	    .product-block-hover {
	        opacity: 1;
	        -khtml-opacity: 1;
	        -webkit-opacity: 1;
	        -moz-opacity: 1;
	        position: relative;
	        transform: none;
	        top: 0;
	        left: 0;
	        margin-top: 10px;
	    }
	}

	.product-block-hover .btn.add-to-cart,
	.product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded,
	.shopify-payment-button .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded,
	.product-block-hover a.selectoption-button {
	    width: 35px;
	    height: 35px;
	    padding: 8px;
	    display: inline-block !important;
	    vertical-align: middle;
	    box-sizing: border-box;
	    border-radius: 5px !important;
	    text-align: center;
	    line-height: 35px;
	    font-size: 0 !important;
	    background: #0083d0;
	    color: #fff;
	    position: relative !important;
	    border: none;
	    z-index: 70999 !important;
	    float: none;
	}

	.product-block-hover .btn.add-to-cart:hover,
	.product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded:hover,
	.shopify-payment-button .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded:hover,
	.product-block-hover a.selectoption-button:hover {
	    background-color: #6c9228;
	}

	.product-block-hover .btn.add-to-cart:hover:before,
	.product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded:hover:before,
	.shopify-payment-button .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded:hover:before,
	.product-block-hover a.selectoption-button:hover:before {
	    color: #fff;
	    background-position: -132px -197px;
	}

	.product-block-hover .btn.add-to-cart svg,
	.product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded svg,
	.shopify-payment-button .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded svg,
	.product-block-hover a.selectoption-button svg {
	    position: relative;
	    top: 2px;
	    left: -1px;
	}

	.product-block-hover .btn.add-to-cart:before,
	.product-block-hover .shopify-payment-button .add-to-cart.shopify-payment-button__button--unbranded:before,
	.shopify-payment-button .product-block-hover .add-to-cart.shopify-payment-button__button--unbranded:before,
	.product-block-hover a.selectoption-button:before {
	    position: absolute;
	    content: '';
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -132px -141px;
	    width: 35px;
	    height: 35px;
	    top: 0;
	    left: 0;
	}

	.section-hero {
	    position: relative;
	    float: left;
	    width: 100%;
	}

	.section-hero .collection.overlay-collection_top,
	.section-hero .collection.overlay-collection_bottom {
	    position: absolute;
	    bottom: 30%;
	    right: 0;
	    background: #fff;
	    padding: 0;
	    z-index: 9;
	}

	.section-hero .collection.overlay-collection_top .section-header,
	.section-hero .collection.overlay-collection_bottom .section-header {
	    display: none;
	}

	.section-hero .collection.overlay-collection_top .product-collection,
	.section-hero .collection.overlay-collection_bottom .product-collection {
	    position: relative;
	    width: 570px;
	    height: 284px;
	    float: left;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block {
	    float: left;
	    width: 100%;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider {
	    overflow: hidden;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product {
	    float: left;
	    padding: 0;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item {
	    float: left;
	    width: 100%;
	    padding: 20px;
	    margin: 0;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item {
	    margin: 0;
	    float: left;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link {
	    width: 50%;
	    float: left;
	    position: relative;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link span.product-price__sale-label,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link .grid-product__on-sale,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link span.product-price__sale-label,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link .grid-product__on-sale,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link span.product-price__sale-label,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link .grid-product__on-sale,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link span.product-price__sale-label,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item a.grid-view-item__link .grid-product__on-sale {
	    position: absolute;
	    top: 10px;
	    left: 10px;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc {
	    float: right;
	    width: 50%;
	    padding: 25px 0 25px 25px;
	    margin-top: 25px;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title {
	    font-size: 15px;
	    line-height: 20px;
	    width: 100%;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__meta,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__meta,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__meta,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__meta {
	    float: left;
	    width: 100%;
	    text-align: left;
	    margin: 25px 0;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title a.grid-view-item__link,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title a.grid-view-item__link,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title a.grid-view-item__link,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .grid-view-item__title a.grid-view-item__link {
	    float: left;
	    width: 100%;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .reviews,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .reviews,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item .grid-view-item .product-desc .reviews,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item .grid-view-item .product-desc .reviews {
	    margin: 0 0 10px;
	}

	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item:hover .product-desc,
	.section-hero .collection.overlay-collection_top .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item:hover .product-desc,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_top_products_slider .grid__item.product .product-item:hover .product-desc,
	.section-hero .collection.overlay-collection_bottom .product-collection .product_block div#overlay-collection_bottom_products_slider .grid__item.product .product-item:hover .product-desc {
	    transform: none;
	    -webkit-transform: none;
	    -ms-transform: none;
	    -o-transform: none;
	    -moz-transform: none;
	}

	.section-hero .collection.overlay-collection_top .product-collection:hover a.prev,
	.section-hero .collection.overlay-collection_top .product-collection:hover a.next,
	.section-hero .collection.overlay-collection_bottom .product-collection:hover a.prev,
	.section-hero .collection.overlay-collection_bottom .product-collection:hover a.next {
	    opacity: 1;
	    -khtml-opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	}

	.section-hero .collection.overlay-collection_top a.prev,
	.section-hero .collection.overlay-collection_bottom a.prev {
	    top: 45%;
	    left: 0;
	    right: auto;
	}

	.section-hero .collection.overlay-collection_top a.next,
	.section-hero .collection.overlay-collection_bottom a.next {
	    top: 45%;
	    left: auto;
	    right: 0;
	}

	@media only screen and (max-width: 749px) {
	    .section-hero {
	        padding-top: 0;
	    }
	}

	.review-section {
	    float: left;
	    width: 100%;
	    padding: 75px 0;
	}

	.review-section .review-block {
	    position: relative;
	}

	.review-section .section-header {
	    margin-bottom: 30px;
	}

	.review-section .quotes-wrapper {
	    margin: 0 -15px;
	}

	.review-section .quotes-slider__text {
	    float: left;
	    width: 100%;
	}

	.review-section .quotes-slider__text .quotes-left {
	    float: left;
	    width: auto;
	    margin-right: 25px;
	}

	.review-section .quotes-slider__text .quotes-left .user-image img {
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	}

	.review-section .quotes-slider__text .quotes-right {
	    text-align: left;
	}

	.review-section .quotes-slider__text .quotes-right .rte-setting {
	    margin: 15px 0;
	}

	.review-section .quotes-slider__text .quotes-right .quote-icon .icon {
	    fill: #ffd61e;
	}

	.review-section .quotes-slider__text .author-info .name {
	    text-transform: uppercase;
	    color: black;
	}

	.singel_cat_cms {
	    width: auto;
	    float: left;
	}

	.singel_cat_cms .categoryblock {
	    width: 100%;
	}

	.singel_cat_cms .categoryblock .category-cms-description {
	    width: 40%;
	}

	@media only screen and (max-width: 1439px) {
	    .singel_cat_cms .categoryblock .category-cms-description {
	        top: 17%;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .singel_cat_cms .categoryblock .category-cms-description {
	        top: 18%;
	        left: 17%;
	        text-align: left;
	        width: 30%;
	    }

	    .singel_cat_cms .categoryblock .category-cms-description .cms-banner-subtitle {
	        line-height: 24px;
	        margin: 20px 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .singel_cat_cms .categoryblock .category-cms-description {
	        left: 10%;
	        width: 40%;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .singel_cat_cms .categoryblock .category-cms-description {
	        width: 50%;
	        top: 10%;
	        left: 5%;
	    }

	    .singel_cat_cms .categoryblock .category-cms-description .cms-banner-title {
	        line-height: 30px;
	    }

	    .singel_cat_cms .categoryblock .category-cms-description .cms-banner-subtitle {
	        line-height: 20px;
	        margin: 10px 0;
	    }
	}

	@media (max-width: 550px) {
	    .singel_cat_cms .categoryblock .category-cms-description {
	        width: 70%;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .singel_cat_cms .categoryblock .category-cms-description {
	        width: 70%;
	        top: 20%;
	    }

	    .singel_cat_cms .categoryblock .category-cms-description .cms-banner-title {
	        line-height: 25px;
	        font-size: 18px;
	    }

	    .singel_cat_cms .categoryblock .category-cms-description .cms-banner-subtitle {
	        line-height: 15px;
	        margin: 5px 0 0;
	    }
	}

	.singel_cat_cms .categoryblock .cms-banner-img img {
	    border-radius: 4px;
	}

	@media only screen and (max-width: 1269px) {
	    .singel_cat_cms .categoryblock {
	        width: 100%;
	        float: none;
	        display: inline-block;
	        vertical-align: top;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .singel_cat_cms {
	        width: 100%;
	        float: none;
	        display: inline-block;
	        vertical-align: top;
	        text-align: center;
	    }
	}

	.blog-slider-section {
	    padding: 0;
	}

	@media only screen and (max-width: 1269px) {
	    .blog-slider-section {
	        padding-top: 30px;
	        padding-bottom: 30px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .blog-slider-section {
	        padding-bottom: 0;
	        padding-top: 0;
	    }
	}

	.site-footer .site-footer__content {
	    padding: 70px 0;
	    width: 100%;
	    float: left;
	}

	@media only screen and (max-width: 1439px) {
	    .site-footer .site-footer__content {
	        padding: 50px 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .site-footer .site-footer__content {
	        padding: 40px 0;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-footer .site-footer__content {
	        padding: 30px 0;
	    }
	}

	@media only screen and (max-width: 989px) {
	    .site-footer .site-footer__content .site-footer__item.footer-box {
	        width: 100%;
	        float: left;
	        padding: 10px 0;
	    }

	    .site-footer .site-footer__content .site-footer__item.footer-box:first-child {
	        padding-top: 0;
	    }

	    .site-footer .site-footer__content .site-footer__item.footer-box:last-child {
	        padding-bottom: 0;
	        border: none;
	    }

	    .site-footer .site-footer__content .site-footer__item .footer-content {
	        width: 100%;
	        float: left;
	        margin-top: 15px;
	        text-align: left;
	        float: left;
	        display: none;
	    }
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .address {
	    width: 100%;
	    float: left;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .address .contact_address {
	    font-size: 13px;
	    line-height: 26px;
	    color: #ebebeb;
	    font-weight: 400;
	    padding-left: 40px;
	    position: relative;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .address .contact_address:hover:before {
	    background-position: -69px -138px;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .address .contact_address:before {
	    content: '';
	    position: absolute;
	    width: 30px;
	    height: 30px;
	    background: url("../img/icn-sprt.png") no-repeat scroll -69px -65px;
	    left: 0;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .email {
	    width: 100%;
	    float: left;
	    margin: 12px 0;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .email .contact_email {
	    font-size: 13px;
	    line-height: 30px;
	    color: #ebebeb;
	    font-weight: 400;
	    padding-left: 40px;
	    position: relative;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .email .contact_email:hover:before {
	    background-position: -68px -290px;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .email .contact_email:before {
	    content: '';
	    position: absolute;
	    width: 30px;
	    height: 30px;
	    background: url("../img/icn-sprt.png") no-repeat scroll -68px -216px;
	    left: 0;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .email .contact_email a {
	    color: #ebebeb;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .email .contact_email a:hover {
	    color: #6c9228;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .phone {
	    width: 100%;
	    float: left;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .phone .contact_phone {
	    font-size: 13px;
	    line-height: 30px;
	    color: #ebebeb;
	    font-weight: 400;
	    padding-left: 40px;
	    position: relative;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .phone .contact_phone:hover:before {
	    background-position: -68px -434px;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .phone .contact_phone:before {
	    content: '';
	    position: absolute;
	    width: 30px;
	    height: 30px;
	    background: url("../img/icn-sprt.png") no-repeat scroll -68px -361px;
	    left: 0;
	}

	.site-footer .site-footer__content .site-footer__item .contact-block .social-icons {
	    width: 100%;
	    float: left;
	    margin-top: 20px;
	}

	.site-footer .site-footer__content .site-footer__item .link_title {
	    font-size: 17px;
	    font-weight: 500;
	    line-height: 24px;
	    text-transform: capitalize;
	    color: #038e4e;
	    margin-bottom: 20px;
	}

	@media only screen and (max-width: 989px) {
	    .site-footer .site-footer__content .site-footer__item .link_title {
	        margin-bottom: 0;
	    }
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__item-inner--newsletter {
	    width: 100%;
	    float: left;
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__item-inner--newsletter .newsletter-description {
	    font-size: 13px;
	    font-weight: 400;
	    line-height: 26px;
	    color: #ebebeb;
	    margin-bottom: 30px;
	}

	@media only screen and (max-width: 989px) {
	    .site-footer .site-footer__content .site-footer__item .site-footer__item-inner--newsletter .newsletter-description {
	        margin-bottom: 15px;
	    }
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter {
	    width: 100%;
	    float: left;
	}

	@media only screen and (max-width: 989px) {
	    .site-footer .site-footer__content .site-footer__item .site-footer__newsletter {
	        width: auto;
	    }
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group {
	    width: auto;
	    position: relative;
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	}

	@media only screen and (max-width: 989px) {
	    .site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group {
	        width: 360px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group {
	        width: auto;
	    }
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .newsletter__input {
	    min-height: 44px;
	    width: 100%;
	    float: left;
	    border: none;
	    margin: 0;
	    border-radius: 4px;
	    -webkit-border-radius: 4px;
	    -khtml-border-radius: 4px;
	    -moz-border-radius: 4px;
	    background-color: #ffffff;
	    color: black;
	    padding: 10px 50px 10px 15px;
	    font-size: 12px;
	    font-weight: 400;
	    letter-spacing: 0.8px;
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .newsletter__input:focus {
	    border-color: transparent;
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn {
	    position: absolute;
	    right: 0;
	    top: 0;
	}

	@media only screen and (max-width: 479px) {
	    .site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn {
	        width: auto;
	        flex-grow: unset;
	    }
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn .btn,
	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
	.shopify-payment-button .site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn .shopify-payment-button__button--unbranded {
	    width: 44px;
	    height: 44px;
	    min-height: 44px;
	    border-radius: 0;
	    -webkit-border-radius: 0;
	    -khtml-border-radius: 0;
	    -moz-border-radius: 0;
	    border: none;
	    padding: 0;
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -58px -495px;
	}

	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn .btn span,
	.site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded span,
	.shopify-payment-button .site-footer .site-footer__content .site-footer__item .site-footer__newsletter .input-group .input-group__btn .shopify-payment-button__button--unbranded span {
	    font-size: 0;
	}

	.site-footer .footer-bottom {
	    width: 100%;
	    float: left;
	    padding: 13px 0 15px;
	    border-top: 1px solid #474747;
	}

	.site-footer .footer-bottom .small--text-center {
	    position: relative;
	}

	.site-footer .footer-bottom .site-footer__copyright {
	    width: 100%;
	    float: left;
	    text-align: left;
	}

	@media only screen and (max-width: 749px) {
	    .site-footer .footer-bottom .site-footer__copyright {
	        text-align: center;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .site-footer .footer-bottom .site-footer__payment-icons {
	        margin: 10px 0 0;
	    }
	}

	@media only screen and (max-width: 1269px) {
	    .site-footer .footer-bottom {
	        padding: 30px 0;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .site-footer .footer-bottom {
	        padding: 20px 0;
	    }
	}

	.footer-bottom-center {
	    width: 100%;
	    text-align: center;
	}

	@media only screen and (max-width: 749px) {
	    .footer-bottom-center {
	        width: 100%;
	        margin: 10px auto;
	    }
	}

	.footer-bottom-right {
	    float: right;
	    width: 50%;
	}

	@media only screen and (max-width: 749px) {
	    .footer-bottom-right {
	        width: 100%;
	        text-align: center;
	    }
	}

	/*================ Currency selector ================*/
	@media only screen and (max-width: 749px) {
	    .currency-selector {
	        display: -webkit-flex;
	        display: -ms-flexbox;
	        display: flex;
	        width: 100%;
	        -ms-flex-align: center;
	        -webkit-align-items: center;
	        -moz-align-items: center;
	        -ms-align-items: center;
	        -o-align-items: center;
	        align-items: center;
	        background-color: rgba(112, 112, 112, 0.1);
	        padding: 12px 17px 12px 30px;
	    }
	}

	.currency-selector__label {
	    font-size: 0.92308em;
	    margin-bottom: 0;
	    text-transform: uppercase;
	}

	.currency-selector__input-wrapper {
	    margin-top: 4px;
	}

	@media only screen and (max-width: 749px) {
	    .currency-selector__input-wrapper {
	        margin-top: 0;
	        width: 100%;
	    }
	}

	.currency-selector__input-wrapper .icon {
	    left: auto;
	    height: 10px;
	    margin: 0;
	    width: 12px;
	}

	@media only screen and (min-width: 750px) {
	    .currency-selector__input-wrapper .icon {
	        height: calc(8em / 16);
	        right: 5px;
	        width: calc(8em / 16);
	    }
	}

	.currency-selector__dropdown {
	    border: none;
	    color: black;
	    padding-left: 8px;
	    padding-right: 17px;
	}

	@media only screen and (max-width: 749px) {
	    .currency-selector__dropdown {
	        font-size: 0.92308em;
	        width: 100%;
	    }
	}

	.collection-list {
	    float: left;
	    width: 100%;
	    margin: 0 auto 0 auto;
	    position: relative;
	}

	.collection-list .section-header {
	    width: 100%;
	    position: relative;
	    border: none;
	    margin: 0 0 30px;
	    padding: 0;
	}

	.collection-list .section-header>h2,
	.collection-list .section-header>.h2 {
	    font-size: 16px;
	    font-weight: 600;
	    line-height: 24px;
	    letter-spacing: 0.4px;
	    display: inline-block;
	    vertical-align: middle;
	    margin: 0 20px 0 0;
	}

	@media only screen and (max-width: 479px) {

	    .collection-list .section-header>h2,
	    .collection-list .section-header>.h2 {
	        margin: 0 auto;
	        text-align: center;
	        width: 100%;
	    }
	}

	.collection-list .section-header .static-inner {
	    display: inline-block;
	    vertical-align: middle;
	}

	.collection-list .section-header .static-inner .title1 span.text1.static-text {
	    font-size: 12px;
	    letter-spacing: 0.4px;
	    color: #a5a5a5;
	    line-height: 25px;
	    text-transform: capitalize;
	}

	@media only screen and (max-width: 749px) {
	    .collection-list .section-header .static-inner {
	        display: none;
	    }
	}

	.collection-list .section-header .view-collection {
	    float: right;
	    text-align: right;
	}

	.collection-list .section-header .view-collection a {
	    padding-bottom: 5px;
	    text-transform: capitalize;
	}

	.collection-list .section-header .view-collection a:after {
	    content: "";
	    border-bottom: 1px solid black;
	    width: 100%;
	    bottom: 4px;
	    display: block;
	    position: relative;
	}

	.collection-list .section-header .view-collection a:hover a {
	    color: #6c9228;
	}

	.collection-list .section-header .view-collection a:hover:after {
	    border-bottom: 1px solid #6c9228;
	}

	@media only screen and (max-width: 479px) {
	    .collection-list .section-header .view-collection a {
	        padding-bottom: 0;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .collection-list .section-header .view-collection {
	        float: none;
	        text-align: center;
	        width: auto;
	        display: inline-block;
	        vertical-align: middle;
	        margin-top: 15px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .collection-list .section-header {
	        padding: 10px;
	        text-align: center !important;
	        margin: 0 0 10px;
	    }
	}

	.collection-list .collection-listcontainer {
	    margin: 0 -25px;
	}

	@media only screen and (max-width: 989px) {
	    .collection-list .collection-listcontainer {
	        margin: 0 -12px;
	    }
	}

	@media only screen and (max-width: 749px) {
	    .collection-list .collection-listcontainer {
	        margin: 0 -5px;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .collection-list .collection-listcontainer {
	        margin: 0 -13px;
	    }
	}

	.collection-list .collection-grid {
	    position: relative;
	    top: 0;
	    overflow: visible;
	    margin: 0 auto;
	    width: 100%;
	}

	.collection-list .collection-grid #collection-item-tm .owl-nav {
	    top: 20%;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item {
	    padding-bottom: 0;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item .collection-grid-item__overlay {
	    background-color: #ffffff;
	    display: inline-block;
	    vertical-align: top;
	    height: 120px;
	    width: 120px;
	    text-align: center;
	    border-width: 4px;
	    border-style: solid;
	    border-color: #f7f7f7;
	    border-radius: 5px;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item .collection-grid-item__link {
	    position: relative;
	    float: none;
	    overflow: visible;
	    width: 100%;
	    display: inline-block;
	    vertical-align: middle;
	    text-align: center;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item .collection-grid-item__title {
	    position: relative;
	    margin: 15px 0;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item .collection-grid-item__title a {
	    font-size: 13px;
	    font-weight: 500;
	    color: black;
	    text-shadow: none;
	    letter-spacing: 0.6px;
	    text-transform: capitalize;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item .collection-grid-item__title a:hover {
	    color: #6c9228;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item:hover .collection-grid-item__overlay {
	    border-color: #6c9228;
	}

	.collection-list .collection-grid #collection-item-tm .collection-grid-item:hover .collection-grid-item__title a {
	    color: #6c9228;
	}

	@media only screen and (max-width: 479px) {
	    .collection-list {
	        margin: 0 auto 10px auto;
	    }
	}

	.owl-carousel .owl-nav {
	    position: absolute;
	    top: 30%;
	    width: 100%;
	    display: block;
	}

	.owl-carousel .owl-nav button.owl-prev,
	.owl-carousel .owl-nav button.owl-next {
	    height: 35px;
	    width: 35px;
	    background-color: #0083d0 !important;
	    border-radius: 50%;
	    border: 1px solid #0083d0 !important;
	    font-size: 40px !important;
	    color: #e8e9eb !important;
	    position: absolute;
	    transition: all 500ms ease 0s;
	    -webkit-transition: all 500ms ease 0s;
	    -moz-transition: all 500ms ease 0s;
	    -ms-transition: all 500ms ease 0s;
	    -o-transition: all 500ms ease 0s;
	    opacity: 0;
	}

	.owl-carousel .owl-nav button.owl-prev:hover,
	.owl-carousel .owl-nav button.owl-next:hover {
	    color: #6c9228 !important;
	    border-color: #6c9228 !important;
	    background-color: #6c9228 !important;
	}

	.owl-carousel .owl-nav button.owl-prev:hover:before,
	.owl-carousel .owl-nav button.owl-next:hover:before {
	    background-position: -71px -630px;
	}

	.owl-carousel .owl-nav button.owl-prev span,
	.owl-carousel .owl-nav button.owl-next span {
	    display: none;
	}

	.owl-carousel .owl-nav button.owl-prev:before,
	.owl-carousel .owl-nav button.owl-next:before {
	    content: "";
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -71px -572px;
	    width: 15px;
	    height: 15px;
	    position: relative;
	    display: block;
	    margin: 0 auto;
	}

	@media only screen and (max-width: 749px) {

	    .owl-carousel .owl-nav button.owl-prev,
	    .owl-carousel .owl-nav button.owl-next {
	        opacity: 1;
	    }
	}

	.owl-carousel .owl-nav button.owl-prev {
	    left: -50px;
	}

	.owl-carousel .owl-nav button.owl-prev:before {
	    background-position: -7px -572px;
	}

	.owl-carousel .owl-nav button.owl-prev:hover:before {
	    background-position: -7px -630px;
	}

	@media only screen and (max-width: 749px) {
	    .owl-carousel .owl-nav button.owl-prev {
	        left: 0;
	    }
	}

	.owl-carousel .owl-nav button.owl-next {
	    right: -50px;
	}

	@media only screen and (max-width: 749px) {
	    .owl-carousel .owl-nav button.owl-next {
	        right: 0;
	    }
	}

	.owl-carousel .owl-dots {
	    width: 100%;
	    display: inline-block;
	    vertical-align: top;
	    text-align: center;
	    margin-bottom: 20px;
	}

	.owl-carousel .owl-dots button.owl-dot {
	    height: 12px;
	    width: 12px;
	    border: 1px solid #000 !important;
	    border-radius: 50%;
	    margin: 0 3px;
	    background: #000;
	}

	.owl-carousel .owl-dots button.owl-dot.active {
	    background: #6c9228;
	    border-color: #6c9228 !important;
	}

	.owl-carousel#blog_slider {
	    position: unset;
	}

	.owl-carousel#blog_slider .owl-nav {
	    top: 0;
	}

	.owl-carousel#blog_slider .owl-nav button.owl-prev,
	.owl-carousel#blog_slider .owl-nav button.owl-next {
	    opacity: 1;
	}

	.owl-carousel#blog_slider .owl-nav button.owl-prev {
	    left: auto;
	    right: 40px;
	}

	.owl-carousel#blog_slider .owl-nav button.owl-next {
	    right: 0;
	}

	.slider {
	    float: left;
	}

	.slider.owl-carousel:hover .owl-nav button.owl-prev,
	.slider.owl-carousel:hover .owl-nav button.owl-next,
	.brands.owl-carousel:hover .owl-nav button.owl-prev,
	.brands.owl-carousel:hover .owl-nav button.owl-next {
	    opacity: 1;
	}

	.slider.owl-carousel:hover .owl-nav button.owl-prev,
	.brands.owl-carousel:hover .owl-nav button.owl-prev {
	    left: 0;
	}

	.slider.owl-carousel:hover .owl-nav button.owl-next,
	.brands.owl-carousel:hover .owl-nav button.owl-next {
	    right: 0;
	}

	.owl-item.active.last .grid__item.product .grid-view-item .full-width-link {
	    border-right: none;
	}

	.reveal .hidden {
	    display: block !important;
	    visibility: hidden;
	    position: absolute;
	    z-index: -1;
	    top: 0;
	    width: 100%;
	    opacity: 0;
	    left: 0%;
	    right: 0;
	    -webkit-transform: translateX(-110%);
	    -moz-transform: translateX(-110%);
	    -ms-transform: translateX(-110%);
	    -o-transform: translateX(-110%);
	    transform: translateX(-110%);
	    transition-duration: 500ms;
	    -webkit-transition-duration: 500ms;
	    -moz-transition-duration: 500ms;
	    -ms-transition-duration: 500ms;
	    -o-transition-duration: 500ms;
	    visibility: hidden;
	    max-width: 100%;
	    height: auto;
	}

	.reveal:hover .hidden {
	    z-index: 99;
	    opacity: 1;
	    -webkit-opacity: 1;
	    -moz-opacity: 1;
	    -khtml-opacity: 1;
	    visibility: visible;
	    overflow: hidden;
	    -webkit-transform: translate(0, 0);
	    -moz-transform: translate(0, 0);
	    -ms-transform: translate(0, 0);
	    -o-transform: translate(0, 0);
	    transform: translate(0, 0);
	    transition-duration: 500ms;
	    -webkit-transition-duration: 500ms;
	    -moz-transition-duration: 500ms;
	    -ms-transition-duration: 500ms;
	    -o-transition-duration: 500ms;
	}

	.ajaxified-cart-feedback.success {
	    background: #000;
	    width: 90%;
	    color: #fff;
	    position: absolute;
	    bottom: 0;
	    z-index: 99999;
	    padding: 10px;
	    float: left;
	    border-radius: 4px;
	}

	@media only screen and (max-width: 749px) {
	    .ajaxified-cart-feedback.success {
	        bottom: -50px;
	        width: 100%;
	    }
	}

	@media only screen and (max-width: 479px) {
	    .ajaxified-cart-feedback.success {
	        bottom: -35px;
	    }
	}

	.ajaxified-cart-feedback.success span {
	    display: inline-block;
	    text-align: center;
	    margin-bottom: 3px;
	    vertical-align: top;
	    width: 100%;
	    color: #fff;
	}

	.ajaxified-cart-feedback.success a {
	    color: #6c9228;
	}

	.ajaxified-cart-feedback.success a:hover {
	    color: white;
	}

	@media (max-width: 550px) {
	    .ajaxified-cart-feedback.success a {
	        display: inline-block;
	        vertical-align: top;
	    }
	}

	.top_button {
	    background: #6c9228;
	    top: auto !important;
	    bottom: 40px !important;
	    display: none;
	    height: 35px;
	    width: 35px;
	    position: fixed;
	    right: 40px;
	    text-align: center;
	    z-index: 9999;
	    border-radius: 4px;
	}

	.top_button:hover {
	    background-color: #000;
	}

	.top_button:hover .icon {
	    fill: white;
	}

	@media only screen and (max-width: 749px) {
	    .top_button {
	        bottom: 20px !important;
	        right: 20px;
	    }
	}

	.top_button .icon {
	    height: 12px;
	    width: 12px;
	    fill: black;
	    position: relative;
	    top: 12px;
	}

	.btn.btn-wishlist,
	.shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded,
	.btn.btn-compare,
	.shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded {
	    background: #0083d0;
	    width: 35px;
	    height: 35px;
	    padding: 8px;
	    display: inline-block !important;
	    vertical-align: middle;
	    border-radius: 5px !important;
	    text-align: center;
	    line-height: 35px;
	    font-size: 0 !important;
	    color: #fff;
	    position: relative !important;
	    border: none;
	    z-index: 70999 !important;
	    float: none;
	}

	.btn.btn-wishlist,
	.shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded {
	    margin: 0 1px 0 5px;
	}

	.btn.btn-compare .cm-link svg,
	.shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded .cm-link svg {
	    left: 1px;
	}

	.cm-link,
	.cm-link span {
	    cursor: pointer;
	    width: 35px;
	    height: 35px;
	    line-height: 30px;
	    font-size: 0;
	    text-align: center;
	    padding: 0;
	    text-transform: capitalize;
	    color: white;
	    display: block;
	}

	.cm-link svg,
	.cm-link span svg {
	    width: 16px;
	    height: 16px;
	    top: 2px;
	    left: 2px;
	    position: relative;
	}

	.cm-link .add-to-wishlist {
	    position: relative;
	}

	.cm-link .add-to-wishlist:before {
	    content: '';
	    position: absolute;
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -373px;
	    width: 15px;
	    height: 15px;
	    left: 1px;
	    top: 3px;
	}

	.product-right-top .cm-link .add-to-wishlist:before {
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -430px;
	    left: -12px;
	}

	.cm-link .added-to-wishlist {
	    position: relative;
	}

	.cm-link .added-to-wishlist:before {
	    content: '';
	    position: absolute;
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -485px;
	    width: 15px;
	    height: 15px;
	    left: 2px;
	    top: 1px;
	}

	.product-right-top .cm-link .added-to-wishlist:before {
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -541px;
	    left: -12px;
	}

	.cm-link .add-to-compare {
	    position: relative;
	}

	.cm-link i {
	    font-size: 15px;
	    display: inline-block;
	    position: absolute;
	    top: 3px;
	    right: 9px;
	    color: #fff;
	}

	.cm-link .add-to-compare:before {
	    content: '';
	    position: absolute;
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -613px;
	    width: 15px;
	    height: 15px;
	    left: 2px;
	    top: 3px;
	}

	.product-right-top .cm-link .add-to-compare:before {
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -669px;
	    left: -13px;
	}

	.cm-link .added-to-compare {
	    position: relative;
	}

	.cm-link .added-to-compare:before {
	    content: '';
	    position: absolute;
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -729px;
	    width: 15px;
	    height: 15px;
	    left: 2px;
	    top: 3px;
	}

	.product-right-top .cm-link .added-to-compare:before {
	    background: transparent url("../img/icn-sprt.png") no-repeat scroll -141px -785px;
	    left: -12px;
	}

	.btn.btn-wishlist:hover .cm-link .add-to-wishlist:before,
	.shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded:hover .cm-link .add-to-wishlist:before {
	    background-position: -141px -430px;
	}

	.btn.btn-wishlist:hover .cm-link .added-to-wishlist:before,
	.shopify-payment-button .btn-wishlist.shopify-payment-button__button--unbranded:hover .cm-link .added-to-wishlist:before {
	    background-position: -141px -541px;
	}

	.btn.btn-compare:hover .cm-link .add-to-compare:before,
	.shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded:hover .cm-link .add-to-compare:before {
	    background-position: -141px -669px;
	}

	.btn.btn-compare:hover .cm-link .added-to-compare:before,
	.shopify-payment-button .btn-compare.shopify-payment-button__button--unbranded:hover .cm-link .added-to-compare:before {
	    background-position: -141px -785px;
	}

	.cartableProduct {
	    float: left;
	    position: relative;
	    margin-right: 5px;
	}

	.sca-qv-button {
	    background: #1f2b38 url('../img/icn-sprt.png') no-repeat scroll -130px -252px !important;
	    width: 35px;
	    height: 35px;
	    padding: 8px 18px !important;
	    display: inline-block !important;
	    border-radius: 4px !important;
	    text-align: center;
	    line-height: 35px;
	    font-size: 0 !important;
	    color: #fff;
	    position: relative !important;
	    opacity: 1;
	    filter: alpha(opacity=0);
	    border: none;
	    z-index: 70999 !important;
	    float: left;
	}

	.has-megamenu .menu-sub-category {
	    font-size: 13px;
	}

	.navbar-nav a:hover {
	    color: #ffffff;
	}

	.menuImage {
	    display: block;
	}

	.col-megamenu .menu-sub-category {
	    display: block;
	    text-align: center;
	    background-color: #6c9228;
	    color: #ffffff;
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    padding: 5px;
	}

	.navbar {
	    padding: 0px !important;
	}

	.navbar-nav .nav-item .nav-link {
	    color: #ffffff;
	    font-size: 13px;
	}

	.navbar-expand-lg .navbar-nav .dropdown-menu {
	    background-color: #93d3f9;
	    background: linear-gradient(152deg, #e2dff7, #8bc128ab);
	    animation: HeaderTop 14s linear infinite;
	    background-image: linear-gradient(0deg, #8bc128ab, #e2dff7, #8bc128ab, #e2dff7);
	    background-size: 100% 300%;
	}

	.marques {
	    background-color: #0083d0;
	}