/*============================================================================
  veggie
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both; }

/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*============================================================================
  #General Variables
==============================================================================*/
body {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 22px;
  float: left;
  width: 100%; }

/*================ Typography ================*/
/*============================================================================
  Get font-families from theme settings
==============================================================================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/icons.eot?v=14053513008765925049");
  src: url("//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/icons.eot?v=14053513008765925049#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/icons.woff?v=8929917361725108070") format("woff"), url("//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/icons.ttf?v=13191611773503917968") format("truetype"), url("//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/icons.svg?v=14116292502426134174#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*============================================================================
  Dependency-free breakpoint mixin
    - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns and a fixed gutter size
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid-items
==============================================================================*/
/* Force clearfix on grids */
.grid, .grid--rev, .grid--full,
.grid-uniform {
  *zoom: 1; }
  .grid:after, .grid--rev:after, .grid--full:after,
  .grid-uniform:after {
    content: "";
    display: table;
    clear: both; }

/* Manual grid-item clearfix */
.grid-item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  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, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 0; }

.grid-item {
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.products-grid-view.collections_masonry.shop_masonry {
  float: left;
  width: 100%; }

/*============================================================================
  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; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid-item {
    padding-left: 0;
    padding-right: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*============================================================================
  HELPERS
==============================================================================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

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

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

.two-thirds {
  width: 66.666%; }

/* 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.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* 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.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.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; }

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .mobile--one-whole {
    width: 100%; }

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

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

  .mobile--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .mobile--two-sixths {
    width: 33.333%; }

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

  .mobile--four-sixths {
    width: 66.666%; }

  .mobile--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile--two-twelfths {
    width: 16.666%; }

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

  .mobile--four-twelfths {
    width: 33.333%; }

  .mobile--five-twelfths {
    width: 41.666%; }

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

  .mobile--seven-twelfths {
    width: 58.333%; }

  .mobile--eight-twelfths {
    width: 66.666%; }

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

  .mobile--ten-twelfths {
    width: 83.333%; }

  .mobile--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .mobile--left {
    float: left !important; }

  .mobile--right {
    float: right !important; }

  .grid-uniform .mobile--one-half:nth-child(2n+1),
  .grid-uniform .mobile--one-third:nth-child(3n+1),
  .grid-uniform .mobile--one-quarter:nth-child(4n+1),
  .grid-uniform .mobile--one-fifth:nth-child(5n+1),
  .grid-uniform .mobile--one-sixth:nth-child(6n+1),
  .grid-uniform .mobile--two-sixths:nth-child(3n+1),
  .grid-uniform .mobile--three-sixths:nth-child(2n+1),
  .grid-uniform .mobile--two-eighths:nth-child(4n+1),
  .grid-uniform .mobile--four-eighths:nth-child(2n+1),
  .grid-uniform .mobile--five-tenths:nth-child(2n+1),
  .grid-uniform .mobile--one-twelfth:nth-child(12n+1),
  .grid-uniform .mobile--two-twelfths:nth-child(6n+1),
  .grid-uniform .mobile--three-twelfths:nth-child(4n+1),
  .grid-uniform .mobile--four-twelfths:nth-child(3n+1),
  .grid-uniform .mobile--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 767px) {
  /** Whole */
  .tablet--one-whole {
    width: 100%; }

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

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

  .tablet--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .tablet--two-sixths {
    width: 33.333%; }

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

  .tablet--four-sixths {
    width: 66.666%; }

  .tablet--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .tablet--two-twelfths {
    width: 16.666%; }

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

  .tablet--four-twelfths {
    width: 33.333%; }

  .tablet--five-twelfths {
    width: 41.666%; }

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

  .tablet--seven-twelfths {
    width: 58.333%; }

  .tablet--eight-twelfths {
    width: 66.666%; }

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

  .tablet--ten-twelfths {
    width: 83.333%; }

  .tablet--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .tablet--left {
    float: left !important; }

  .tablet--right {
    float: right !important; }

  .grid-uniform .tablet--one-half:nth-child(2n+1),
  .grid-uniform .tablet--one-third:nth-child(3n+1),
  .grid-uniform .tablet--one-quarter:nth-child(4n+1),
  .grid-uniform .tablet--one-fifth:nth-child(5n+1),
  .grid-uniform .tablet--one-sixth:nth-child(6n+1),
  .grid-uniform .tablet--two-sixths:nth-child(3n+1),
  .grid-uniform .tablet--three-sixths:nth-child(2n+1),
  .grid-uniform .tablet--two-eighths:nth-child(4n+1),
  .grid-uniform .tablet--four-eighths:nth-child(2n+1),
  .grid-uniform .tablet--five-tenths:nth-child(2n+1),
  .grid-uniform .tablet--one-twelfth:nth-child(12n+1),
  .grid-uniform .tablet--two-twelfths:nth-child(6n+1),
  .grid-uniform .tablet--three-twelfths:nth-child(4n+1),
  .grid-uniform .tablet--four-twelfths:nth-child(3n+1),
  .grid-uniform .tablet--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 991px) {
  /** Whole */
  .postlaptop--one-whole {
    width: 100%; }

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

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

  .postlaptop--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .postlaptop--two-sixths {
    width: 33.333%; }

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

  .postlaptop--four-sixths {
    width: 66.666%; }

  .postlaptop--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .postlaptop--two-twelfths {
    width: 16.666%; }

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

  .postlaptop--four-twelfths {
    width: 33.333%; }

  .postlaptop--five-twelfths {
    width: 41.666%; }

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

  .postlaptop--seven-twelfths {
    width: 58.333%; }

  .postlaptop--eight-twelfths {
    width: 66.666%; }

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

  .postlaptop--ten-twelfths {
    width: 83.333%; }

  .postlaptop--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .postlaptop--left {
    float: left !important; }

  .postlaptop--right {
    float: right !important; }

  .grid-uniform .postlaptop--one-half:nth-child(2n+1),
  .grid-uniform .postlaptop--one-third:nth-child(3n+1),
  .grid-uniform .postlaptop--one-quarter:nth-child(4n+1),
  .grid-uniform .postlaptop--one-fifth:nth-child(5n+1),
  .grid-uniform .postlaptop--one-sixth:nth-child(6n+1),
  .grid-uniform .postlaptop--two-sixths:nth-child(3n+1),
  .grid-uniform .postlaptop--three-sixths:nth-child(2n+1),
  .grid-uniform .postlaptop--two-eighths:nth-child(4n+1),
  .grid-uniform .postlaptop--four-eighths:nth-child(2n+1),
  .grid-uniform .postlaptop--five-tenths:nth-child(2n+1),
  .grid-uniform .postlaptop--one-twelfth:nth-child(12n+1),
  .grid-uniform .postlaptop--two-twelfths:nth-child(6n+1),
  .grid-uniform .postlaptop--three-twelfths:nth-child(4n+1),
  .grid-uniform .postlaptop--four-twelfths:nth-child(3n+1),
  .grid-uniform .postlaptop--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 481px) and (max-width: 1024px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

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

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

  .medium--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .medium--two-sixths {
    width: 33.333%; }

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

  .medium--four-sixths {
    width: 66.666%; }

  .medium--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium--two-twelfths {
    width: 16.666%; }

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

  .medium--four-twelfths {
    width: 33.333%; }

  .medium--five-twelfths {
    width: 41.666%; }

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

  .medium--seven-twelfths {
    width: 58.333%; }

  .medium--eight-twelfths {
    width: 66.666%; }

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

  .medium--ten-twelfths {
    width: 83.333%; }

  .medium--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .medium--left {
    float: left !important; }

  .medium--right {
    float: right !important; }

  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 1024px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }

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

  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }

  .medium-down--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }

  .medium-down--two-sixths {
    width: 33.333%; }

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

  .medium-down--four-sixths {
    width: 66.666%; }

  .medium-down--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }

  .medium-down--two-twelfths {
    width: 16.666%; }

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

  .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--five-twelfths {
    width: 41.666%; }

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

  .medium-down--seven-twelfths {
    width: 58.333%; }

  .medium-down--eight-twelfths {
    width: 66.666%; }

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

  .medium-down--ten-twelfths {
    width: 83.333%; }

  .medium-down--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .medium-down--left {
    float: left !important; }

  .medium-down--right {
    float: right !important; }

  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1200px) {
  /** Whole */
  .desktop--one-whole {
    width: 100%; }

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

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

  .desktop--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .desktop--two-sixths {
    width: 33.333%; }

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

  .desktop--four-sixths {
    width: 66.666%; }

  .desktop--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .desktop--two-twelfths {
    width: 16.666%; }

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

  .desktop--four-twelfths {
    width: 33.333%; }

  .desktop--five-twelfths {
    width: 41.666%; }

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

  .desktop--seven-twelfths {
    width: 58.333%; }

  .desktop--eight-twelfths {
    width: 66.666%; }

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

  .desktop--ten-twelfths {
    width: 83.333%; }

  .desktop--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .desktop--left {
    float: left !important; }

  .desktop--right {
    float: right !important; }

  .grid-uniform .desktop--one-half:nth-child(2n+1),
  .grid-uniform .desktop--one-third:nth-child(3n+1),
  .grid-uniform .desktop--one-quarter:nth-child(4n+1),
  .grid-uniform .desktop--one-fifth:nth-child(5n+1),
  .grid-uniform .desktop--one-sixth:nth-child(6n+1),
  .grid-uniform .desktop--two-sixths:nth-child(3n+1),
  .grid-uniform .desktop--three-sixths:nth-child(2n+1),
  .grid-uniform .desktop--two-eighths:nth-child(4n+1),
  .grid-uniform .desktop--four-eighths:nth-child(2n+1),
  .grid-uniform .desktop--five-tenths:nth-child(2n+1),
  .grid-uniform .desktop--one-twelfth:nth-child(12n+1),
  .grid-uniform .desktop--two-twelfths:nth-child(6n+1),
  .grid-uniform .desktop--three-twelfths:nth-child(4n+1),
  .grid-uniform .desktop--four-twelfths:nth-child(3n+1),
  .grid-uniform .desktop--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 1200px) {
  /** Whole */
  .desktopsmall--one-whole {
    width: 100%; }

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

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

  .desktopsmall--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .desktopsmall--two-sixths {
    width: 33.333%; }

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

  .desktopsmall--four-sixths {
    width: 66.666%; }

  .desktopsmall--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .desktopsmall--two-twelfths {
    width: 16.666%; }

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

  .desktopsmall--four-twelfths {
    width: 33.333%; }

  .desktopsmall--five-twelfths {
    width: 41.666%; }

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

  .desktopsmall--seven-twelfths {
    width: 58.333%; }

  .desktopsmall--eight-twelfths {
    width: 66.666%; }

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

  .desktopsmall--ten-twelfths {
    width: 83.333%; }

  .desktopsmall--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .desktopsmall--left {
    float: left !important; }

  .desktopsmall--right {
    float: right !important; }

  .grid-uniform .desktopsmall--one-half:nth-child(2n+1),
  .grid-uniform .desktopsmall--one-third:nth-child(3n+1),
  .grid-uniform .desktopsmall--one-quarter:nth-child(4n+1),
  .grid-uniform .desktopsmall--one-fifth:nth-child(5n+1),
  .grid-uniform .desktopsmall--one-sixth:nth-child(6n+1),
  .grid-uniform .desktopsmall--two-sixths:nth-child(3n+1),
  .grid-uniform .desktopsmall--three-sixths:nth-child(2n+1),
  .grid-uniform .desktopsmall--two-eighths:nth-child(4n+1),
  .grid-uniform .desktopsmall--four-eighths:nth-child(2n+1),
  .grid-uniform .desktopsmall--five-tenths:nth-child(2n+1),
  .grid-uniform .desktopsmall--one-twelfth:nth-child(12n+1),
  .grid-uniform .desktopsmall--two-twelfths:nth-child(6n+1),
  .grid-uniform .desktopsmall--three-twelfths:nth-child(4n+1),
  .grid-uniform .desktopsmall--four-twelfths:nth-child(3n+1),
  .grid-uniform .desktopsmall--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1025px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

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

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

  .large--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .large--two-sixths {
    width: 33.333%; }

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

  .large--four-sixths {
    width: 66.666%; }

  .large--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--two-twelfths {
    width: 16.666%; }

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

  .large--four-twelfths {
    width: 33.333%; }

  .large--five-twelfths {
    width: 41.666%; }

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

  .large--seven-twelfths {
    width: 58.333%; }

  .large--eight-twelfths {
    width: 66.666%; }

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

  .large--ten-twelfths {
    width: 83.333%; }

  .large--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .large--left {
    float: left !important; }

  .large--right {
    float: right !important; }

  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 1199px) {
  /** Whole */
  .laptop--one-whole {
    width: 100%; }

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

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

  .laptop--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .laptop--two-sixths {
    width: 33.333%; }

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

  .laptop--four-sixths {
    width: 66.666%; }

  .laptop--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .laptop--two-twelfths {
    width: 16.666%; }

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

  .laptop--four-twelfths {
    width: 33.333%; }

  .laptop--five-twelfths {
    width: 41.666%; }

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

  .laptop--seven-twelfths {
    width: 58.333%; }

  .laptop--eight-twelfths {
    width: 66.666%; }

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

  .laptop--ten-twelfths {
    width: 83.333%; }

  .laptop--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .laptop--left {
    float: left !important; }

  .laptop--right {
    float: right !important; }

  .grid-uniform .laptop--one-half:nth-child(2n+1),
  .grid-uniform .laptop--one-third:nth-child(3n+1),
  .grid-uniform .laptop--one-quarter:nth-child(4n+1),
  .grid-uniform .laptop--one-fifth:nth-child(5n+1),
  .grid-uniform .laptop--one-sixth:nth-child(6n+1),
  .grid-uniform .laptop--two-sixths:nth-child(3n+1),
  .grid-uniform .laptop--three-sixths:nth-child(2n+1),
  .grid-uniform .laptop--two-eighths:nth-child(4n+1),
  .grid-uniform .laptop--four-eighths:nth-child(2n+1),
  .grid-uniform .laptop--five-tenths:nth-child(2n+1),
  .grid-uniform .laptop--one-twelfth:nth-child(12n+1),
  .grid-uniform .laptop--two-twelfths:nth-child(6n+1),
  .grid-uniform .laptop--three-twelfths:nth-child(4n+1),
  .grid-uniform .laptop--four-twelfths:nth-child(3n+1),
  .grid-uniform .laptop--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 992px) {
  /** Whole */
  .laptopsmall--one-whole {
    width: 100%; }

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

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

  .laptopsmall--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .laptopsmall--two-sixths {
    width: 33.333%; }

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

  .laptopsmall--four-sixths {
    width: 66.666%; }

  .laptopsmall--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .laptopsmall--two-twelfths {
    width: 16.666%; }

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

  .laptopsmall--four-twelfths {
    width: 33.333%; }

  .laptopsmall--five-twelfths {
    width: 41.666%; }

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

  .laptopsmall--seven-twelfths {
    width: 58.333%; }

  .laptopsmall--eight-twelfths {
    width: 66.666%; }

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

  .laptopsmall--ten-twelfths {
    width: 83.333%; }

  .laptopsmall--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .laptopsmall--left {
    float: left !important; }

  .laptopsmall--right {
    float: right !important; }

  .grid-uniform .laptopsmall--one-half:nth-child(2n+1),
  .grid-uniform .laptopsmall--one-third:nth-child(3n+1),
  .grid-uniform .laptopsmall--one-quarter:nth-child(4n+1),
  .grid-uniform .laptopsmall--one-fifth:nth-child(5n+1),
  .grid-uniform .laptopsmall--one-sixth:nth-child(6n+1),
  .grid-uniform .laptopsmall--two-sixths:nth-child(3n+1),
  .grid-uniform .laptopsmall--three-sixths:nth-child(2n+1),
  .grid-uniform .laptopsmall--two-eighths:nth-child(4n+1),
  .grid-uniform .laptopsmall--four-eighths:nth-child(2n+1),
  .grid-uniform .laptopsmall--five-tenths:nth-child(2n+1),
  .grid-uniform .laptopsmall--one-twelfth:nth-child(12n+1),
  .grid-uniform .laptopsmall--two-twelfths:nth-child(6n+1),
  .grid-uniform .laptopsmall--three-twelfths:nth-child(4n+1),
  .grid-uniform .laptopsmall--four-twelfths:nth-child(3n+1),
  .grid-uniform .laptopsmall--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 768px) {
  /** Whole */
  .prelaptop--one-whole {
    width: 100%; }

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

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

  .prelaptop--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .prelaptop--two-sixths {
    width: 33.333%; }

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

  .prelaptop--four-sixths {
    width: 66.666%; }

  .prelaptop--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .prelaptop--two-twelfths {
    width: 16.666%; }

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

  .prelaptop--four-twelfths {
    width: 33.333%; }

  .prelaptop--five-twelfths {
    width: 41.666%; }

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

  .prelaptop--seven-twelfths {
    width: 58.333%; }

  .prelaptop--eight-twelfths {
    width: 66.666%; }

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

  .prelaptop--ten-twelfths {
    width: 83.333%; }

  .prelaptop--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .prelaptop--left {
    float: left !important; }

  .prelaptop--right {
    float: right !important; }

  .grid-uniform .prelaptop--one-half:nth-child(2n+1),
  .grid-uniform .prelaptop--one-third:nth-child(3n+1),
  .grid-uniform .prelaptop--one-quarter:nth-child(4n+1),
  .grid-uniform .prelaptop--one-fifth:nth-child(5n+1),
  .grid-uniform .prelaptop--one-sixth:nth-child(6n+1),
  .grid-uniform .prelaptop--two-sixths:nth-child(3n+1),
  .grid-uniform .prelaptop--three-sixths:nth-child(2n+1),
  .grid-uniform .prelaptop--two-eighths:nth-child(4n+1),
  .grid-uniform .prelaptop--four-eighths:nth-child(2n+1),
  .grid-uniform .prelaptop--five-tenths:nth-child(2n+1),
  .grid-uniform .prelaptop--one-twelfth:nth-child(12n+1),
  .grid-uniform .prelaptop--two-twelfths:nth-child(6n+1),
  .grid-uniform .prelaptop--three-twelfths:nth-child(4n+1),
  .grid-uniform .prelaptop--four-twelfths:nth-child(3n+1),
  .grid-uniform .prelaptop--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 481px) {
  /** Whole */
  .pretablet--one-whole {
    width: 100%; }

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

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

  .pretablet--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .pretablet--two-sixths {
    width: 33.333%; }

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

  .pretablet--four-sixths {
    width: 66.666%; }

  .pretablet--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pretablet--two-twelfths {
    width: 16.666%; }

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

  .pretablet--four-twelfths {
    width: 33.333%; }

  .pretablet--five-twelfths {
    width: 41.666%; }

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

  .pretablet--seven-twelfths {
    width: 58.333%; }

  .pretablet--eight-twelfths {
    width: 66.666%; }

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

  .pretablet--ten-twelfths {
    width: 83.333%; }

  .pretablet--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .pretablet--left {
    float: left !important; }

  .pretablet--right {
    float: right !important; }

  .grid-uniform .pretablet--one-half:nth-child(2n+1),
  .grid-uniform .pretablet--one-third:nth-child(3n+1),
  .grid-uniform .pretablet--one-quarter:nth-child(4n+1),
  .grid-uniform .pretablet--one-fifth:nth-child(5n+1),
  .grid-uniform .pretablet--one-sixth:nth-child(6n+1),
  .grid-uniform .pretablet--two-sixths:nth-child(3n+1),
  .grid-uniform .pretablet--three-sixths:nth-child(2n+1),
  .grid-uniform .pretablet--two-eighths:nth-child(4n+1),
  .grid-uniform .pretablet--four-eighths:nth-child(2n+1),
  .grid-uniform .pretablet--five-tenths:nth-child(2n+1),
  .grid-uniform .pretablet--one-twelfth:nth-child(12n+1),
  .grid-uniform .pretablet--two-twelfths:nth-child(6n+1),
  .grid-uniform .pretablet--three-twelfths:nth-child(4n+1),
  .grid-uniform .pretablet--four-twelfths:nth-child(3n+1),
  .grid-uniform .pretablet--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 320px) {
  /** Whole */
  .premobile--one-whole {
    width: 100%; }

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

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

  .premobile--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .premobile--two-sixths {
    width: 33.333%; }

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

  .premobile--four-sixths {
    width: 66.666%; }

  .premobile--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .premobile--two-twelfths {
    width: 16.666%; }

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

  .premobile--four-twelfths {
    width: 33.333%; }

  .premobile--five-twelfths {
    width: 41.666%; }

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

  .premobile--seven-twelfths {
    width: 58.333%; }

  .premobile--eight-twelfths {
    width: 66.666%; }

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

  .premobile--ten-twelfths {
    width: 83.333%; }

  .premobile--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .premobile--left {
    float: left !important; }

  .premobile--right {
    float: right !important; }

  .grid-uniform .premobile--one-half:nth-child(2n+1),
  .grid-uniform .premobile--one-third:nth-child(3n+1),
  .grid-uniform .premobile--one-quarter:nth-child(4n+1),
  .grid-uniform .premobile--one-fifth:nth-child(5n+1),
  .grid-uniform .premobile--one-sixth:nth-child(6n+1),
  .grid-uniform .premobile--two-sixths:nth-child(3n+1),
  .grid-uniform .premobile--three-sixths:nth-child(2n+1),
  .grid-uniform .premobile--two-eighths:nth-child(4n+1),
  .grid-uniform .premobile--four-eighths:nth-child(2n+1),
  .grid-uniform .premobile--five-tenths:nth-child(2n+1),
  .grid-uniform .premobile--one-twelfth:nth-child(12n+1),
  .grid-uniform .premobile--two-twelfths:nth-child(6n+1),
  .grid-uniform .premobile--three-twelfths:nth-child(4n+1),
  .grid-uniform .premobile--four-twelfths:nth-child(3n+1),
  .grid-uniform .premobile--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

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

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

.push--two-thirds {
  left: 66.666%; }

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

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

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

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

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

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

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

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

.push--two-sixths {
  left: 33.333%; }

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

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.push--two-twelfths {
  left: 16.666%; }

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

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

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

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

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

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 481px) and (max-width: 1024px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--medium--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 1024px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }

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

  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }

  .push--medium-down--two-thirds {
    left: 66.666%; }

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

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

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

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

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

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

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

  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }

  .push--medium-down--two-sixths {
    left: 33.333%; }

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

  .push--medium-down--four-sixths {
    left: 66.666%; }

  .push--medium-down--five-sixths {
    left: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }

  .push--medium-down--two-twelfths {
    left: 16.666%; }

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

  .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--five-twelfths {
    left: 41.666%; }

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

  .push--medium-down--seven-twelfths {
    left: 58.333%; }

  .push--medium-down--eight-twelfths {
    left: 66.666%; }

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

  .push--medium-down--ten-twelfths {
    left: 83.333%; }

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1025px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

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

  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }

  .push--large--two-thirds {
    left: 66.666%; }

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

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

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

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

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

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

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

  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }

  .push--large--two-sixths {
    left: 33.333%; }

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

  .push--large--four-sixths {
    left: 66.666%; }

  .push--large--five-sixths {
    left: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }

  .push--large--two-twelfths {
    left: 16.666%; }

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

  .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--five-twelfths {
    left: 41.666%; }

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

  .push--large--seven-twelfths {
    left: 58.333%; }

  .push--large--eight-twelfths {
    left: 66.666%; }

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

  .push--large--ten-twelfths {
    left: 83.333%; }

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Styles
==============================================================================*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #222222; }

.site-nav {
  text-transform: uppercase; }

.nav-secondary {
  text-transform: uppercase; }

.article-pagination,
.product-pagination {
  text-transform: uppercase; }

.tag {
  text-transform: uppercase; }

.blog__name,
.collection-title {
  text-transform: uppercase; }

.blog-post-single .meta,
.blog-post .meta {
  text-transform: uppercase; }

.placeholder-svg, .icon--placeholder {
  display: block;
  fill: rgba(119, 119, 119, 0.35);
  background-color: rgba(119, 119, 119, 0.05);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(119, 119, 119, 0.15); }

.collection-grid .placeholder-svg {
  max-height: 515px;
  max-width: 515px;
  margin: 0 auto; }

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

.input-group.password__input-group {
  border: none;
  border-collapse: separate;
  display: table;
  position: relative;
  float: none;
  margin: 0 auto;
  width: 500px; }

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

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

@media screen and (min-width: 1025px) {
  .flexslider .placeholder-svg {
    height: 402px; } }

.grid-link__image-centered .placeholder-svg {
  height: initial;
  max-height: initial; }

/*================ Module-specific styles ================*/
.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 screen and (max-width: 1024px) {
    .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 screen and (max-width: 1024px) {
    .feature-row__item {
      -webkit-flex: 1 1 auto;
      -moz-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      max-width: 100%; } }

@media screen and (max-width: 1024px) {
  .feature-row__image {
    order: 1; } }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media screen and (max-width: 1024px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media screen and (min-width: 1025px) {
  .feature-row__text--left {
    padding-left: 35px; }

  .feature-row__text--right {
    padding-right: 35px; } }
@media screen and (min-width: 1025px) {
  .featured-row__subtext {
    font-size: 1.14286em; } }
.page-content__item:not(:first-child) {
  margin-top: 30px; }

/*============================================================================
  #Basic Styles
==============================================================================*/
html, body {
  background-color: white;
  padding: 0;
  margin: 0;
  color: #777777; }

html {
  padding: 0 !important; }

body.with_padding .page-wrapper {
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2); }

.main-content {
  display: block;
  margin-top: 30px; }

.page-wrapper .main-content {
  margin: 0; }

.wrapper {
  margin: 0 auto;
  padding: 0 15px;
  *zoom: 1; }
  .wrapper:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 1025px) {
    .site-header .wrapper {
      padding: 0; } }

@media screen and (max-width: 480px) {
  .medium-down--one-half {
    width: 100%; } }
/*============================================================================
  #Helper Classes
==============================================================================*/
.table-contain {
  display: table;
  height: 100%;
  width: 100%; }

.table-contain__inner {
  display: table-cell;
  height: 100%;
  vertical-align: middle; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

input,
textarea,
button,
select {
  font-family: Poppins; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #444444;
  font-family: Poppins;
  line-height: 1.6;
  margin: 0 0 0.5em; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 2.28571em; }

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

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

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

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

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

p {
  margin: 0 0 15px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 80%; }

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.28571em;
  line-height: 1.71429em;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 0; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: "\2014 \0020"; }
  @media screen and (min-width: 1025px) {
    blockquote {
      font-size: 1.71429em;
      line-height: 2.14286em;
      margin-left: -20%;
      width: 140%;
      text-align: center; } }

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #e5e5e5;
  border-width: 1px 0 0;
  margin: 15px 0;
  height: 0;
  float: left;
  width: 100%; }
  hr.hr--clear {
    margin-top: 0;
    border: 0; }

@media screen and (max-width: 480px) {
  hr {
    margin: 10px 0; } }
/*----------------------- common css --------------------*/
.page-wrapper {
  float: left;
  min-height: 100%;
  width: 100%;
  overflow: hidden; }

/*============================================================================
  custom navigation css
==============================================================================*/
.customNavigation {
  float: none;
  display: inline-block;
  position: static;
  text-align: center;
  width: auto;
  margin: 0;
  vertical-align: top; }

.blog_latest_new_home .grid.grid--blog .customNavigation, .blog_latest_new_home .grid--blog.grid--rev .customNavigation, .blog_latest_new_home .grid--blog.grid--full .customNavigation {
  margin: 30px 0 0 0; }

.blog_latest_new_home {
  text-align: center; }

.customNavigation .navigation_wrap {
  float: none;
  text-align: center;
  display: inline-block !important;
  width: auto;
  vertical-align: top; }

.customNavigation a {
  float: left;
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  border: 1px solid #e5e5e5;
  color: #777777;
  position: relative;
  width: 31px;
  height: 31px;
  padding: 0;
  cursor: pointer;
  text-align: center; }

.customNavigation a span {
  font-size: 17px;
  line-height: 30px;
  padding: 0px 5px; }

.customNavigation a.prev {
  margin: 0 4px 0 0;
  padding: 0;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -khtml-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px; }

.customNavigation a.next {
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -khtml-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0; }

.customNavigation a:hover {
  border-color: #f6bb25;
  background-color: #f6bb25;
  color: white; }

.customNavigation a.prev:before {
  border-top: 1px solid #e5e5e5;
  content: "";
  float: left;
  height: 1px;
  left: -61px;
  position: absolute;
  text-align: left;
  top: 10px;
  width: 60px; }

.customNavigation a.prev:after {
  border-bottom: 1px solid #e5e5e5;
  content: "";
  height: 1px;
  left: -41px;
  position: absolute;
  top: 15px;
  width: 40px; }

.customNavigation a.next:before {
  border-top: 1px solid #e5e5e5;
  content: "";
  height: 1px;
  right: -61px;
  position: absolute;
  top: 10px;
  width: 60px; }

.customNavigation a.next:after {
  border-bottom: 1px solid #e5e5e5;
  content: "";
  height: 1px;
  right: -41px;
  position: absolute;
  top: 15px;
  width: 40px; }

#brands_list_slider .owl-nav .owl-prev::before {
  content: "\f04d";
  font-family: "Material Design Icons";
  font-size: 15px;
  line-height: 28px; }

#brands_list_slider .owl-nav .owl-next::before {
  content: "\f054";
  font-family: "Material Design Icons";
  font-size: 15px;
  line-height: 28px; }

.widget_filter {
  float: left; }

.item-row.grid-item {
  padding-left: 0; }

div#shopify-section-sidebar-color input {
  display: none; }

#shopify-section-sidebar-color .widget-content ul > li span.color {
  border: 2px solid #eee;
  float: none;
  display: inline-block;
  vertical-align: top;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  padding: 1px;
  margin-right: 5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#shopify-section-sidebar-color .widget-content ul > li:hover span.color {
  border-color: #bbb; }

.brand_slider .owl-next, .owl-next {
  right: 0;
  position: absolute;
  top: 50%; }

.brand_slider .owl-prev, .brand_slider .owl-next, .owl-prev, .owl-next {
  font-size: 0;
  width: 31px;
  height: 31px;
  border: 1px solid #e5e5e5;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
  text-align: center;
  padding: 0 8px;
  cursor: pointer;
  background: none; }

.brand_slider .owl-prev, .owl-prev, .owl-next {
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -khtml-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px; }

.brand_slider .owl-next, .owl-next {
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -khtml-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0; }

.brand_slider .owl-prev:hover, .brand_slider .owl-next:hover, .owl-prev:hover, .owl-next:hover {
  border-color: #f6bb25;
  background: #f6bb25;
  color: white; }

.owl-prev {
  left: 0; }

.owl-next {
  right: 0; }

.tt-brand_slider .owl-next::after, .testimonials_wrap .owl-next:after {
  width: 100%;
  background-position: -12px -385px;
  height: 100%; }

.tt-brand_slider .owl-prev::after, .testimonials_wrap .owl-prev:after {
  width: 100%;
  background-position: -10px -352px;
  height: 100%; }

.tt-brand_slider .owl-next:hover:after, .testimonials_wrap .owl-next:hover:after {
  background-position: -69px -386px;
  background-color: #000000;
  height: 100%; }

.tt-brand_slider .owl-prev:hover:after, .testimonials_wrap .owl-prev:hover:after {
  background-position: -69px -353px;
  background-color: #000000;
  height: 100%; }

.testimonials_wrap .owl-next:after, .testimonials_wrap .owl-prev:after {
  display: block; }

.product-single__photos {
  cursor: crosshair; }

@media screen and (max-width: 991px) {
  .item-row {
    width: 33.333%; } }
@media screen and (max-width: 767px) {
  .item-row {
    width: 50%; } }
@media screen and (max-width: 480px) {
  .item-row, .TTProduct-Tab .nav-tabs > li {
    width: 80%; }

  .TTProduct-Tab .nav-tabs > li {
    margin-bottom: 5px; } }
/***/
/*------------------related-products -------------*/
.related-products .owl-nav {
  display: none; }

.related-products .grid-item {
  padding: 0; }

.product-grid.related-products {
  margin: 10px 0 0; }

@media screen and (max-width: 991px) {
  .page-wrapper .main-content {
    margin: 0;
    float: left;
    width: 100%;
    display: inline-block;
    overflow: hidden; } }
/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #777777; }
  .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: 1em;
    color: #444444; }
    .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 h3, .rte .h3 {
    font-size: 1.28571em; }
  .rte > div {
    margin-bottom: 15px; }
  .rte ul, .rte ol {
    margin-left: 35px; }
  .rte.text-center ul, .rte.text-center ol, .text-center .rte ul, .text-center .rte ol {
    margin-left: 0;
    list-style-position: inside; }
  .rte ul ul {
    list-style-type: circle; }
  .rte li {
    margin-bottom: 0.4em; }
  .rte img {
    max-width: 100%;
    height: auto; }
  @media screen and (min-width: 1025px) {
    .rte .banner-img {
      width: 120%;
      max-width: 120%;
      margin-left: -10%;
      margin-right: -10%; }
    .rte img:not([style]) {
      display: block;
      margin: 0 auto; } }
  .rte table {
    table-layout: fixed; }

.rte-header {
  margin-bottom: 0; }

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

a:hover,
a:focus {
  color: #f6bb25;
  outline: none !important; }

button {
  overflow: visible; }

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

.btn, .btn--secondary,
input.btn--secondary, input[type="submit"] {
  background-color: #f6bb25;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  font-family: Lato;
  line-height: 1.42;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0;
  padding: 8px 18px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-transform: capitalize;
  border: none;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .btn:hover::after, .btn--secondary:hover::after, input[type="submit"]:hover::after {
    background-color: #f6bb25;
    color: white; }
  .btn:active::after, .btn--secondary:active::after, input[type="submit"]:active::after, .btn:focus::after, .btn--secondary:focus::after, input[type="submit"]:focus::after {
    background-color: #f6bb25;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, input[disabled][type="submit"], .btn.disabled, .disabled.btn--secondary, input.disabled[type="submit"] {
    cursor: default;
    color: white;
    background-color: #f6bb25; }

.btn:hover, .btn--secondary:hover, input[type="submit"]:hover, .btn:focus, .btn--secondary:focus, input[type="submit"]:focus, .btn:active, .btn--secondary:active, input[type="submit"]:active {
  color: white; }

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #f6bb25; }

.btn::after, .btn--secondary::after, input[type="submit"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #f6bb25;
  color: white;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0.5, 1);
  -moz-transform: scale(0.5, 1);
  -ms-transform: scale(0.5, 1);
  -o-transform: scale(0.5, 1);
  transform: scale(0.5, 1); }

.btn:hover::after, .btn--secondary:hover::after, input[type="submit"]:hover::after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

.btn-primary.disabled,
.btn-primary.disabled.active,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled],
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background-color: #f6bb25;
  color: white; }

input.btn:hover, input.btn--secondary:hover, input[type="submit"]:hover, input.btn--secondary:hover, input[type="submit"]:hover {
  background-color: #f6bb25;
  color: white; }

input.spr-button.spr-button-primary:active {
  background: #f6bb25;
  color: white; }

.product-single__addtocart .btn.disabled, .product-single__addtocart .disabled.btn--secondary, .product-single__addtocart input.disabled[type="submit"], .product-single__addtocart .btn[disabled], .product-single__addtocart [disabled].btn--secondary, .product-single__addtocart input[disabled][type="submit"], .comment-form .btn, .comment-form .btn--secondary, .comment-form input[type="submit"], .added-to-cart .btn, .added-to-cart .btn--secondary, .added-to-cart input[type="submit"] {
  background-color: #f6bb25;
  color: white; }

.added-to-cart .btn:hover::after, .added-to-cart .btn--secondary:hover::after, .added-to-cart input[type="submit"]:hover::after,
.added-to-cart .btn:active::after,
.added-to-cart .btn--secondary:active::after,
.added-to-cart input[type="submit"]:active::after,
.added-to-cart .btn:focus::after,
.added-to-cart .btn--secondary:focus::after,
.added-to-cart input[type="submit"]:focus::after {
  background-color: #f6bb25;
  color: white; }

.btn--secondary:hover::after,
input.btn--secondary:hover::after {
  background-color: #f6bb25;
  color: white;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
.btn--secondary:active::after, .btn--secondary:focus::after,
input.btn--secondary:active::after,
input.btn--secondary:focus::after {
  background-color: #f6bb25;
  color: white; }

.btn--small {
  padding: 4px 5px;
  font-size: 0.85714em; }

.btn--large {
  padding: 12px 15px;
  font-size: 1.14286em; }

.btn--full {
  width: 100%;
  white-space: normal; }

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

/* Currency */
/*============================================================================
  #Currency
==============================================================================*/
.tbl-list > li.currency {
  position: relative;
  float: left;
  margin: 0;
  width: 100%; }

.tbl-list > li.currency > .dropdown-toggle .fa {
  margin: 0 0 0 4px; }

.menu-middle-section ul li.currency a {
  padding-right: 0; }

.menu-middle-section ul li.currency .flag-dropdown-menu li a {
  padding: 7px 15px; }

.menu-middle-section ul li.currency:hover .flag-dropdown-menu {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
  display: block;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1); }

.flag-dropdown-menu li a i {
  float: left;
  margin: 0 !important; }

.flag-dropdown-menu li a span {
  float: right;
  color: #777;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  line-height: 14px;
  margin: 0 0 0 8px; }

.flag-dropdown-menu li.active a span {
  color: #000; }

.flag-dropdown-menu li a:hover span {
  color: #000; }

.tbl-list > li.currency .flag-dropdown-menu li a {
  line-height: 1.2;
  padding: 0;
  border: none;
  font-size: 14px !important;
  float: left;
  width: 100%; }
  @media screen and (max-width: 1024px) {
    .tbl-list > li.currency .flag-dropdown-menu li a {
      font-size: 13px !important; } }

@media screen and (max-width: 1024px) {
  .tbl-list > li.currency .flag-dropdown-menu li:last-child a {
    margin-right: 0; } }

.flag-usd {
  background-image: url(//cdn.shopify.com/s/files/1/1454/2846/t/5/assets/currency_1.png?5796274980970116025);
  background-repeat: no-repeat;
  display: inline-block;
  height: 14px;
  width: 16px; }

.flag-eur {
  background-image: url(//cdn.shopify.com/s/files/1/1454/2846/t/5/assets/currency_2.png?5796274980970116025);
  background-repeat: no-repeat;
  display: inline-block;
  height: 14px;
  width: 16px; }

.flag-gbp {
  background-image: url(//cdn.shopify.com/s/files/1/1454/2846/t/5/assets/currency_3.png?5796274980970116025);
  background-repeat: no-repeat;
  display: inline-block;
  height: 14px;
  width: 16px; }

.flag-aud {
  background-image: url(//cdn.shopify.com/s/files/1/1454/2846/t/5/assets/currency_4.png?5796274980970116025);
  background-repeat: no-repeat;
  display: inline-block;
  height: 14px;
  width: 16px; }

.flag-inr {
  background-image: url(//cdn.shopify.com/s/files/1/1454/2846/t/5/assets/currency_5.png?5796274980970116025);
  background-repeat: no-repeat;
  display: inline-block;
  height: 14px;
  width: 16px;
  margin-right: 10px !important; }
  @media screen and (max-width: 480px) {
    .flag-inr {
      margin-right: 5px !important; } }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/2392/4435/t/2/assets/currency_6.png?13466799072974063191);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/2392/4435/t/2/assets/currency_7.png?13466799072974063191);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/2392/4435/t/2/assets/currency_8.png?13466799072974063191);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/2392/4435/t/2/assets/currency_9.png?13466799072974063191);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/2392/4435/t/2/assets/currency_10.png?13466799072974063191);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px;
  margin-right: 10px !important; }
  @media screen and (max-width: 480px) {
    .flag- {
      margin-right: 5px !important; } }

.flag-usd {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_1.png?v=1823919696307517016);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag-eur {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_2.png?v=14244956204538523901);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag-gbp {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_3.png?v=17059659387528752532);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag-aud {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_4.png?v=18353265032290266033);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag-inr {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_5.png?v=3112637171493488905);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px;
  margin-right: 10px !important; }
  @media screen and (max-width: 480px) {
    .flag-inr {
      margin-right: 5px !important; } }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_6.png?139);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_7.png?139);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_8.png?139);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_9.png?139);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag- {
  background-image: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/currency_10.png?139);
  background-repeat: no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px;
  margin-right: 10px !important; }
  @media screen and (max-width: 480px) {
    .flag- {
      margin-right: 5px !important; } }

.header_currency {
  float: left;
  display: inline-block;
  padding: 10px 0 0;
  margin-right: 0;
  width: auto;
  z-index: 4;
  position: relative; }

.header_3 .tbl-list > li.currency .flag-dropdown-menu {
  border-top: 3px solid #f6bb25; }

.header_3 .tbl-list > li.currency .flag-dropdown-menu::after {
  color: #f6bb25;
  content: "\f360";
  font-family: "Material Design Icons";
  font-size: 40px;
  right: auto;
  position: absolute;
  top: -16px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  left: 10px;
  z-index: -1; }

.header_style_3 .tbl-list > li.currency .flag-dropdown-menu li a {
  padding: 5px 12px; }

.currency_code > i {
  display: none; }

.header_currency .currency_wrapper .mdi.mdi-chevron-up {
  display: none; }

.header_currency ul li .currency_wrapper.active .mdi.mdi-chevron-up {
  display: inline-block; }

.header_currency ul li .currency_wrapper .mdi.mdi-chevron-down {
  display: inline-block; }

.header_currency ul li .currency_wrapper.active .mdi.mdi-chevron-down {
  display: none; }

.customer_account .tbl-list > li.currency .flag-dropdown-menu > li {
  display: inline-block;
  margin-bottom: 0;
  padding: 3px;
  border: 1px solid transparent;
  cursor: pointer; }

.customer_account .tbl-list > li.currency .flag-dropdown-menu > li.active {
  border-color: #e5e5e5;
  margin: 0;
  padding: 3px; }

.customer_account .tbl-list > li.currency .flag-dropdown-menu > li:hover {
  border-color: #e5e5e5; }

.customer_account .tbl-list > li.currency .flag-dropdown-menu {
  position: relative;
  float: left;
  display: inline-block !important;
  border: none;
  width: 100%;
  padding: 0 !important;
  margin: 0; }

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

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: 0.25em; }

ol, ul.square, .rte ul ul ul, ul.disc, .rte ul {
  margin-left: 20px; }

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

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

ol.alpha {
  list-style: lower-alpha outside; }

.inline-list li {
  display: inline-block;
  margin-bottom: 0; }

/*============================================================================
  #Tables
==============================================================================*/
table {
  border: 1px solid #e5e5e5;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }
  table p {
    margin-bottom: 0; }

table.full {
  width: 100%;
  margin-bottom: 1em; }

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid #e5e5e5; }

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

img.auto,
.grid-item img,
.grid-item iframe {
  max-width: 100%; }

.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%; }

.site-nav li .grid-item {
  float: none;
  padding: 0; }

@media screen and (max-width: 991px) {
  .video-wrapper {
    margin: 0; } }
/*---------------- featured video ------------*/
.video-featured #popup_toggle {
  cursor: pointer;
  float: left;
  background: #f5f5f5;
  width: 100%; }

.video-featured #popup_toggle .videoimg {
  position: relative;
  overflow: hidden;
  text-align: center; }

.video-featured #popup_toggle .play-icone {
  bottom: 0;
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 50px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }
  @media screen and (max-width: 991px) {
    .video-featured #popup_toggle .play-icone {
      bottom: 20px; } }
  @media screen and (max-width: 767px) {
    .video-featured #popup_toggle .play-icone {
      bottom: 40px; } }
  @media screen and (max-width: 480px) {
    .video-featured #popup_toggle .play-icone {
      height: 35px;
      width: 35px; } }

.video-featured #popup_toggle .play-icone:hover {
  background-color: #f6bb25; }

.video-featured #popup_toggle .play-icone:hover i {
  color: #f6bb25; }

.video-featured #popup_toggle .play-icone i {
  color: #111;
  font-size: 36px;
  line-height: 50px; }
  @media screen and (max-width: 480px) {
    .video-featured #popup_toggle .play-icone i {
      line-height: 35px;
      font-size: 20px; } }

.video-featured .video-subtitle {
  font: 600 22px/30px Poppins, sans-serif;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24%;
  display: inline-block;
  float: none;
  vertical-align: top;
  width: auto;
  top: auto; }
  @media screen and (max-width: 1400px) {
    .video-featured .video-subtitle {
      bottom: 16%; } }
  @media screen and (max-width: 1199px) {
    .video-featured .video-subtitle {
      font-size: 18px;
      line-height: 24px; } }
  @media screen and (max-width: 767px) {
    .video-featured .video-subtitle {
      bottom: 10%; } }
  @media screen and (max-width: 480px) {
    .video-featured .video-subtitle {
      line-height: 18px;
      font-size: 16px;
      bottom: 3%;
      letter-spacing: 1px; } }

.video-featured .video-title {
  font: 700 36px/40px Poppins, sans-serif;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34%;
  display: inline-block;
  float: none;
  vertical-align: top;
  width: auto;
  top: auto; }
  @media screen and (max-width: 1400px) {
    .video-featured .video-title {
      font-size: 30px;
      line-height: 34px;
      bottom: 32%; } }
  @media screen and (max-width: 1199px) {
    .video-featured .video-title {
      font-size: 24px;
      line-height: 28px; } }
  @media screen and (max-width: 767px) {
    .video-featured .video-title {
      bottom: 15%; } }
  @media screen and (max-width: 480px) {
    .video-featured .video-title {
      line-height: 20px;
      font-size: 18px;
      bottom: 28%;
      letter-spacing: 1px; } }

.video-featured .ttvideo-btn {
  float: right;
  position: relative;
  padding: 90px 0 0; }
  @media screen and (max-width: 767px) {
    .video-featured .ttvideo-btn {
      float: left;
      width: 100%;
      padding: 50px 0 0; } }

.video-featured .ttvideo-btn > a {
  display: inline-block;
  float: none;
  font: 400 14px/18px Poppins, sans-serif;
  letter-spacing: 1px;
  padding: 12px 20px;
  position: relative;
  vertical-align: top;
  width: auto;
  text-transform: capitalize; }

.video-featured .ttvideo-btn::after {
  background: #777;
  bottom: auto;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px; }
  @media screen and (max-width: 767px) {
    .video-featured .ttvideo-btn::after {
      height: 40px; } }

.video-featured .ttvideooffer {
  padding: 100px 50px;
  float: left;
  text-align: right; }
  @media screen and (max-width: 1199px) {
    .video-featured .ttvideooffer {
      padding: 75px 30px; } }
  @media screen and (max-width: 1199px) {
    .video-featured .ttvideooffer {
      padding: 35px 30px; } }
  @media screen and (max-width: 767px) {
    .video-featured .ttvideooffer {
      float: left;
      text-align: center;
      width: 100%;
      padding: 30px 0; } }

.video-featured .popup_overlay {
  float: left;
  width: 100%;
  position: fixed;
  left: 0;
  height: 100%;
  text-align: center;
  z-index: 999;
  right: 0;
  display: none;
  top: 0;
  background: rgba(0, 0, 0, 0.9); }

.video-featured .popup_overlay .popup {
  display: inline-block;
  position: relative;
  width: 50%;
  max-width: 100%;
  max-height: 100%;
  padding: 20px;
  background: black;
  color: #fff;
  vertical-align: middle;
  margin: 8% 0;
  z-index: 99999; }
  @media screen and (max-width: 1300px) {
    .video-featured .popup_overlay .popup {
      width: 60%; } }
  @media screen and (max-width: 991px) {
    .video-featured .popup_overlay .popup {
      width: 90%; } }

.video-featured .popup_overlay .popup_close {
  display: block;
  position: absolute;
  top: 5px;
  right: 7px;
  width: 20px;
  height: 20px;
  padding: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  line-height: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer; }

.video-featured #popup_toggle img {
  -webkit-transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -ms-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s; }

.video-featured #popup_toggle:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); }

#popup_toggle .image-hover {
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  width: 100%; }

#popup_toggle:hover .image-hover {
  background: rgba(0, 0, 0, 0.3); }

/*============================================================================
  #Forms
==============================================================================*/
::-webkit-input-placeholder {
  color: #777777;
  opacity: 0.6; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #777777;
  opacity: 0.6; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #777777;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: #777777;
  opacity: 0.6; }

::-ms-input-placeholder {
  /* Edge 12+ */
  color: #777777;
  opacity: 1; }

form {
  margin: 0 0 15px; }

select {
  font-size: 14px; }

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

input,
textarea,
select,
fieldset {
  max-width: 100%; }
  input.input-full,
  textarea.input-full,
  select.input-full,
  fieldset.input-full {
    width: 100%; }

input,
select,
textarea {
  padding: 12px 10px;
  line-height: 1.42; }

input {
  padding: 12px 10px; }

fieldset {
  border: 1px solid #e5e5e5;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

optgroup {
  font-weight: bold; }

input {
  display: inline-block;
  width: auto; }

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

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  color: #777777;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 1em; }
  .input-group input[type="text"], .input-group
  input[type="search"], .input-group
  input[type="password"], .input-group
  input[type="email"], .input-group
  input[type="file"], .input-group
  input[type="number"], .input-group
  input[type="tel"], .input-group
  textarea, .input-group
  select {
    border: 0;
    border-right: 1px solid #e5e5e5; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="file"]:focus,
  input[type="file"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  textarea:focus,
  textarea:active,
  select:focus,
  select:active {
    border: inherit solid #cccccc;
    background-color: #fcfcfc; }
  input[type="text"][disabled], input[type="text"].disabled,
  input[type="search"][disabled],
  input[type="search"].disabled,
  input[type="password"][disabled],
  input[type="password"].disabled,
  input[type="email"][disabled],
  input[type="email"].disabled,
  input[type="file"][disabled],
  input[type="file"].disabled,
  input[type="number"][disabled],
  input[type="number"].disabled,
  input[type="tel"][disabled],
  input[type="tel"].disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6bb25;
    border-color: #f6bb25; }

textarea {
  min-height: 100px; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/ico-select.svg?v=3228225625985246745");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 8px;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    background-image: none;
    padding-right: 10px; }

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

/*================ Form labels ================*/
label,
legend {
  color: #777777;
  display: inline-block;
  margin-bottom: 2px;
  font-family: Poppins;
  font-size: 0.85714em;
  font-weight: bold; }
  label.inline,
  legend.inline {
    display: inline; }

/*================ Accessible labels ====================*/
.visuallyhidden {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

/*================ Off-screen labels with placeholder ================*/
.form-label--hidden {
  display: inline; }
  .ie9 .form-label--hidden .visuallyhidden, .lt-ie9 .form-label--hidden .visuallyhidden {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

/*================ We don't want the same label treatment for checkboxes/radios ================*/
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-weight: normal; }

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

/*================ Horizontal Form ================*/
form.form-horizontal,
.form-horizontal {
  margin-bottom: 0; }
  form.form-horizontal input[type="text"],
  form.form-horizontal input[type="search"],
  form.form-horizontal input[type="password"],
  form.form-horizontal input[type="email"],
  form.form-horizontal input[type="file"],
  form.form-horizontal input[type="number"],
  form.form-horizontal input[type="tel"],
  form.form-horizontal textarea,
  form.form-horizontal select,
  form.form-horizontal label,
  .form-horizontal input[type="text"],
  .form-horizontal input[type="search"],
  .form-horizontal input[type="password"],
  .form-horizontal input[type="email"],
  .form-horizontal input[type="file"],
  .form-horizontal input[type="number"],
  .form-horizontal input[type="tel"],
  .form-horizontal textarea,
  .form-horizontal select,
  .form-horizontal label {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }

/*================ Error styles ================*/
input[type="text"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="file"].error,
input[type="number"].error,
input[type="tel"].error,
textarea.error {
  border-color: #dc0000;
  background-color: #fff6f6;
  color: #dc0000; }

label.error {
  color: #dc0000; }

/*================ Input Group ================*/
.input-group input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin-top: -1px;
  margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary, .input-group input[type="submit"],
.input-group .input-group-field {
  height: 37px; }

.input-group .input-group-field {
  width: 100%;
  margin-bottom: 0; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }
  .input-group-btn .btn, .input-group-btn .btn--secondary, .input-group-btn input[type="submit"] {
    background-color: transparent; }
    .input-group-btn .btn .icon, .input-group-btn .btn--secondary .icon, .input-group-btn input[type="submit"] .icon {
      color: #777777;
      position: relative;
      font-size: 18px;
      line-height: 18px; }

/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block;
    vertical-align: middle; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.supports-fontface li:hover .icon-fallback-text .icon {
  color: #fff;
  cursor: pointer; }

.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*================ Icon mapping ================*/
.icon-apple_pay:before {
  content: "\e904"; }

.icon-amazon_payments:before {
  content: "\e905"; }

.icon-american_express:before {
  content: "\41"; }

.icon-bitcoin:before {
  content: "\42"; }

.icon-cart:before {
  content: "\e600"; }

.icon-chevron-down:before {
  content: "\e606"; }

.icon-chevron-left:before {
  content: "\e605"; }

.icon-chevron-right:before {
  content: "\e602"; }

.icon-chevron-up:before {
  content: "\e608"; }

.icon-cirrus:before {
  content: "\43"; }

.icon-comment:before {
  content: "\e60b"; }

.icon-cross:before {
  content: "\e60d"; }

.icon-dankort:before {
  content: "\64"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-dogecoin:before {
  content: "\e908"; }

.icon-dwolla:before {
  content: "\e900"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-forbrugsforeningen:before {
  content: "\e901"; }

.icon-google_plus:before {
  content: "\e902"; }

.icon-hamburger:before {
  content: "\e601"; }

.icon-instagram:before {
  content: "\e903"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

.icon-litecoin:before {
  content: "\e907"; }

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

.icon-minus:before {
  content: "\e609"; }

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-plus:before {
  content: "\e60a"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\e60f"; }

.icon-snapchat:before {
  content: "\e909"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tag:before {
  content: "\e60c"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-youtube:before {
  content: "\79"; }

.payment-icons {
  cursor: default;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .payment-icons li {
    margin: 0 0 0 8px;
    cursor: default;
    color: #cccccc; }
  .payment-icons li:first-child {
    margin: 0; }
  .payment-icons .icon {
    font-size: 24px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons {
  margin: 0; }

.social-icons li a {
  display: inline-block;
  margin: 0 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.social-icons li {
  vertical-align: middle; }
  .social-icons li:first-child {
    margin: 0; }
  .social-icons li .icon {
    font-size: 14px;
    line-height: 20px; }
  .social-icons li a {
    color: #cccccc; }
    .social-icons li a:hover {
      color: white; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em; }

.pagination-custom > li {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid #e5e5e5;
  text-align: center;
  float: none;
  margin-right: 3px;
  line-height: 36px;
  margin-bottom: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.pagination-wrap {
  float: left;
  width: 100%;
  margin: 0 0 30px; }
  @media screen and (max-width: 480px) {
    .pagination-wrap {
      margin: 0; } }

.pagination-custom {
  display: inline-block;
  margin: 0;
  font-family: Poppins;
  padding-left: 0;
  padding: 10px;
  border: 1px solid #e5e5e5;
  float: left;
  width: 100%;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.pagination-custom li > i.fa {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 34px;
  color: #777777; }

.pagination-custom > li > a,
.pagination-custom > li > span {
  float: left;
  line-height: 25px;
  margin-left: 0px;
  padding: 5px 10px;
  position: relative;
  width: 100%; }

.pagination-custom > li:first-child > a,
.pagination-custom > li:first-child > span {
  margin-left: 0; }

.pagination-custom li:hover, .pagination-custom li a:hover,
.pagination-custom > .active > a,
.pagination-custom > .active > span,
.pagination-custom > .active > a:hover,
.pagination-custom > .active > span:hover,
.pagination-custom > .active > a:focus,
.pagination-custom > .active > span:focus {
  color: white;
  cursor: default;
  z-index: 2; }

.pagination-custom li:hover, .pagination-custom li a:hover {
  cursor: pointer; }

.pagination-custom li.disabled {
  padding: 5px 10px;
  line-height: 25px; }

.pagination-custom li.disabled:hover {
  background: none !important;
  border-color: #e5e5e5;
  color: #777777;
  cursor: unset; }

.pagination-custom > .disabled > span,
.pagination-custom > .disabled > a,
.pagination-custom > .disabled > a:hover,
.pagination-custom > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed; }

.pagination-custom-lg > li > a,
.pagination-custom-lg > li > span {
  font-size: 1.28571em;
  padding: 10px 16px; }

.pagination-custom-sm > li > a,
.pagination-custom-sm > li > span {
  padding: 5px 10px;
  font-family: Poppins;
  font-size: 0.85714em; }

/*============================================================================
  #Site Header
==============================================================================*/
.header-logo a, .header-logo img {
  color: #777777;
  display: inline-block;
  vertical-align: top; }

header.site-header.page-element.header_1 {
  float: left;
  width: 100%;
  position: relative; }
  @media screen and (min-width: 992px) {
    header.site-header.page-element.header_1 {
      min-height: 100px; } }
  @media screen and (min-width: 992px) and (max-width: 1200px) {
    header.site-header.page-element.header_1 {
      top: 30px; } }

.site-header--text-links {
  margin-bottom: 0; }

/*================ Section Headers ================*/
.section-header {
  text-align: center;
  float: left;
  width: 100%; }
  .section-header .form-horizontal {
    display: inline-block;
    vertical-align: middle; }

.collection_template .category_img {
  margin: 0; }

.product-single__title, .section-header .rte .section-header__title {
  margin: 0 0 10px;
  font: 600 18px/24px Lato, sans-serif;
  text-transform: capitalize; }

.section-header .rte.collection-desc-wrap .description {
  margin: 0 0 25px; }

.popup-toggle .sticky_header.fixed {
  z-index: 9 !important; }

/*---------- cart --------*/
.tt-nav-right-div .site-header__cart span.title {
  float: none;
  width: auto;
  text-transform: uppercase;
  font: 500 14px/18px Lato;
  color: #111111;
  display: inline-block;
  vertical-align: top; }
  @media screen and (max-width: 991px) {
    .tt-nav-right-div .site-header__cart span.title {
      display: none; } }

.wrapper-top-cart > .site-header_cart_link {
  float: left;
  width: auto;
  height: auto;
  text-align: left;
  z-index: 1; }
  @media screen and (max-width: 991px) {
    .wrapper-top-cart > .site-header_cart_link {
      height: 100%;
      width: 100%; } }

.wrapper-top-cart > .site-header_cart_link::before {
  position: absolute;
  content: "\f111";
  right: auto;
  left: 0px;
  top: 0;
  bottom: 0;
  height: 40px;
  width: 40px;
  font-size: 26px;
  margin: auto;
  text-align: center;
  line-height: 40px;
  font-family: "Material Design Icons";
  color: #111111;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

.wrapper-top-cart > .site-header_cart_link:hover::before {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  color: #f6bb25; }
  @media screen and (max-width: 991px) {
    .wrapper-top-cart > .site-header_cart_link:hover::before {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; } }

.site-header__cart .site-header_cart_link .mdi-cart {
  display: none; }

.site-header .dropdown-backdrop {
  z-index: 0; }

.site-header__cart .wrapper-top-cart .site-header__cart-count {
  font: 700 14px/24px Lato, sans-serif;
  color: #111111;
  width: auto; }

span.cart-products-count {
  color: #111111;
  margin: 0; }

#slidedown-cart .has-items .actions i, #Sticky-slidedown-cart .has-items .actions i {
  margin-right: 7px;
  font-size: 18px;
  line-height: 20px;
  vertical-align: middle;
  float: left; }
  @media screen and (max-width: 480px) {
    #slidedown-cart .has-items .actions i, #Sticky-slidedown-cart .has-items .actions i {
      margin-right: 3px; } }

@media screen and (max-width: 991px) {
  span.cart-products-text {
    display: none; } }
#slidedown-cart, #Sticky-slidedown-cart {
  line-height: 1.7;
  position: absolute;
  left: auto;
  right: 0;
  text-align: center;
  top: 60px;
  width: 370px;
  z-index: 99;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: none; }
  @media screen and (max-width: 991px) {
    #slidedown-cart, #Sticky-slidedown-cart {
      top: 50px; } }
  @media screen and (max-width: 480px) {
    #slidedown-cart, #Sticky-slidedown-cart {
      width: 290px;
      right: 0; } }

#Sticky-slidedown-cart .mini-cart-wrap,
#slidedown-cart .mini-cart-wrap {
  padding: 15px;
  float: left;
  width: 100%; }
  @media screen and (max-width: 480px) {
    #Sticky-slidedown-cart .mini-cart-wrap,
    #slidedown-cart .mini-cart-wrap {
      padding: 10px; } }

.header_2 .wrapper-wrap.icon_left #slidedown-cart, #Sticky-slidedown-cart {
  right: auto;
  left: 0; }

.header_2 .wrapper-wrap.sticky_header.fixed #slidedown-cart, #Sticky-slidedown-cart {
  right: 0;
  left: auto; }

.header_2 .wrapper-wrap.icon_left .site-header__cart #slidedown-cart::after,
.header_2 .wrapper-wrap.icon_left .site-header__cart #Sticky-slidedown-cart::after {
  left: 0;
  right: auto; }

.header_2 .wrapper-wrap.sticky_header.fixed .site-header__cart #slidedown-cart::after,
.header_2 .wrapper-wrap.sticky_header.fixed .site-header__cart #Sticky-slidedown-cart::after {
  right: 18px;
  left: auto; }

.header_2 .wrapper-wrap.logo_center.sticky_header.fixed .nav-menu-wrap .contact-info {
  display: none; }

.header_2 .wrapper-wrap.sticky_header.fixed .nav-menu-wrap .header-logo {
  float: left;
  position: relative;
  margin: 11px auto; }

.header_2 .wrapper-wrap.sticky_header.fixed .nav-menu-wrap .tt-right-icon {
  float: right;
  width: auto; }

.header_2 .wrapper-wrap.sticky_header.fixed .menu_wrapper {
  width: auto;
  text-align: center;
  float: none;
  display: inline-block;
  vertical-align: top; }

.header_2 .wrapper-wrap.sticky_header.fixed #tt-megamenu ul.tt_menus_ul {
  text-align: center; }

.header_2 .wrapper-wrap.sticky_header.fixed #shopify-section-TT-megamenu {
  background: none; }

.header_2 .sticky_header.fixed #tt-megamenu li.more_menu li.tt_menu_item {
  padding: 0; }

.header_2 .sticky_header.fixed #Sticky-slidedown-cart .mini-cart-wrap,
.header_2 .sticky_header.fixed #slidedown-cart .mini-cart-wrap,
.header_3 .sticky_header.fixed #Sticky-slidedown-cart .mini-cart-wrap,
.header_3 .sticky_header.fixed #slidedown-cart .mini-cart-wrap {
  overflow: auto;
  max-height: 550px; }

.site-header__cart .mini-cart-wrap.ps-container {
  overflow: hidden;
  max-height: 700px;
  text-align: center; }
  @media screen and (max-width: 991px) {
    .site-header__cart .mini-cart-wrap.ps-container {
      max-height: 320px; } }

#slidedown-cart .ps-container > .ps-scrollbar-x-rail {
  display: none !important; }

.site-header__cart #slidedown-cart .mini-cart-wrap .no-items > p {
  margin: 0;
  float: left;
  width: 100%; }

.site-header__cart #slidedown-cart .mini-cart-wrap .no-items > p > a {
  background-color: white;
  color: #333333;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  padding: 10px 20px; }

.site-header__cart #slidedown-cart .mini-cart-wrap .no-items > p > a:hover {
  background-color: #f6bb25; }

@media screen and (max-width: 991px) {
  .site-header .tt-nav-right-div .site-header__cart-count span.hidden-sm-down {
    display: none; }

  .header_logo_wrap .tt-nav-right-div .site-header__cart .wrapper-top-cart {
    float: left;
    height: 50px;
    width: 50px; }

  .header_logo_wrap .tt-nav-right-div .wrapper-top-cart span.cart-products-count {
    height: 17px;
    width: 17px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    border-radius: 50%;
    float: left;
    margin: 0;
    text-align: center;
    background: #f6bb25;
    color: #f6bb25;
    position: absolute;
    right: 2px;
    top: 5px;
    line-height: 17px; } }
#slidedown-cart .product-details .cart-collateral {
  float: left;
  font-family: Lato, Helvetica, sans-serif; }

#slidedown-cart .mini-cart-wrap .cart-collateral .price {
  font-size: 14px; }

.logo_right #slidedown-cart, .logo_right #Sticky-slidedown-cart {
  left: 0;
  right: auto; }
  @media screen and (max-width: 991px) {
    .logo_right #slidedown-cart, .logo_right #Sticky-slidedown-cart {
      left: auto;
      right: 0; } }

ul.mini-products-list {
  float: left;
  width: 100%;
  margin-bottom: 5px; }

#slidedown-cart .total, #Sticky-slidedown-cart .total {
  border-top: 4px double #d6d6d6;
  float: left;
  margin-top: 5px;
  padding-top: 10px;
  width: 100%; }

#slidedown-cart .total .label, #Sticky-slidedown-cart .total .label {
  display: inline;
  font-size: 100%;
  font-weight: 600;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  color: #000;
  float: left;
  font-family: Lato, Helvetica, sans-serif; }

#slidedown-cart .has-items .actions, #Sticky-slidedown-cart .has-items .actions {
  float: left;
  width: 100%;
  text-align: left; }

#slidedown-cart .actions .btn, #slidedown-cart .actions .btn--secondary, #slidedown-cart .actions input[type="submit"], #Sticky-slidedown-cart .actions .btn, #Sticky-slidedown-cart .actions .btn--secondary, #Sticky-slidedown-cart .actions input[type="submit"] {
  padding: 15px; }

.cart-close {
  position: absolute;
  left: 10px;
  z-index: 999;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  padding: 0px 5px; }

#slidedown-cart .has-items .actions .btn:hover, #slidedown-cart .has-items .actions .btn--secondary:hover, #slidedown-cart .has-items .actions input[type="submit"]:hover,
#slidedown-cart .has-items .actions .btn:active,
#slidedown-cart .has-items .actions .btn--secondary:active,
#slidedown-cart .has-items .actions input[type="submit"]:active,
#slidedown-cart .has-items .actions .btn:focus,
#slidedown-cart .has-items .actions .btn--secondary:focus,
#slidedown-cart .has-items .actions input[type="submit"]:focus,
#Sticky-slidedown-cart .has-items .actions .btn:hover,
#Sticky-slidedown-cart .has-items .actions .btn--secondary:hover,
#Sticky-slidedown-cart .has-items .actions input[type="submit"]:hover,
#Sticky-slidedown-cart .has-items .actions .btn:active,
#Sticky-slidedown-cart .has-items .actions .btn--secondary:active,
#Sticky-slidedown-cart .has-items .actions input[type="submit"]:active,
#Sticky-slidedown-cart .has-items .actions .btn:focus,
#Sticky-slidedown-cart .has-items .actions .btn--secondary:focus,
#Sticky-slidedown-cart .has-items .actions input[type="submit"]:focus {
  color: white; }

#slidedown-cart .has-items .actions .btn:hover::after, #slidedown-cart .has-items .actions .btn--secondary:hover::after, #slidedown-cart .has-items .actions input[type="submit"]:hover::after,
#slidedown-cart .has-items .actions .btn:active::after,
#slidedown-cart .has-items .actions .btn--secondary:active::after,
#slidedown-cart .has-items .actions input[type="submit"]:active::after,
#slidedown-cart .has-items .actions .btn:focus::after,
#slidedown-cart .has-items .actions .btn--secondary:focus::after,
#slidedown-cart .has-items .actions input[type="submit"]:focus::after,
#Sticky-slidedown-cart .has-items .actions .btn:hover::after,
#Sticky-slidedown-cart .has-items .actions .btn--secondary:hover::after,
#Sticky-slidedown-cart .has-items .actions input[type="submit"]:hover::after,
#Sticky-slidedown-cart .has-items .actions .btn:active::after,
#Sticky-slidedown-cart .has-items .actions .btn--secondary:active::after,
#Sticky-slidedown-cart .has-items .actions input[type="submit"]:active::after,
#Sticky-slidedown-cart .has-items .actions .btn:focus::after,
#Sticky-slidedown-cart .has-items .actions .btn--secondary:focus::after,
#Sticky-slidedown-cart .has-items .actions input[type="submit"]:focus::after {
  background: #f6bb25;
  color: white; }

#slidedown-cart .has-items .actions button.btn.text-cart, #slidedown-cart .has-items .actions button.text-cart.btn--secondary, #Sticky-slidedown-cart .has-items .actions .btn.text-cart, #Sticky-slidedown-cart .has-items .actions .text-cart.btn--secondary, #Sticky-slidedown-cart .has-items .actions input.text-cart[type="submit"] {
  margin-right: 5px; }

#top .wrapper-top-cart > .site-header_cart_link {
  padding: 17px 5px 15px 55px; }

ul.mini-products-list {
  float: left;
  width: 100%;
  margin-bottom: 5px; }

#slidedown-cart .total, #Sticky-slidedown-cart .total {
  border-top: 4px double #d6d6d6;
  float: left;
  margin-top: 5px;
  padding-top: 10px;
  width: 100%; }

#slidedown-cart .total .label, #Sticky-slidedown-cart .total .label {
  display: inline;
  font-size: 100%;
  font-weight: 600;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  color: #000; }

#slidedown-cart .has-items .actions, #Sticky-slidedown-cart .has-items .actions {
  float: left;
  width: 100%;
  text-align: left;
  position: relative; }

#slidedown-cart .has-items .actions .btn, #slidedown-cart .has-items .actions .btn--secondary, #slidedown-cart .has-items .actions input[type="submit"], #Sticky-slidedown-cart .has-items .actions .btn, #Sticky-slidedown-cart .has-items .actions .btn--secondary, #Sticky-slidedown-cart .has-items .actions input[type="submit"] {
  margin-right: 0;
  background: #f6bb25;
  color: white;
  padding: 10px 20px;
  line-height: 20px;
  letter-spacing: 1px; }
  @media screen and (max-width: 480px) {
    #slidedown-cart .has-items .actions .btn, #slidedown-cart .has-items .actions .btn--secondary, #slidedown-cart .has-items .actions input[type="submit"], #Sticky-slidedown-cart .has-items .actions .btn, #Sticky-slidedown-cart .has-items .actions .btn--secondary, #Sticky-slidedown-cart .has-items .actions input[type="submit"] {
      padding: 10px 13px; } }

#slidedown-cart .has-items .actions .btn:hover::after, #slidedown-cart .has-items .actions .btn--secondary:hover::after, #slidedown-cart .has-items .actions input[type="submit"]:hover::after, #Sticky-slidedown-cart .has-items .actions .btn:hover::after, #Sticky-slidedown-cart .has-items .actions .btn--secondary:hover::after, #Sticky-slidedown-cart .has-items .actions input[type="submit"]:hover::after {
  background: #f6bb25;
  color: white; }

#slidedown-cart .has-items .actions, #Sticky-slidedown-cart .has-items .actions {
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: auto; }

#slidedown-cart button.btn.text-cart, #slidedown-cart button.text-cart.btn--secondary, #slidedown-cart button.text-cart.btn--secondary {
  float: left; }

.mini-cart-wrap.ps-container > .ps-scrollbar-x-rail {
  display: none !important; }

#slidedown-cart .product-details, #Sticky-slidedown-cart .product-details {
  padding: 0 15px; }

#slidedown-cart .product-image, #Sticky-slidedown-cart .product-image {
  float: left;
  height: auto;
  width: 80px; }

.site-header__cart .mini-products-list .product-details p.product-name {
  margin: 0 0 5px;
  float: left;
  width: 100%; }

.product-details .cart-collateral span.price {
  font-size: 14px; }

#slidedown-cart .mini-products-list img, #Sticky-slidedown-cart .mini-products-list img {
  border: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

#slidedown-cart .product-details, #Sticky-slidedown-cart .product-details {
  float: left;
  width: 65%;
  text-align: left; }

#slidedown-cart .product-name, #Sticky-slidedown-cart .product-name {
  float: left;
  width: 100%;
  color: #777777;
  margin: 0;
  font: 400 14px/16px Lato, Helvetica, sans-serif; }

#slidedown-cart .has-items .item, #Sticky-slidedown-cart .has-items .item {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  position: relative; }

#slidedown-cart .total .label, #Sticky-slidedown-cart .total .label {
  display: inline;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  color: #000;
  text-transform: capitalize; }

#slidedown-cart .total .price .money {
  font-size: 16px;
  font-weight: 600; }

#slidedown-cart .total .price, #Sticky-slidedown-cart .total .price {
  font-size: 16px;
  font-weight: 600;
  float: right; }

#slidedown-cart .price .money, #Sticky-slidedown-cart .price .money {
  font-size: 14px; }

.cart__remove {
  color: #ff0000; }

#slidedown-cart .btn-remove, #Sticky-slidedown-cart .btn-remove {
  float: right;
  color: #000;
  width: 20px;
  text-align: center;
  height: 20px;
  line-height: 16px;
  position: absolute;
  right: 0px;
  font-size: 16px;
  padding: 2px;
  text-align: center; }

.cart__remove:hover, #slidedown-cart .btn-remove:hover, #Sticky-slidedown-cart .btn-remove:hover {
  background: #000;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.cart__remove {
  height: 20px;
  width: 20px;
  float: none;
  display: inline-block;
  vertical-align: top; }

.cart__remove:hover a i {
  color: #fff; }

#slidedown-cart .total, #Sticky-slidedown-cart .total {
  border-top: 4px double #d6d6d6;
  float: left;
  margin-top: 5px;
  padding-top: 10px;
  width: 100%; }

.tab-inner > ul#jquery-tab-pager-navi {
  display: none; }

.header-top-right, .header-top-left {
  float: left; }

.header-top-right {
  float: right; }

/*------------- search -------------*/
.site-header__search .serach_icon {
  cursor: pointer;
  float: right;
  font-size: 0;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

.site-header__search .serach_icon > i {
  height: 100%;
  width: 100%;
  float: left;
  font-size: 26px;
  line-height: 40px;
  color: #111111;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

.site-header__search .serach_icon:hover {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.site-header__search:hover .serach_icon > i,
.site-header__search .serach_icon.active > i {
  color: #f6bb25;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.site-header__search.icon_btn .search_wrapper, .site-header__search.icon-btn .search_wrapper {
  background: #ffffff none repeat scroll 0 0;
  position: absolute;
  right: 0;
  top: 60px;
  width: 320px;
  display: none;
  z-index: 99;
  border: 1px solid #e5e5e5;
  border-top: 3px solid #f6bb25;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 991px) {
    .site-header__search.icon_btn .search_wrapper, .site-header__search.icon-btn .search_wrapper {
      top: 45px; } }
  @media screen and (max-width: 767px) {
    .site-header__search.icon_btn .search_wrapper, .site-header__search.icon-btn .search_wrapper {
      width: 286px; } }
  @media screen and (max-width: 480px) {
    .site-header__search.icon_btn .search_wrapper, .site-header__search.icon-btn .search_wrapper {
      width: 290px;
      left: -160px;
      right: auto; } }

.header_1_wrapper.left_logo .site-header__search.icon_btn .search_wrapper,
.header_1_wrapper.left_logo .site-header__search.icon-btn .search_wrapper
.header_1_wrapper.center_logo .site-header__search.icon-btn .search_wrapper,
.header_1_wrapper.center_logo .site-header__search.icon-btn .search_wrapper {
  left: auto;
  right: 0; }

.header_2 .wrapper-wrap.sticky_header.fixed .site-header__search.icon-btn .search_wrapper {
  left: auto !important;
  right: 0; }

.header_1_wrapper.right_logo .site-header__search.icon-btn .search_wrapper,
.header_1_wrapper.right_menu .site-header__search.icon-btn .search_wrapper,
.header_2 .wrapper-wrap.icon_left .site-header__search.icon-btn .search_wrapper {
  left: 0;
  right: auto; }

#shopify-section-header-model-2 .logo_right .site-header__search.icon-btn .search_wrapper, #shopify-section-header-model-2 .logo_right .myaccount .customer_account {
  left: 0; }
  @media screen and (max-width: 991px) {
    #shopify-section-header-model-2 .logo_right .site-header__search.icon-btn .search_wrapper, #shopify-section-header-model-2 .logo_right .myaccount .customer_account {
      right: 0;
      left: auto; } }
  @media screen and (max-width: 480px) {
    #shopify-section-header-model-2 .logo_right .site-header__search.icon-btn .search_wrapper, #shopify-section-header-model-2 .logo_right .myaccount .customer_account {
      left: -140px; } }

#shopify-section-header-model-2 .wrapper-wrap.sticky_header.fixed .myaccount .customer_account {
  left: auto;
  right: 0; }

.site-header__search.icon_btn .search_wrapper::before, .site-header__search.icon-btn .search_wrapper::before {
  color: #f6bb25;
  content: "\f360";
  font-family: "Material Design Icons";
  font-size: 40px;
  right: 18px;
  position: absolute;
  top: -16px;
  height: 20px;
  width: 20px;
  line-height: 20px; }
  @media screen and (max-width: 480px) {
    .site-header__search.icon_btn .search_wrapper::before, .site-header__search.icon-btn .search_wrapper::before {
      right: 38%; } }

.header_2 .wrapper-wrap.logo_right .site-header__search.icon_btn .search_wrapper::before,
.header_2 .wrapper-wrap.logo_right .site-header__search.icon-btn .search_wrapper::before,
.header_2 .wrapper-wrap.icon_left .site-header__search.icon_btn .search_wrapper::before,
.header_2 .wrapper-wrap.icon_left .site-header__search.icon_btn .search_wrapper::before {
  right: auto;
  left: 0; }

.header_1_wrapper.left_logo .site-header__search.icon_btn .search_wrapper::before,
.header_1_wrapper.left_logo .site-header__search.icon-btn .search_wrapper::before,
.header_1_wrapper.center_logo .site-header__search.icon_btn .search_wrapper::before,
.header_1_wrapper.center_logo .site-header__search.icon-btn .search_wrapper::before,
.header_2 .wrapper-wrap.sticky_header.fixed .site-header__search.icon-btn .search_wrapper::before {
  right: 18px;
  left: auto; }
  @media screen and (max-width: 480px) {
    .header_1_wrapper.left_logo .site-header__search.icon_btn .search_wrapper::before,
    .header_1_wrapper.left_logo .site-header__search.icon-btn .search_wrapper::before,
    .header_1_wrapper.center_logo .site-header__search.icon_btn .search_wrapper::before,
    .header_1_wrapper.center_logo .site-header__search.icon-btn .search_wrapper::before,
    .header_2 .wrapper-wrap.sticky_header.fixed .site-header__search.icon-btn .search_wrapper::before {
      right: 110px; } }

.header_1_wrapper.right_logo .site-header__search.icon_btn .search_wrapper::before,
.header_1_wrapper.right_logo .site-header__search.icon-btn .search_wrapper::before {
  left: 0;
  right: auto; }

.header_1_wrapper.right_logo .site-header__search.icon_btn .search_wrapper::before,
.header_1_wrapper.right_menu .site-header__search.icon-btn .search_wrapper::before {
  right: auto;
  left: 0; }

.site-header__search .search_wrapper form.input-group.search-bar {
  border: none;
  margin: 0; }

.search_wrapper .input-group input[type="search"] {
  border: none;
  padding: 5px 10px;
  background: none;
  letter-spacing: 1px;
  height: 40px; }

.search_toggle.active i.mdi.mdi-magnify {
  display: none; }

.search_toggle i.mdi.mdi-window-close {
  display: none; }

.search_toggle.active i.mdi.mdi-window-close {
  display: block; }

.search-full-screen .full-search-wrapper.search-overlap {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  height: 100%;
  z-index: 370; }

body.search_full_active {
  position: fixed; }

.search-full-screen .full-search-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 0;
  background: #f5f5f5 none repeat scroll 0 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }

.full-search-wrapper .close-search a {
  float: right;
  width: auto; }

.full-search-wrapper .close-search i {
  font-size: 18px;
  margin: 20px 0;
  padding-right: 20px; }

.search-full-screen .full-search-wrapper.search-overlap .search-inner {
  display: block; }

.search-inner .search-bar {
  float: left;
  border: none; }

.search-inner input[type="search"] {
  border: none;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #111111;
  font-family: Poppins;
  font-size: 24px;
  height: 50px;
  padding: 0 15px;
  width: 100%;
  float: left;
  border-bottom: 1px solid #000;
  font-weight: 400;
  line-height: 50px;
  cursor: text; }
  @media screen and (max-width: 480px) {
    .search-inner input[type="search"] {
      padding: 0 10px;
      font-size: 18px; } }

.site-header button.btn.search-submit.icon-fallback-text, .site-header button.search-submit.icon-fallback-text.btn--secondary, .site-header button.search-submit.icon-fallback-text.btn--secondary {
  line-height: 15px !important;
  background: #fff; }

.site-header button.btn.search-submit.icon-fallback-text, .site-header button.search-submit.icon-fallback-text.btn--secondary {
  height: 40px; }

.search_wrapper .search-bar .btn:hover .icon-search, .search_wrapper .search-bar .btn--secondary:hover .icon-search, .search_wrapper .search-bar input[type="submit"]:hover .icon-search {
  color: #000; }

.full-search-wrapper .search-inner .search-bar {
  width: 100%; }

.full-search-wrapper .search-inner span.icon.icon-search {
  top: -5px;
  font-size: 26px; }

span.close-search {
  margin: 20px 0;
  float: right; }

.header-top-right .icon-btn.site-header__search {
  position: initial; }

.search-full-screen .full-search-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 0;
  background: #f5f5f5 none repeat scroll 0 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }

.search-inner {
  padding: 50px 0px;
  display: none;
  overflow: auto;
  height: 100%;
  float: left;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .search-inner {
      padding: 50px 20px; } }
  @media screen and (max-width: 480px) {
    .search-inner {
      padding: 30px 5px; } }

span.close-search {
  margin: 20px 0;
  float: right;
  cursor: pointer; }

.full-search-wrapper .close-search a {
  float: right;
  width: auto; }

.full-search-wrapper .close-search i {
  font-size: 18px;
  margin: 20px 0;
  padding-right: 20px; }

.search-inner .search-bar {
  float: left;
  border: none;
  max-width: 100%;
  margin: 0; }
  @media screen and (max-width: 1024px) {
    .search-inner .search-bar {
      margin: 0 auto; } }

.full-search-wrapper .search-inner .search-submit {
  font-size: 25px;
  margin-left: -50px;
  color: #777777; }

.site-header button.btn.search-submit.icon-fallback-text, .site-header button.search-submit.icon-fallback-text.btn--secondary, .site-header button.search-submit.icon-fallback-text.btn--secondary {
  line-height: 15px !important; }

.site-header button.btn.search-submit.icon-fallback-text::after, .site-header button.search-submit.icon-fallback-text.btn--secondary::after, .site-header button.search-submit.icon-fallback-text.btn--secondary::after {
  display: none; }

.template-search .container .input-group.search-bar .search-submit-wrap .btn.search-submit.icon-fallback-text::after, .template-search .container .input-group.search-bar .search-submit-wrap .search-submit.icon-fallback-text.btn--secondary::after, .template-search .container .input-group.search-bar .search-submit-wrap input.search-submit.icon-fallback-text[type="submit"]::after {
  display: none; }

.full-search-wrapper .search-inner span.icon.icon-search {
  top: -5px;
  font-size: 26px; }

.full-search-wrapper .search-results, .full-search-wrapper .search-results .thumbnail, .full-search-wrapper .search-results .title, .full-search-wrapper .search-results .price {
  width: 100%;
  padding: 0;
  text-align: center;
  color: #222;
  font-family: Lato; }

.full-search-wrapper .search-results .name-price .price-wrap {
  padding: 0;
  width: 100%;
  text-align: center; }

.search-results .name-price .title {
  font-family: Lato;
  text-align: left; }

.search-results .name-price .price {
  color: #111111; }

.fullscreen_wrapper .nav-menu-wrap {
  float: left;
  width: 100%; }

.search-inner input[type="search"] {
  border: none;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #111111;
  font-family: Poppins;
  font-size: 24px;
  height: 50px;
  padding: 0 15px;
  width: 100%;
  float: left;
  border-bottom: 1px solid #000;
  font-weight: 400;
  line-height: 50px;
  cursor: text; }
  @media screen and (max-width: 480px) {
    .search-inner input[type="search"] {
      padding: 0 10px;
      font-size: 18px; } }

@media screen and (max-width: 991px) {
  .full-search-wrapper .search-results li:nth-child(4n+1) {
    clear: both; } }
/*------------ myaccount ----------------*/
.wrapper .header-icon .myaccount.icon-btn {
  position: relative; }

.myaccount .dropdown-toggle {
  float: left;
  width: 100%; }

.myaccount.icon-btn .dropdown-toggle > i {
  font-size: 30px;
  line-height: 40px;
  cursor: pointer;
  color: #111111;
  float: left;
  height: 100%;
  width: 100%;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

.myaccount.icon-btn .dropdown-toggle:hover > i {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.myaccount.icon-btn.open .dropdown-toggle:hover > i {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.myaccount .dropdown-toggle:hover > i, .myaccount.open .dropdown-toggle > i {
  color: #f6bb25; }

.myaccount .customer_account {
  width: 180px;
  position: absolute;
  right: 0;
  left: auto;
  top: 60px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 3px solid #f6bb25;
  padding: 15px;
  display: none;
  z-index: 1;
  text-align: left;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 991px) {
    .myaccount .customer_account {
      top: 45px; } }

.header_1_wrapper.left_logo .myaccount .customer_account, .header_1_wrapper.center_logo .myaccount .customer_account {
  right: 0;
  left: auto; }

.header_1_wrapper.right_logo .myaccount .customer_account,
.header_1_wrapper.right_menu .myaccount .customer_account,
.header_2 .wrapper-wrap.icon_left .myaccount .customer_account {
  right: auto;
  left: 0; }

.myaccount .customer_account::before {
  color: #f6bb25;
  content: "\f360";
  font-family: "Material Design Icons";
  font-size: 40px;
  right: 18px;
  position: absolute;
  top: -16px;
  height: 20px;
  width: 20px;
  line-height: 20px; }

.header_1_wrapper.left_logo .myaccount .customer_account::before,
.header_1_wrapper.center_logo .myaccount .customer_account::before,
.header_2 .wrapper-wrap.sticky_header.fixed .myaccount .customer_account::before {
  right: 20px;
  left: auto; }

.header_1_wrapper.right_logo .myaccount .customer_account::before,
.header_1_wrapper.right_menu .myaccount .customer_account::before,
.header_2 .wrapper-wrap.icon_left .myaccount .customer_account::before {
  right: auto;
  left: 0; }

.logo_right .myaccount .customer_account {
  left: 0;
  right: auto; }
  @media screen and (max-width: 991px) {
    .logo_right .myaccount .customer_account {
      left: auto;
      right: 0; } }

.myaccount .customer_account ul {
  margin: 0; }

.customer_account .header_currency {
  margin: 0;
  padding: 10px 0 0; }

.myaccount .customer_account span.username {
  padding: 0 0 0 5px; }

/*-------- wishlist --------*/
.wishlist-icon-div a > i {
  cursor: pointer;
  float: right;
  font-size: 26px;
  height: 100%;
  line-height: 50px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  color: #111111;
  display: none; }

.wishlist-icon-div a > i:hover {
  color: #f6bb25; }

.myaccount .customer_account .wishlist-icon-div.icon-btn {
  float: left;
  width: 100% !important;
  height: 100% !important;
  text-align: left; }

/*----------- topmenu ------------*/
.icons_wrap_div.menu-item-show {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  display: inline-block; }

.icons_wrap_div {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.toggle_left_icon {
  float: none;
  display: inline-block; }

.toggle_left_icon {
  float: left;
  display: inline-block;
  width: auto;
  line-height: 2.5; }

span.mobile-nav__sublist-contract, .mobile-nav__sublist-trigger.is-active .mobile-nav__sublist-expand {
  display: none; }

@media screen and (max-width: 991px) {
  .menu_toggle_wrap {
    float: left;
    width: 100%;
    position: relative; }

  .leftmenu {
    display: none; }

  .nav_dropdown-toggle.btn, .nav_dropdown-toggle.btn--secondary, input.nav_dropdown-toggle[type="submit"] {
    width: 30px; }

  span.mobile-nav__sublist-trigger {
    position: absolute;
    right: 15px;
    top: 0;
    width: 30px;
    height: 100%;
    text-align: center;
    cursor: pointer;
    line-height: 32px;
    font-size: 18px;
    z-index: 1; }

  .mobile-nav__sublist-trigger.is-active .mobile-nav__sublist-contract {
    display: block; }

  .nav-menu-wrap .nav-toggle {
    float: left;
    width: 100%;
    text-align: left; }

  .nav-menu-wrap .nav-toggle, .site-nav--has-dropdown .site-nav__dropdown-toggle, .nav_dropdown-toggle.btn, .nav_dropdown-toggle.btn--secondary, input.nav_dropdown-toggle[type="submit"], .nav_dropdown-toggle.btn--secondary, input.nav_dropdown-toggle[type="submit"], .mobile-nav__sublist-trigger {
    display: block !important; }

  .nav-menu-wrap .header-top-right {
    position: absolute;
    right: 0; }

  .nav-menu-wrap .menu_toggle_wrap > button, .header_3 .menu_toggle_wrap > button {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    border: none;
    width: auto;
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: auto;
    top: auto;
    color: #111111; }

  .header_2 .menu_toggle_wrap > button {
    position: static;
    padding: 7px 0; }

  .flex-direction-nav .flex-prev::before, .flex-direction-nav .flex-next::before {
    color: #000; } }
.fixed-cart-wrap #slidedown-cart {
  display: block !important;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  top: 0;
  right: 0;
  bottom: 0;
  padding: 60px 0 20px;
  text-align: center; }

.header_1_wrapper.right_logo .fixed-cart-wrap #slidedown-cart, .header_1_wrapper.right_menu .fixed-cart-wrap #slidedown-cart {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  left: 0;
  right: auto; }

.header_1_wrapper.right_logo .fixed-cart-wrap.active #slidedown-cart, .header_1_wrapper.right_menu .fixed-cart-wrap.active #slidedown-cart {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.fixed-cart-wrap #slidedown-cart .cart-close i.mdi.mdi-close {
  float: left;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 20px;
  text-align: center;
  color: white;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.fixed-cart-wrap #slidedown-cart .cart-close:hover i.mdi.mdi-close {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #f6bb25; }

.fixed-cart-wrap.active #slidedown-cart {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

/*================ mobile menu bar =================*/
.nav-menu-wrap .nav-toggle, .site-nav--has-dropdown .site-nav__dropdown-toggle, .nav_dropdown-toggle.btn, .nav_dropdown-toggle.btn--secondary, input.nav_dropdown-toggle[type="submit"], .nav_dropdown-toggle.btn--secondary, input.nav_dropdown-toggle[type="submit"], .mobile-nav__sublist-trigger {
  display: none; }

/*---------- common header-1, header-2, header-3-------------- */
.icon-btn {
  display: inline-block;
  float: left;
  height: 40px;
  width: 40px;
  z-index: 3;
  text-align: center;
  position: relative; }

.customer_account .header_currency .currency_wrapper.dropdown-toggle, .customer_account .flag-dropdown-menu li a span {
  display: none; }

.search_full_active .myaccount.icon-btn, .search_full_active .wishlist-icon-div .wishlist-icon, .search_full_active .site-header__cart.icon-btn {
  z-index: 0; }

.heade_banner_img {
  float: left;
  padding: 30px 15px;
  width: 100%; }

header.header_3.site-header .sticky_header.fixed {
  -webkit-transition: all 400ms ease 0s;
  -moz-transition: all 400ms ease 0s;
  -ms-transition: all 400ms ease 0s;
  -o-transition: all 400ms ease 0s;
  transition: all 400ms ease 0s;
  animation: fixedmenu 1s ease 0s normal both 1 running;
  -webkit-animation: fixedmenu 1s ease 0s normal both 1 running;
  -moz-animation: fixedmenu 1s ease 0s normal both 1 running;
  -o-animation: fixedmenu 1s ease 0s normal both 1 running;
  position: fixed;
  width: auto;
  left: 0;
  right: 0;
  top: 0;
  -webkit-box-shadow: 0 1px 3px #eeeeee;
  -moz-box-shadow: 0 1px 3px #eeeeee;
  -ms-box-shadow: 0 1px 3px #eeeeee;
  -o-box-shadow: 0 1px 3px #eeeeee;
  box-shadow: 0 1px 3px #eeeeee;
  z-index: 999; }

.template-index .breadcrumb-block {
  display: none; }

.Site-navigation.fixed .tt-nav-right-div .site-header__cart.icon-btn.hide {
  display: block !important; }

.header_1 .logo_left .fixed-cart-wrap #slidedown-cart {
  display: block !important;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  top: 0;
  right: 0;
  bottom: 0;
  padding: 60px 0 20px;
  text-align: left; }

.header_1 .logo_left .fixed-cart-wrap.active #slidedown-cart {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.header_1 .site-header__cart #Sticky-slidedown-cart,
.header_1 .site-header__cart #slidedown-cart {
  display: none !important; }

.header_1 .logo_right .fixed-cart-wrap #slidedown-cart {
  display: block !important;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  top: 0;
  left: 0;
  bottom: 0;
  padding: 60px 0 20px; }

.header_1 .logo_right .fixed-cart-wrap.active #slidedown-cart {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.header_2 .tbl-list > li.currency .flag-dropdown-menu li a {
  padding: 0; }

.header_2 ul.currencies.flag-dropdown-menu > li {
  width: auto; }

.header_1.site-header .fixed-cart-wrap {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  visibility: hidden;
  z-index: 9999; }

.header_1.site-header .fixed-cart-wrap.active {
  visibility: visible; }

.header_1.site-header .fixed-cart-wrap.active:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); }

.header_1 #tt-megamenu ul.tt_menus_ul {
  float: left;
  width: 100%;
  margin: 0; }

.header_1 #tt-megamenu .tt-mega_menu li.tt_menu_item {
  float: left;
  width: auto;
  margin: 0;
  padding: 30px 10px; }
  @media screen and (max-width: 1200px) {
    .header_1 #tt-megamenu .tt-mega_menu li.tt_menu_item {
      padding: 30px 2px; } }
  @media screen and (max-width: 991px) {
    .header_1 #tt-megamenu .tt-mega_menu li.tt_menu_item {
      width: 100%;
      padding: 0;
      position: relative; } }

.header_1 .header_1_wrapper.left_menu #tt-megamenu .tt-mega_menu li.tt_menu_item,
.header_1 .header_1_wrapper.right_menu #tt-megamenu .tt-mega_menu li.tt_menu_item {
  padding: 30px 5px; }

.header_1 #tt-megamenu .tt-mega_menu li.tt_menu_item span.tt_menu_item_heading_title,
.header_2 #tt-megamenu .tt-mega_menu li.tt_menu_item span.tt_menu_item_heading_title {
  margin: 0; }

@media screen and (min-width: 992px) {
  .header_1 #tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
    left: 0;
    top: 100%;
    right: 0;
    margin: auto; } }
.header_1 .header_1_wrapper.right_menu #tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
  left: auto;
  right: 0; }

.header_1 .header_1_wrapper.left_menu #tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
  left: 0;
  right: auto; }

.header_1 .header_1_wrapper.left_menu #tt-megamenu li.more_menu > ul > li .tt_sub_menu_wrap,
.header_3 #tt-megamenu li.more_menu > ul > li .tt_sub_menu_wrap {
  left: 100%;
  right: auto !important; }

.header_1 #tt-megamenu .tt-mega_menu li.more_menu .tt_sub_menu_linklist .tt_menu_item {
  padding: 0;
  float: left;
  width: 100%;
  text-align: left; }

.header_1 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item > ul.tt_sub_menu_linklist {
  min-width: 200px;
  padding: 10px 0; }

.header_1 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item.left.tt_mm_hassub {
  position: relative; }

.header_1 #tt-megamenu li.more_menu li.tt_menu_item {
  width: 100%;
  margin: 0; }

.header_1 #tt-megamenu li.more_menu > ul > li > a {
  padding: 3px 20px;
  float: left;
  width: 100%;
  text-align: left;
  text-transform: capitalize;
  position: relative; }
  @media screen and (max-width: 991px) {
    .header_1 #tt-megamenu li.more_menu > ul > li > a {
      padding: 5px 20px; } }

#tt-megamenu li.more_menu > ul > li:hover > a {
  color: #f6bb25; }

@media screen and (min-width: 992px) {
  .header_1 #tt-megamenu .tt-mega_menu .tt_menus_ul > li:hover > a::before {
    background: #f6bb25;
    color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px; } }
@media screen and (min-width: 992px) {
  .header_1 #tt-megamenu li.more_menu > ul > li .tt_sub_menu_wrap, .header_3 #tt-megamenu li.more_menu > ul > li .tt_sub_menu_wrap {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    right: 100% !important;
    left: auto;
    top: auto !important;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    padding: 10px 15px;
    margin: 0; }

  .header_1 .header_1_wrapper.right_menu #tt-megamenu li.more_menu > ul > li .tt_sub_menu_wrap {
    right: 100% !important;
    left: auto !important; }

  .header_1 #tt-megamenu li.more_menu > ul > li:hover .tt_sub_menu_wrap, .header_3 #tt-megamenu li.more_menu > ul > li:hover .tt_sub_menu_wrap {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1); } }
@media screen and (max-width: 991px) {
  .header_1 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item > a,
  .header_2 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item > a,
  .header_3 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item > a {
    display: none; }

  .header_3 #tt-megamenu .tt-mega_menu li.tt_menu_item {
    position: relative; }

  .header_1 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item ul.tt_sub_menu_linklist, .header_3 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item ul.tt_sub_menu_linklist {
    display: block;
    padding: 0;
    width: 100% !important; } }
.header_2.site-header .logo_left.menu_left .wrapper {
  float: left; }

.header_2.site-header .logo_left.menu_right .wrapper {
  float: right; }

.header_2 #slidedown-cart .product-details, .header_3.cart_slidefixed #slidedown-cart .product-details {
  width: 65%; }
  @media screen and (max-width: 991px) {
    .header_2 #slidedown-cart .product-details, .header_3.cart_slidefixed #slidedown-cart .product-details {
      width: 62%; } }

.menu_wrapper.logo_left .header_logo_wrap {
  float: left; }

.menu_wrapper.logo_right .header_logo_wrap {
  float: right; }

.search-results .title {
  text-transform: capitalize; }

.full-search-wrapper .search-results li {
  width: 25%;
  float: left;
  padding: 0 15px;
  height: auto;
  border: none;
  margin: 0 0 15px; }
  @media screen and (max-width: 767px) {
    .full-search-wrapper .search-results li {
      width: 50%; } }

@media screen and (max-width: 360px) {
  .full-search-wrapper .search-results li {
    width: 100%; } }
.header-top-right .icon-btn {
  position: relative; }

@media screen and (max-width: 991px) {
  .fullscreen_header .nav-menu-wrap {
    float: left;
    width: 100%; } }
@media screen and (min-width: 1201px) {
  body.nav-open.menu_left .page-wrapper {
    margin-left: 300px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% - 300px); }

  body.nav-open.menu_right .page-wrapper {
    margin-right: 300px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% - 300px); } }
@media screen and (min-width: 992px) {
  .fullscreen_header {
    height: 100%;
    left: -100%;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 9;
    bottom: 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }

  .logo_left .fullscreen_header {
    right: -100%;
    left: auto; } }
/*--------------------- header 1 -----------------------*/
.header_1 .site-header__search.icon_btn .search_wrapper::before {
  display: none; }

.header_1 .ps-container.ps-active-x > .ps-scrollbar-x-rail {
  display: none; }

.header_1 .fullscreen_header_toggle.active .leftmenu .ttmenu {
  color: #000; }

.sidebar.is_stuck {
  top: auto !important;
  bottom: 0; }

.header_1 .fullscreen_wrapper .nav-menu-wrap {
  width: 100%; }

.header_1 .fullscreen_header_toggle #menu:hover i,
.header_1 .fullscreen_header_toggle.active .leftmenu #menu i {
  color: #000; }

.header_1 .fullscreen_header_toggle .leftmenu:hover::before {
  background: #f6bb25; }

.header_1 .fullscreen_header_toggle.active .leftmenu::before {
  left: -10px; }

.header_1 #slidedown-cart .mini-cart-wrap {
  padding: 0 30px;
  height: 100%;
  width: 100%;
  float: left;
  overflow: hidden;
  display: inline-block;
  position: relative; }
  @media screen and (max-width: 480px) {
    .header_1 #slidedown-cart .mini-cart-wrap {
      padding: 0 15px; } }

.header_1.site-header .header-logo {
  margin: 0; }

.header_1.site-header .header-logo a {
  float: left;
  width: 100%; }
  @media screen and (max-width: 991px) {
    .header_1.site-header .header-logo a {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }

.header_1 .site-header__cart.icon-btn, .header_2 .site-header__cart.icon-btn {
  float: right;
  position: relative; }

.header_1 .site-header__cart-count span {
  right: -6px;
  left: auto;
  top: 8px;
  float: right;
  background: #f6bb25;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  font-size: 12px;
  line-height: 16px;
  position: absolute;
  padding: 0 4px;
  text-align: center; }

.header_1 .site-header__search .serach_icon::before {
  position: absolute;
  right: 0;
  left: 0;
  content: "\F349";
  font-family: "Material Design Icons";
  height: 40px;
  width: 40px;
  font-size: 26px;
  line-height: 40px;
  color: #111111; }

.header_1 .site-header__search .serach_icon:hover::before {
  color: #f6bb25; }

.header_1 .site-header__search .serach_icon.active::before {
  content: "\F5AD"; }

.site-header__search .serach_icon.active:hover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.header_1 .site-header__cart .no-items #ToggleDown, .header_2 .site-header__cart .no-items p {
  float: left;
  width: 100%; }

.header_1.site-header .fixed-cart-wrap {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  visibility: hidden;
  z-index: 9999; }

.header_1.site-header .fixed-cart-wrap.active {
  visibility: visible; }

.header_1.site-header .fixed-cart-wrap.active:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); }

.header_1 #Sticky-slidedown-cart {
  display: none !important; }

.site-header.header_1 {
  float: left;
  width: 100%;
  margin-top: 0;
  position: relative;
  text-align: center;
  min-height: 120px; }

.site-header.header_1 .sticky_header.fixed,
.site-header.header_2 .sticky_header.fixed {
  -webkit-transition: all 400ms ease 0s;
  -moz-transition: all 400ms ease 0s;
  -ms-transition: all 400ms ease 0s;
  -o-transition: all 400ms ease 0s;
  transition: all 400ms ease 0s;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  animation: fixedmenu 1s ease 0s normal both 1 running;
  -webkit-animation: fixedmenu 1s ease 0s normal both 1 running;
  -moz-animation: fixedmenu 1s ease 0s normal both 1 running;
  -o-animation: fixedmenu 1s ease 0s normal both 1 running;
  position: fixed !important;
  width: auto;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background: white !important;
  padding: 0; }

.site-header.header_1 .fixcontainer {
  float: left;
  width: 100%;
  position: relative;
  z-index: 3;
  background: white; }

.template-index .site-header.header_1.header_transaparent .fixcontainer {
  background: none; }

.header_1_wrapper {
  position: relative;
  float: left;
  width: 100%;
  padding: 0 50px;
  background: white; }

.template-index .site-header.header_1.header_transaparent .header_1_content::before,
.template-index .site-header.header_1.header_transaparent .header_1_content::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 60px;
  width: 146px;
  z-index: -1;
  bottom: -7px;
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/pattern-bg.png?v=8170962787159121954) no-repeat; }

.template-index .site-header.header_1.header_transaparent .header_1_content::before {
  left: -11px; }

.template-index .site-header.header_1.header_transaparent .header_1_content::after {
  right: -11px;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.header_1.header_transaparent .fixcontainer.fixed .header_1_content::before,
.header_1.header_transaparent .fixcontainer.fixed .header_1_content::after {
  display: none; }

@media screen and (max-width: 1400px) {
  .site-header.header_1 .topbar {
    padding: 8px 50px; } }
@media screen and (max-width: 1200px) {
  .header_1_wrapper {
    padding: 0 15px; } }
@media screen and (min-width: 992px) {
  .header_1 .site-header__search.icon-btn .search_wrapper {
    top: 71px; }

  .header_1 .myaccount .customer_account {
    top: 71px; }

  .header_style_1 .page-wrapper .header_1_wrapper #shopify-section-TT-megamenu #tt-megamenu {
    position: relative;
    visibility: visible;
    float: none;
    display: inline-block;
    vertical-align: top;
    width: auto;
    -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    -ms-transition: all 400ms ease 0s;
    -o-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s; }

  .header_style_1 .page-wrapper .header_1_wrapper.center_menu #shopify-section-TT-megamenu #tt-megamenu {
    float: none;
    display: none;
    vertical-align: top; }

  .header_style_1 .page-wrapper .header_1_wrapper.center_menu #shopify-section-TT-megamenu {
    float: none;
    width: auto;
    display: inline-block;
    vertical-align: top; }

  .header_style_1 .page-wrapper .header_1_wrapper.left_menu #shopify-section-TT-megamenu #tt-megamenu {
    float: left; }

  .header_style_1 .page-wrapper .header_1_wrapper.right_menu #shopify-section-TT-megamenu #tt-megamenu {
    float: right; } }
@media screen and (max-width: 991px) {
  .header_1_wrapper {
    padding: 0; } }
.template-index .site-header.header_1.header_transaparent {
  margin: 0;
  border: none; }

.logo_left.header_1 .site-header__search.icon-btn {
  float: right;
  margin: 28px 40px 28px 20px; }
  @media screen and (max-width: 991px) {
    .logo_left.header_1 .site-header__search.icon-btn {
      margin: 28px 30px 28px 10px; } }

.header_1 .header_1_wrapper.left_logo .header-icons-wrap {
  width: auto;
  float: left; }

.header_1 .header_1_wrapper.left_logo .header-icons-wrap {
  float: right; }

.header_1 .header_1_wrapper.right_logo .header-icons-wrap {
  float: left; }

.header_1 .header_1_wrapper.center_logo .header-icons-wrap {
  float: right; }

.header_1 .header_1_wrapper.right_menu .header-icons-wrap {
  float: left; }

.header_1 .currency_code span {
  display: none; }

.header_1 .currency_code > i {
  display: none; }

.header_1 .header_currency {
  width: auto; }

.header_1 .icons_wrap_div > div {
  float: left;
  position: relative;
  z-index: 2; }
  @media screen and (max-width: 991px) {
    .header_1 .icons_wrap_div > div {
      margin: 0; } }

.header_1 .icons_wrap_div.menu-item-show {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  display: inline-block; }

.header_1 .search_wrapper {
  float: left; }

.header_1 .header-icons-wrap {
  float: right;
  width: auto;
  margin: 31px 0; }
  @media screen and (max-width: 991px) {
    .header_1 .header-icons-wrap {
      margin: 5px 0;
      padding: 0 10px 0; } }

.icon_left.header_1 .header-icons-wrap {
  float: left; }

header.header_1.site-header.header_transaparent {
  position: absolute;
  top: 55px;
  width: 100%;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto; }
  @media screen and (max-width: 991px) {
    header.header_1.site-header.header_transaparent {
      position: static;
      background: white; } }

div#shopify-section-header-model-1 {
  float: left;
  width: 100%;
  position: relative; }

.header_1.menu_center .Site-navigation, .header_2.center_right .Site-navigation {
  float: none;
  width: 60%;
  padding: 0; }

.header_1 .nav-menu-wrap.padding_0 {
  margin: 30px 0; }
  @media screen and (max-width: 991px) {
    .header_1 .nav-menu-wrap.padding_0 {
      margin: 0; } }

.header_1 .nav-menu-wrap.padding_0 {
  margin: 30px 0; }
  @media screen and (max-width: 991px) {
    .header_1 .nav-menu-wrap.padding_0 {
      margin: 0; } }

.header_style_1 .fullscreen_header_toggle i {
  color: #111111;
  font-size: 24px;
  line-height: 40px; }

.header_style_1 .fullscreen_header_toggle .leftmenu > button {
  background: none;
  border: none;
  padding: 0; }

@media screen and (min-width: 992px) {
  .header_style_1 .fullscreen_header_toggle .leftmenu .ttmenu {
    display: none; }

  .header_1 .search_cart.ttheader-bg.dropdown.openclose {
    border: 2px solid #eeeeee;
    float: right;
    padding: 0 25px 0 10px;
    width: auto;
    position: relative;
    background: #ffffff;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out; }

  .header_style_1 .fullscreen_header_toggle {
    float: left;
    margin: 35px 0;
    z-index: 9;
    position: relative;
    cursor: pointer;
    display: none; }

  .header_1 .header_1_wrapper .header_logo_wrap {
    float: left;
    width: 135px;
    margin: 6px auto;
    position: relative; }

  .header_1 .header_1_wrapper.left_logo .header_logo_wrap {
    float: left; }

  .header_1 .header_1_wrapper.right_logo .header_logo_wrap {
    float: right; }

  .header_1 .header_1_wrapper.center_logo .header_logo_wrap {
    float: left;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 9px auto;
    z-index: 1; }

  .header_1 .myaccount.icon-btn {
    margin: 0 10px; }

  .header_style_1.icon_left .fullscreen_header_toggle {
    left: auto;
    right: 0; }

  .without_padding .header_style_1.icon_left .fullscreen_header_toggle {
    left: auto;
    right: 40px; }

  .header_style_1 .fullscreen_header_toggle.active .leftmenu > button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0; }

  .header_style_1 .fullscreen_header_toggle .leftmenu {
    float: left; }

  .header_style_1 .fullscreen_header_toggle .title {
    color: #111111;
    font: 600 16px/18px Poppins;
    text-transform: uppercase;
    float: left;
    padding: 0 0 0 60px;
    width: auto;
    line-height: 50px; }

  .header_style_1 .fullscreen_header_toggle .leftmenu #menu {
    height: 50px;
    width: 50px;
    position: relative;
    z-index: 9;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    border-radius: 50%;
    float: left;
    background-color: #f6bb25;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease; }

  .header_style_1 .fullscreen_header_toggle .leftmenu > button::after {
    content: "\f35c";
    color: white;
    font-family: "Material Design Icons";
    position: absolute;
    height: 50px;
    width: 50px;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    font-size: 22px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease; }

  .header_style_1 .fullscreen_header_toggle .leftmenu #menu:hover {
    background: #f6bb25; }

  .header_style_1 .fullscreen_header_toggle .leftmenu > button:hover::after {
    color: white; }

  body.header_style_1.fullnav-open {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative; }

  body.header_style_1.fullnav-open .page-wrapper::after {
    background: #000 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1; }

  .header_style_1 .fullscreen_header_toggle.active .leftmenu > button::after {
    content: "\f156"; }

  .header_1 .sticky_header.fixed .fullscreen_header_toggle {
    margin: 25px 0; }

  .header_1 .sticky_header.fixed .header-icons-wrap {
    margin: 31px 0; }

  .header_1 .sticky_header.fixed .header_logo_wrap {
    margin: 8px auto; }

  .header_1 .sticky_header.fixed .site-header__search.icon-btn .search_wrapper,
  .header_1 .sticky_header.fixed .myaccount .customer_account {
    top: 71px; } }
@media screen and (max-width: 991px) {
  .header_style_1 .fullscreen_header_toggle .title {
    display: none; }

  .header_1 .fullscreen_wrapper {
    padding: 0;
    overflow: visible; }

  .header_1.site-header .header-logo, .header_2 .header_logo_wrap {
    margin: 0;
    width: 100%; }

  .header_1 .nav-menu-wrap .Site-navigation {
    top: 49px !important; }

  .header_1 .header_logo_wrap {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    float: left;
    width: 100%; } }
/*--------------------- header-2 -----------------------*/
.header_2 .wrapper-wrap .logo_left {
  float: left;
  width: 100%; }

.header_2 .tt-nav-right-div .icon-btn {
  margin: 0 5px;
  padding: 41px 0;
  height: auto;
  width: 40px; }
  @media screen and (max-width: 991px) {
    .header_2 .tt-nav-right-div .icon-btn {
      padding: 0; } }

.header_2 .sticky_header.fixed .tt-nav-right-div .icon-btn {
  padding: 35px 0; }

.header_2 .tt-nav-right-div .icon-btn .serach_icon {
  height: 40px;
  width: 40px; }

.header_2 .tt-nav-right-div .icon-btn .serach_icon:hover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.header_2 .tt-nav-right-div .icon-btn .serach_icon > i {
  height: 40px;
  width: 40px; }

.header_2 .tt-nav-right-div .icon-btn .serach_icon:hover > i,
.site-header__search .serach_icon.active > i {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.header_2 .wrapper-wrap.logo_center.menu_right .tt-nav-right-div .icon-btn {
  float: right; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_center.menu_right .tt-nav-right-div .icon-btn {
      float: left; } }

.header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .icon-btn {
  float: right; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .icon-btn {
      float: left; } }

.header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .myaccount .customer_account::before {
  left: 5px;
  right: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .myaccount .customer_account::before {
      right: 23px;
      left: auto; } }

.header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
  left: 0;
  right: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
      left: auto;
      right: 0; } }

.header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .site-header__search.icon_btn .search_wrapper::before, .header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .site-header__search.icon-btn .search_wrapper::before {
  left: 5px;
  right: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .site-header__search.icon_btn .search_wrapper::before, .header_2 .wrapper-wrap.logo_right.menu_center .tt-nav-right-div .site-header__search.icon-btn .search_wrapper::before {
      right: 23px;
      left: auto; } }

.header_2 .tt-nav-right-div .site-header__cart.icon-btn, .header_2 .sticky_header.fixed .tt-nav-right-div .site-header__cart.icon-btn {
  padding: 0; }

.header_2 .tt-nav-right-div .site-header__cart.icon-btn .wrapper-top-cart {
  float: left;
  width: 40px;
  padding: 41px 0; }
  @media screen and (max-width: 991px) {
    .header_2 .tt-nav-right-div .site-header__cart.icon-btn .wrapper-top-cart {
      padding: 0; } }

.header_2 .tt-nav-right-div .site-header__cart.icon-btn .wrapper-top-cart > .site-header_cart_link {
  width: 40px;
  height: 40px; }

.header_2 .sticky_header.fixed .tt-nav-right-div .site-header__cart.icon-btn .wrapper-top-cart {
  padding: 36px 0; }

.header_2 .wrapper-wrap .nav-menu-wrap {
  float: left;
  width: 100%;
  text-align: center;
  padding: 0; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap .nav-menu-wrap {
      position: relative; } }

.header_2 .wrapper-wrap .nav-menu-wrap .header-logo {
  text-align: center;
  z-index: 1;
  padding: 0;
  width: 135px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  margin: 17px auto; }
  @media screen and (max-width: 1199px) {
    .header_2 .wrapper-wrap .nav-menu-wrap .header-logo {
      margin: 19px auto; } }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap .nav-menu-wrap .header-logo {
      margin: 0;
      padding: 20px 0;
      float: left;
      position: relative;
      width: 100%;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); } }

.header_2 .wrapper-wrap {
  float: left;
  width: 100%;
  text-align: center; }

.header_2 .wrapper-wrap.logo_left .nav-menu-wrap .header-logo {
  float: left;
  position: static; }

.header_2 .wrapper-wrap.logo_right .nav-menu-wrap .header-logo {
  float: right;
  position: static; }

.header_2 .wrapper-wrap.logo_right .tt-right-icon {
  float: left; }

.header_2 .wrapper-wrap.logo_center.menu_right .tt-right-icon {
  float: left; }

.header_2 .logo_center.menu_right #tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
  right: 0;
  left: auto; }

.header_2 .wrapper-wrap.icon_left .tt-right-icon {
  float: right; }

.header_2 .wrapper-wrap.icon_center .tt-right-icon {
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center; }

.header_2 .wrapper-wrap.menu_center .menu_wrapper {
  float: left;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: static; }

.header_2 #shopify-section-TT-megamenu {
  border-radius: 50px;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  width: 100%; }
  @media screen and (max-width: 991px) {
    .header_2 #shopify-section-TT-megamenu {
      float: left; } }

.header_2 .wrapper-wrap.menu_left .menu_wrapper {
  float: left;
  width: 100%;
  padding: 0; }
  @media screen and (max-width: 1199px) {
    .header_2 .wrapper-wrap.menu_left .menu_wrapper {
      padding: 0 15px; } }

.header_2 .wrapper-wrap.menu_right .menu_wrapper {
  float: right;
  width: 100%; }

.header_2 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item {
  position: relative; }

.header_2 .wrapper-top-cart > .site-header_cart_link::before {
  color: #111111; }

.header_2 .wrapper-top-cart > .site-header_cart_link:hover::before,
.header_2 .wrapper-top-cart > .site-header_cart_link.active::before {
  color: #f6bb25; }

.header_2 .wrapper-top-cart .site-header__cart-count span.hidden-sm-down {
  display: none; }

.header_2 .site-header__cart span.cart-products-count {
  height: 16px;
  width: 16px;
  background: #f6bb25;
  color: white;
  float: left;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: -5px;
  left: auto;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 16px; }

@media screen and (min-width: 992px) {
  .header_2 #tt-megamenu {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
    padding: 0 30px; } }
.header_2 #tt-megamenu li.more_menu > ul > li .tt_sub_menu_wrap .tt_sub_menu {
  margin: 0; }

.header_2 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item ul.tt_sub_menu_linklist {
  padding: 10px 0;
  min-width: 180px !important; }
  @media screen and (max-width: 991px) {
    .header_2 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item ul.tt_sub_menu_linklist {
      display: block;
      padding: 0; } }

.header_2 #tt-megamenu li.more_menu li.tt_menu_item {
  width: 100%;
  margin: 0; }

.header_2 #tt-megamenu li.more_menu > ul > li > a {
  padding: 5px 20px;
  float: left;
  width: 100%;
  text-align: left;
  text-transform: capitalize;
  position: relative; }

.header_2 .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
  top: 100%; }

.header_2 .wrapper-wrap.logo_center.menu_right .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
  right: auto;
  left: 0; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_center.menu_right .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
      right: 0;
      left: auto; } }

.header_2 .wrapper-wrap.logo_center.menu_right .site-header__search.icon_btn .search_wrapper::before {
  right: auto;
  left: 5px; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_center.menu_right .site-header__search.icon_btn .search_wrapper::before {
      right: 23px;
      left: auto; } }

.header_2 .tt-nav-right-div .myaccount .customer_account {
  top: 100%; }

.header_2 .wrapper-wrap.logo_center.menu_right .tt-nav-right-div .myaccount .customer_account {
  right: auto;
  left: 0; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_center.menu_right .tt-nav-right-div .myaccount .customer_account {
      right: 0;
      left: auto; } }

.header_2 .wrapper-wrap.logo_center.menu_right .myaccount .customer_account::before {
  left: 5px;
  right: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_center.menu_right .myaccount .customer_account::before {
      left: auto;
      right: 23px; } }

.header_2 .wrapper-wrap.logo_center.menu_right .site-header__search.icon-btn .search_wrapper::before {
  left: 3px;
  right: auto; }

.header_2 #slidedown-cart {
  top: 100%;
  border-top: 3px solid #f6bb25;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.header_2 .site-header__cart #slidedown-cart::after, .header_2 .site-header__cart #Sticky-slidedown-cart::after {
  content: "\f360";
  font-family: "Material Design Icons";
  position: absolute;
  right: 20px;
  left: auto;
  top: -16px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 40px;
  bottom: auto;
  color: #f6bb25; }

.header_2 .wrapper-wrap.logo_center.menu_right #slidedown-cart {
  left: 0; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_center.menu_right #slidedown-cart {
      right: 0;
      left: auto; } }

.header_2 #tt-megamenu ul.tt_menus_ul {
  margin: 0;
  position: relative;
  text-align: center; }

.header_2 .wrapper-wrap.menu_right #tt-megamenu ul.tt_menus_ul {
  text-align: right; }

.header_2 .wrapper-wrap.menu_left #tt-megamenu ul.tt_menus_ul {
  text-align: left; }

.header_2.site-header:not(.header_2) .menu_right ul.sub-nav__dropdown {
  right: 0;
  left: auto; }

.template-index .header_2.header_transaparent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  background: none; }
  @media screen and (max-width: 991px) {
    .template-index .header_2.header_transaparent {
      position: static;
      background: white; } }

.site-header.header_2 {
  position: relative;
  min-height: 115px;
  background: white;
  float: left;
  width: 100%; }

.header_2 .tt-nav-left-div .header_currency .tbl-list > li.currency .flag-dropdown-menu {
  float: left;
  left: 0;
  right: auto;
  margin: 0;
  top: 39px;
  width: 80px; }

.header_2 .tt-nav-left-div .header_currency .tbl-list > li.currency .flag-dropdown-menu > li {
  float: left;
  width: 100%;
  margin: 0;
  padding: 5px 10px; }

.header_2 .wrapper-wrap .nav-menu-wrap .tt-nav-right-div {
  float: right;
  width: auto;
  padding: 0; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap .nav-menu-wrap .tt-nav-right-div {
      padding: 5px 0;
      margin: 0; } }

.header_2 .nav-menu-wrap .tt-right-icon {
  float: right;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .nav-menu-wrap .tt-right-icon {
      position: absolute;
      left: auto;
      right: 0;
      top: auto;
      bottom: 0;
      float: right;
      width: auto; } }

.header_2 .wrapper-wrap.icon_left .nav-menu-wrap .tt-right-icon {
  float: left; }

.header_2 .wrapper-wrap.icon_left .nav-menu-wrap .tt-nav-right-div {
  float: left;
  width: auto; }

.header_2 .wrapper-wrap.logo_right .nav-menu-wrap .tt-nav-right-div {
  float: left;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_right .nav-menu-wrap .tt-nav-right-div {
      display: block;
      float: right; } }

@media screen and (max-width: 991px) {
  .header_2 .wrapper-wrap.logo_center .nav-menu-wrap .tt-nav-right-div {
    display: block;
    float: right; } }

.header_2 .wrapper-wrap.logo_center.menu_right .nav-menu-wrap .tt-nav-right-div {
  float: left;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap.logo_center.menu_right .nav-menu-wrap .tt-nav-right-div {
      display: block;
      float: right; } }

.site-header.header_2 .sticky_header.fixed #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a {
  margin: 36px 0; }

@media screen and (max-width: 991px) {
  .header_2 #tt-megamenu .tt-mega_menu li.tt_menu_item {
    position: relative; } }
@media screen and (min-width: 992px) {
  .header_2 #tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
    left: auto;
    top: 100%;
    text-align: left;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #f6bb25;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px; }

  .header_2 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a span.tt_mn_sub_heading {
    top: -8px; }

  .header_2 #tt-megamenu .tt-mega_menu li.tt_menu_item {
    width: auto;
    margin: 0 2px;
    float: none !important;
    display: inline-block;
    vertical-align: top;
    padding: 0; }

  .header_2 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a, .header_2 #tt-megamenu .tt-mega_menu .tt_menus_ul > li span.categories {
    padding: 7px 12px 7px 12px;
    margin: 13px 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    border-radius: 50px; }

  .header_2 .tt-mega-menu #tt-megamenu .tt-mega_menu {
    padding: 0;
    margin: 0; }

  .header_2 #tt-megamenu .tt-mega_menu .tt_menus_ul > li:hover > a::before {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px; }

  .header_2 #tt-megamenu li.more_menu > ul > li .tt_sub_menu_wrap {
    -webkit-opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    opacity: 0 !important;
    right: 100% !important;
    top: auto !important;
    -webkit-transform: scaleY(0) !important;
    -moz-transform: scaleY(0) !important;
    -ms-transform: scaleY(0) !important;
    -o-transform: scaleY(0) !important;
    transform: scaleY(0) !important;
    padding: 0 15px;
    margin: 0; }

  .header_2 #tt-megamenu li.more_menu > ul > li:hover .tt_sub_menu_wrap {
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    opacity: 1 !important;
    -webkit-transform: scaleY(1) !important;
    -moz-transform: scaleY(1) !important;
    -ms-transform: scaleY(1) !important;
    -o-transform: scaleY(1) !important;
    transform: scaleY(1) !important; } }
@media screen and (max-width: 991px) {
  .header_2 .tt-nav-right-div .myaccount .customer_account,
  .header_2 #slidedown-cart {
    top: 45px; }

  .header_2 .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
    top: 45px; }

  .header_2 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item > a {
    display: none; } }
@media screen and (max-width: 480px) {
  .header_2 .tt-nav-right-div .site-header__search.icon-btn .search_wrapper::before {
    right: 46%; }

  .header_2 .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
    left: -135px; }

  .header_2 .tt-nav-right-div .myaccount .customer_account, .header_2 #slidedown-cart {
    right: -15px; }

  .header_2 .site-header__cart #slidedown-cart::after, .header_2 .site-header__cart #Sticky-slidedown-cart::after {
    right: 30px; }

  .header_2 .tt-nav-right-div .myaccount .customer_account::before {
    right: 30px; } }
/*------------------ header-3 --------------------*/
.header_3 .myaccount .dropdown-toggle {
  padding: 15px 10px; }
  @media screen and (max-width: 630px) {
    .header_3 .myaccount .dropdown-toggle {
      padding: 10px; } }

.header_style_3 .breadcrumb-wrapper {
  padding: 0; }

.header_style_2 .breadcrumb-wrap {
  padding: 0; }
  @media screen and (max-width: 991px) {
    .header_style_2 .breadcrumb-wrap {
      padding: 14px 0; } }

@media screen and (min-width: 1450px) {
  .header_style_3 .breadcrumb-block .container {
    width: 1380px; } }
@media screen and (min-width: 1600px) {
  .header_style_3 .breadcrumb-block .container {
    width: 1560px; }

  .header_3 .wrapper-wrap .container {
    width: 1560px; }

  .header_1 .wrapper-wrap .container {
    width: 1430px; } }
.header_style_3 .breadcrumb-wrap {
  padding: 15px;
  color: #111; }

.header_style_3 .breadcrumb-wrapper span.title {
  color: #111111 !important; }

.header_style_3 .breadcrumb-wrapper .breadcrumb-wrap * {
  color: #111; }

.header_style_3 .breadcrumb .breadcrumb__sep:before {
  color: #111; }

.header_3 .wrapper-wrap .logo_left {
  float: left;
  width: 100%; }

.header_3 .tt-nav-right-div .icon-btn.myaccount {
  margin: 0 10px; }

.header_3 .wrapper-top-cart > .site-header_cart_link::before {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

.header_3 .wrapper-top-cart > .site-header_cart_link:hover::before {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.header_3 .tt-nav-right-div .icon-btn {
  height: 40px;
  width: 40px; }

.header_3 .tt-nav-right-div .site-header__cart.icon-btn {
  height: auto;
  width: auto;
  margin: 46px 10px; }
  @media screen and (max-width: 991px) {
    .header_3 .tt-nav-right-div .site-header__cart.icon-btn {
      margin: 0; } }

.header_3 .wrapper-wrap .nav-menu-wrap {
  float: left;
  width: 100%;
  text-align: center; }

.header_3 .wrapper-wrap .nav-menu-wrap .header-logo {
  float: left;
  width: 135px;
  text-align: center;
  margin: 25px 0; }
  @media screen and (max-width: 991px) {
    .header_3 .wrapper-wrap .nav-menu-wrap .header-logo {
      width: 100%;
      padding: 10px 0;
      margin: 0;
      border-bottom: 1px solid #e5e5e5; } }

.header_3 .wrapper-wrap.right_logo .nav-menu-wrap .header-logo {
  float: right; }

.header_3 .wrapper-wrap.center_logo .nav-menu-wrap .header-logo {
  float: none;
  display: inline-block;
  vertical-align: top; }

.header_3 .wrapper-top-cart > .site-header_cart_link::before {
  color: #111111;
  font-size: 26px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 50px;
  width: 50px;
  line-height: 55px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px; }

@media screen and (min-width: 992px) {
  .header_3 .wrapper-top-cart > .site-header_cart_link::after {
    content: '';
    position: absolute;
    right: auto;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    line-height: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    border-radius: 50px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    margin: auto; } }
@media screen and (min-width: 992px) {
  .header_3 .wrapper-top-cart > .site-header_cart_link:hover::before {
    color: #f6bb25; } }
.header_3 .wrapper-top-cart > .site-header_cart_link:hover::before {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.header_3 .wrapper-top-cart .site-header__cart-count span.hidden-sm-down {
  display: block;
  float: left;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_3 .wrapper-top-cart .site-header__cart-count span.hidden-sm-down {
      display: none; } }

.header_3 .site-header__cart .wrapper-top-cart > .site-header_cart_link {
  padding: 6px 0 6px 60px;
  height: auto;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_3 .site-header__cart .wrapper-top-cart > .site-header_cart_link {
      height: 50px;
      width: 50px;
      padding: 0; } }

.header_3 .site-header__cart #slidedown-cart::after,
.header_3 .site-header__cart #Sticky-slidedown-cart::after {
  content: "\f360";
  font-family: "Material Design Icons";
  position: absolute;
  right: 20px;
  left: auto;
  top: -16px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 40px;
  bottom: auto;
  color: #f6bb25; }

.header_3 .site-header__cart span.cart-products-count {
  height: 16px;
  width: 16px;
  color: #111111;
  float: left;
  text-align: center;
  line-height: 22px;
  font-size: 18px; }
  @media screen and (max-width: 991px) {
    .header_3 .site-header__cart span.cart-products-count {
      position: absolute;
      left: auto;
      right: 0;
      top: auto;
      bottom: 30px;
      background: #f6bb25;
      border-radius: 10px;
      color: white;
      font-size: 14px;
      line-height: 16px; } }

.header_3 .wrapper-wrap {
  float: left;
  width: 100%;
  position: relative; }

.header_3 .fixed-header {
  float: left;
  width: 100%; }

.header_3 .tt-nav-right-div .site-header__search.icon-btn .search_wrapper {
  top: 55px; }

.header_3 .myaccount .customer_account {
  top: 100%;
  border-top: 3px solid #f6bb25; }
  @media screen and (max-width: 991px) {
    .header_3 .myaccount .customer_account {
      top: 100%; } }
  @media screen and (max-width: 480px) {
    .header_3 .myaccount .customer_account {
      right: auto;
      left: 0; } }

.header_3 .myaccount .customer_account::before {
  color: #f6bb25; }
  @media screen and (max-width: 480px) {
    .header_3 .myaccount .customer_account::before {
      right: auto;
      left: 0; } }

.header_3 .header-top-right .myaccount.icon-btn {
  position: relative;
  width: auto;
  height: auto;
  float: left; }

.header_3 .header-top-right .account-info {
  float: left;
  width: auto;
  padding: 0 10px;
  font: 400 14px/22px Poppins, Helvetica, sans-serif;
  cursor: pointer; }
  @media screen and (max-width: 991px) {
    .header_3 .header-top-right .account-info {
      display: none; } }

.header_3 .myaccount.icon-btn .dropdown-toggle > i {
  font-size: 20px;
  line-height: 20px;
  height: 20px;
  width: 20px; }

.header_3 #slidedown-cart, .header_3 #Sticky-slidedown-cart {
  top: 85px;
  border-top: 3px solid #f6bb25; }

.header_3 .wrapper-wrap #top {
  float: left;
  width: 100%;
  padding: 0 50px; }
  @media screen and (max-width: 991px) {
    .header_3 .wrapper-wrap #top {
      padding: 0 15px; } }

.header_3 .wrapper-wrap .menu_wrapper.sticky_header.fixed #shopify-section-TT-megamenu {
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center; }

.header_3 .wrapper-wrap .menu_wrapper.sticky_header.fixed #shopify-section-TT-megamenu #tt-megamenu {
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: top; }

.header_3 .wrapper-wrap.menu_left #shopify-section-TT-megamenu {
  float: left;
  width: auto; }

.header_3 .wrapper-wrap.menu_right #shopify-section-TT-megamenu {
  float: right; }

.header_3 .wrapper-wrap .menu_wrapper .tt-mega-menu #tt-megamenu .tt-mega_menu {
  padding: 0;
  margin: 0; }

.header_3 .wrapper-wrap.menu_left .menu_wrapper .tt-mega-menu #tt-megamenu .tt-mega_menu {
  float: left;
  width: auto; }

.header_3 .wrapper-wrap.menu_right .menu_wrapper .tt-mega-menu #tt-megamenu .tt-mega_menu {
  float: right; }

.header_3 .wrapper-wrap .menu_wrapper {
  float: left;
  width: 100%;
  padding: 0 50px; }
  @media screen and (max-width: 1500px) {
    .header_3 .wrapper-wrap .menu_wrapper {
      padding: 0 30px; } }
  @media screen and (max-width: 1200px) {
    .header_3 .wrapper-wrap .menu_wrapper {
      padding: 0 15px; } }

.header_3 .wrapper-wrap .tt-nav-right-div {
  float: right;
  width: auto;
  margin: 0;
  padding: 0 50px 0 0; }
  @media screen and (max-width: 991px) {
    .header_3 .wrapper-wrap .tt-nav-right-div {
      padding: 0; } }

.header_3 .wrapper-wrap.left_contact-cart .tt-nav-right-div {
  float: left; }

.header_3 .nav-menu-wrap .tt-nav-right-div .site-header__cart .wrapper-top-cart .cart-title {
  font: 400 14px/16px Poppins, Helvetica, sans-serif; }
  @media screen and (max-width: 991px) {
    .header_3 .nav-menu-wrap .tt-nav-right-div .site-header__cart .wrapper-top-cart .cart-title {
      display: none; } }

.header_3 .wrapper-wrap .menu_wrapper ul.tt_menus_ul {
  margin: 0; }

.header_3 .header-top-right ul.list-inline {
  margin: 0;
  float: left; }
  @media screen and (max-width: 991px) {
    .header_3 .header-top-right ul.list-inline {
      float: right; } }

.header_3 .header-top-right .header_currency {
  padding: 0; }

.header_3 .header-top-right .header_currency ul.tbl-list {
  margin: 0; }

.header_3 .header-top-right ul.list-inline > li {
  margin: 0;
  vertical-align: top; }
  @media screen and (max-width: 991px) {
    .header_3 .header-top-right ul.list-inline > li {
      padding: 0; } }

@media screen and (max-width: 991px) {
  .header_3 .header_currency {
    float: none;
    display: inline-block;
    vertical-align: top; } }
.header_3 .header_currency ul.tbl-list > li .currency_wrapper.dropdown-toggle {
  padding: 15px 5px 14px;
  float: left;
  width: auto; }
  @media screen and (max-width: 630px) {
    .header_3 .header_currency ul.tbl-list > li .currency_wrapper.dropdown-toggle {
      padding: 9px 5px 10px; } }

.header_3 .header-top-right .wishlist-icon-div a {
  padding: 15px 0;
  float: left; }
  @media screen and (max-width: 630px) {
    .header_3 .header-top-right .wishlist-icon-div a {
      padding: 10px 0 10px; } }

@media screen and (max-width: 991px) {
  .header_3 .wishlist-icon-div a > i {
    display: none;
    float: right;
    height: 50px;
    width: 50px; } }
.header_3 .header-top-right .header_currency ul.tbl-list .flag-dropdown-menu li {
  margin: 0;
  float: left;
  width: 100%; }

.header_3 .header-top-right .header_currency ul.tbl-list .flag-dropdown-menu li a {
  padding: 5px 15px; }

@media screen and (max-width: 991px) {
  .header_3 .tt-nav-right-div .site-header__search.icon-btn .search_wrapper,
  .header_3 .tt-nav-right-div .myaccount .customer_account,
  .header_3 #slidedown-cart, .header_3 #Sticky-slidedown-cart {
    top: 100%; }

  .header_3 #slidedown-cart, .header_3 #Sticky-slidedown-cart {
    width: 350px; } }
@media screen and (max-width: 360px) {
  .header_3 #slidedown-cart, .header_3 #Sticky-slidedown-cart {
    width: 280px; } }
.header_3 .nav-menu-wrap .header-logo a {
  float: left; }
  @media screen and (max-width: 991px) {
    .header_3 .nav-menu-wrap .header-logo a {
      float: none; } }

.template-index .header_3.header_transaparent {
  float: left;
  width: 100%;
  position: relative; }

.site-header.header_3 {
  float: left;
  width: 100%; }

@media screen and (min-width: 992px) {
  .site-header.header_3 {
    min-height: 281px; } }
.header_3 .tt-nav-left-div .header_currency .tbl-list > li.currency .flag-dropdown-menu {
  float: left;
  left: 0;
  right: auto;
  margin: 0;
  top: 39px;
  width: 80px; }

.header_3 .tt-nav-left-div .header_currency .tbl-list > li.currency .flag-dropdown-menu > li {
  float: left;
  width: 100%;
  margin: 0;
  padding: 5px 10px; }

.header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul span.tt_mn_sub_heading {
  top: 0; }

.header_3 .wrapper-wrap.logo_center.menu_right .nav-menu-wrap .tt-nav-right-div {
  float: left;
  width: auto;
  padding: 20px 0; }
  @media screen and (max-width: 991px) {
    .header_3 .wrapper-wrap.logo_center.menu_right .nav-menu-wrap .tt-nav-right-div {
      display: block;
      float: right;
      padding: 5px 0; } }

.header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li.tt_mm_hassub > a::after {
  position: static;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

.header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul li.tt_mm_hassub:hover > a::after {
  content: "\f143";
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.header_3 .wrapper-wrap .nav-menu-wrap .header-Top {
  float: left;
  padding: 0 0 0 50px;
  width: auto;
  position: relative; }
  @media screen and (max-width: 991px) {
    .header_3 .wrapper-wrap .nav-menu-wrap .header-Top {
      padding: 0;
      float: left;
      width: 100%;
      background: none; } }

.header_3 .wrapper-wrap .nav-menu-wrap .menu_wrapper.sticky_header.fixed .header-Top {
  z-index: 1; }

.header_3 .wrapper-wrap.right_logo .nav-menu-wrap .header-Top {
  float: right; }

.header_3 .wrapper-wrap.center_logo .nav-menu-wrap .header-Top {
  position: absolute;
  top: auto;
  bottom: auto;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: auto;
  padding: 0; }

.header_3 .wrapper-wrap .nav-menu-wrap .menu_wrapper.sticky_header.fixed .header-Top {
  padding: 0; }

.header_3 .wrapper-wrap .nav-menu-wrap .menu_wrapper.sticky_header.fixed .header-Top .header-logo {
  margin: 0; }

.header_3 .wrapper-wrap .nav-menu-wrap .Top-nav {
  padding: 0;
  float: left;
  width: 100%; }

.header_3 .wrapper-wrap .fixed-header.sticky_header {
  float: left;
  width: 100%;
  text-align: center; }

.header_3 #tt-megamenu .tt-mega_menu li.more_menu.tt_menu_item {
  position: relative; }

.header_3 #tt-megamenu .tt-mega_menu li.more_menu ul.tt_sub_menu_wrap li.tt_menu_item {
  width: 100%;
  padding: 5px 15px; }
  @media screen and (max-width: 1199px) {
    .header_3 #tt-megamenu .tt-mega_menu li.more_menu ul.tt_sub_menu_wrap li.tt_menu_item {
      padding: 5px 12px; } }

.header_3 #tt-megamenu .tt-mega_menu li.more_menu.tt_mm_hassub .tt_sub_menu_wrap {
  min-width: 200px;
  width: auto !important;
  padding: 15px 0; }
  @media screen and (max-width: 991px) {
    .header_3 #tt-megamenu .tt-mega_menu li.more_menu.tt_mm_hassub .tt_sub_menu_wrap {
      padding: 0;
      width: 100% !important; } }

.header_3 #tt-megamenu .tt-mega_menu li.more_menu.tt_mm_hassub li.tt_menu_item .tt_sub_menu_wrap {
  left: 100%;
  padding: 15px;
  top: 0 !important; }
  @media screen and (max-width: 991px) {
    .header_3 #tt-megamenu .tt-mega_menu li.more_menu.tt_mm_hassub li.tt_menu_item .tt_sub_menu_wrap {
      padding: 0 15px; } }

.header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul li.more_menu li.tt_mm_hassub:hover > a::after {
  content: "\f142"; }

.header_3 .wrapper-wrap.menu_right #tt-megamenu .tt-mega_menu li.more_menu.tt_mm_hassub li.tt_menu_item .tt_sub_menu_wrap {
  right: 100% !important;
  left: auto !important; }

.header_3 .menu_left #tt-megamenu .tt-mega_menu li.tt_menu_item {
  float: left !important; }

#tt-megamenu .tt_menus_ul li.more_menu .tt_sub_menu_wrap .tt_sub_menu {
  padding: 0; }
  @media screen and (max-width: 991px) {
    #tt-megamenu .tt_menus_ul li.more_menu .tt_sub_menu_wrap .tt_sub_menu {
      padding: 0 15px; } }

@media screen and (min-width: 992px) {
  .header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a {
    padding: 10px 12px 10px 15px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px; }

  .header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a::before {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px; }

  .header_3 #tt-megamenu .tt-mega_menu li.tt_mm_hassub .tt_sub_menu_wrap {
    left: auto;
    top: 100%;
    text-align: left;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #f6bb25; }

  .header_3 .wrapper-wrap.menu_right #tt-megamenu .tt-mega_menu li.tt_mm_hassub .tt_sub_menu_wrap {
    right: 0;
    left: auto; }

  .header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li:hover > a {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px; }

  .header_3 #tt-megamenu .tt-mega_menu li.tt_menu_item {
    width: auto;
    padding: 22px 5px;
    position: relative; } }
@media screen and (max-width: 1200px) {
  .header_3 #tt-megamenu .tt-mega_menu li.tt_menu_item {
    padding: 22px 2px; }

  .header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a {
    padding: 10px 12px; } }
@media screen and (max-width: 1199px) {
  .header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a {
    padding: 5px 10px;
    font-size: 16px;
    line-height: 24px; }

  .header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a {
    padding: 10px 12px; } }
@media screen and (max-width: 991px) {
  .header_3 .nav-menu-wrap .header-top-right {
    position: static;
    float: none;
    display: inline-block;
    vertical-align: top; }

  .header_style_3 #tt-megamenu .tt-mega_menu {
    position: absolute;
    top: 100%;
    z-index: 99;
    margin: 0;
    text-align: center; }

  .header_style_3 .wrapper-wrap .nav-menu-wrap > .container {
    position: relative; }

  .header_style_3 #tt-megamenu span.toggle_menu > i {
    color: #111111; }

  .header_style_3 #tt-megamenu span.toggle_menu {
    background: none; }

  .header_3 #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a {
    font-size: 14px;
    line-height: 22px;
    padding: 5px 12px; }

  .header_3 #tt-megamenu .tt-mega_menu li.tt_menu_item {
    padding: 0; } }
/*-----------------  header-top ------------------*/
#top .header-top-left {
  float: left;
  width: auto; }
  @media screen and (max-width: 991px) {
    #top .header-top-left {
      float: none;
      display: inline-block;
      vertical-align: top; } }

#top .header-top-right {
  float: right;
  width: auto; }

#ttcmsheader .ttheader-service::before {
  content: "\f4f9";
  position: absolute;
  height: 20px;
  width: 20px;
  margin: 0 auto;
  font-family: 'Material Design Icons';
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  line-height: 22px;
  font-size: 22px;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }
  @media screen and (max-width: 991px) {
    #ttcmsheader .ttheader-service::before {
      position: static;
      display: inline-block;
      vertical-align: top;
      margin: 0 5px 0 0; } }

#ttcmsheader .ttheader-service:hover::before {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0); }

#ttcmsheader {
  float: left;
  padding: 15px 0; }
  @media screen and (max-width: 991px) {
    #ttcmsheader {
      float: none;
      display: inline-block;
      vertical-align: top; } }
  @media screen and (max-width: 630px) {
    #ttcmsheader {
      padding: 10px 0; } }
  @media screen and (max-width: 550px) {
    #ttcmsheader {
      padding: 10px 0 0; } }

#ttcmsheader .ttheader-service {
  position: relative;
  padding: 0 0 0 28px;
  font: 400 14px/21px Poppins; }
  @media screen and (max-width: 991px) {
    #ttcmsheader .ttheader-service {
      padding: 0; } }

/*------------------ title -------------*/
.tt-innerpagetitle {
  float: left;
  font-family: Lato;
  font-size: 22px;
  line-height: 24px;
  padding: 0;
  text-align: left;
  text-transform: capitalize;
  width: 100%;
  color: #222222;
  margin: 0 0 10px; }
  @media screen and (max-width: 767px) {
    .tt-innerpagetitle {
      font-size: 18px;
      line-height: 20px; } }

.rte .page-subheading {
  color: #222222;
  float: left;
  width: 100%; }

.tthometab-title h3, .tthometab-title .h3 {
  margin: 30px 0 0; }

.tt-title {
  color: #000;
  display: inline-block;
  float: none;
  vertical-align: top;
  font: italic 700 40px/42px Lato, sans-serif;
  padding: 0 0 55px;
  margin: 0 0 25px;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
  z-index: 1; }
  @media screen and (max-width: 991px) {
    .tt-title {
      font-size: 30px;
      line-height: 32px; } }
  @media screen and (max-width: 480px) {
    .tt-title {
      font-size: 26px;
      line-height: 28px;
      letter-spacing: 1px; } }

.tt-title::after {
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/separator.png?v=11738748764443201598) no-repeat scroll center bottom;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: auto; }

.tt-subtitle {
  font: 400 48px/56px Dancing Script, Helvetica, sans-serif;
  text-transform: capitalize;
  margin: 0 0 5px; }
  @media screen and (max-width: 480px) {
    .tt-subtitle {
      font-size: 40px;
      line-height: 52px; } }

h2.tt-pagetitle, .tt-pagetitle.h2 {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222; }

.search-products .text--left.section-header__title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  float: left;
  width: 100%;
  color: #222222; }
  @media screen and (max-width: 767px) {
    .search-products .text--left.section-header__title {
      font-size: 20px;
      line-height: 30px; } }

@media screen and (max-width: 1199px) {
  .search-products .grid-item {
    width: 33.33%; } }
@media screen and (max-width: 767px) {
  .search-products .grid-item {
    width: 50%; } }
@media screen and (max-width: 480px) {
  .ttdesc {
    font-size: 16px;
    line-height: 15px;
    margin: 10px 0; }

  .search-products .grid-item {
    width: 100%; } }
/*============================================================================
 Dropdowns
==============================================================================*/
.page-move--nav .nav-bar {
  height: 100%; }
.nav-bar .grid-item {
  height: 100%; }
.nav-bar .icon {
  color: #777777; }
.nav-bar .wrapper {
  padding: 0; }
@media screen and (min-width: 1025px) {
  .lt-ie9 .nav-bar {
    margin-top: -30px; } }

/*================ Mobile Nav ================*/
.cart-toggle,
.nav-toggle {
  color: #777777;
  display: inline-block;
  text-align: center;
  width: 100%; }
  .cart-toggle:active, .cart-toggle:hover, .cart-toggle:focus,
  .nav-toggle:active,
  .nav-toggle:hover,
  .nav-toggle:focus {
    color: #919191; }

.cart-toggle {
  font-size: 1.28571em; }

.nav-toggle {
  font-size: 1.57143em; }

@media screen and (min-width: 1025px) {
  .cart-toggle {
    font-size: 14px;
    height: auto;
    margin: 0;
    width: auto; } }
.hidden-count {
  display: none; }

.nav-mobile {
  position: absolute;
  background-color: white;
  font-family: Poppins;
  height: 100%;
  top: 0;
  left: 0;
  height: 100%;
  font-family: Poppins;
  z-index: 0;
  overflow: hidden; }
  @media screen and (min-width: 1025px) {
    .nav-mobile {
      display: none; } }
  .nav-mobile .page-move--nav {
    position: absolute; }
  .mobile-drawer--open .nav-mobile {
    overflow: auto;
    -webkit-overflow-scrolling: touch; }

.page-element.activated {
  -webkit-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -moz-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -ms-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -o-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }

.cart_table input[type="number"] {
  padding: 0; }

@media screen and (max-width: 1024px) {
  .nav-search {
    margin: 0 0 15px; } }

/*================ Secondary nav ================*/
.nav-secondary {
  font-family: Poppins;
  font-size: 1em;
  margin: 0 0 15px; }
  .nav-secondary a {
    color: #cccccc; }
    .nav-secondary a:hover {
      color: white; }
  .nav-secondary li {
    margin: 0 0 0 15px; }
  .nav-secondary li:first-child {
    margin: 0; }

/*================ Page nav ====================*/
.article-pagination,
.product-pagination {
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  font-family: Poppins;
  font-size: 1em;
  margin: 30px 0;
  padding: 30px 0; }
  .article-pagination.last,
  .product-pagination.last {
    border-bottom: 0;
    padding-bottom: 0; }
  .article-pagination p,
  .product-pagination p {
    margin: 0; }
  .article-pagination .article-pagination__sep,
  .article-pagination .product-pagination__sep,
  .product-pagination .article-pagination__sep,
  .product-pagination .product-pagination__sep {
    padding: 0 7.5px; }
  @media screen and (min-width: 1025px) {
    .article-pagination,
    .product-pagination {
      margin: 60px 0; } }

/*============================================================================
  #Breadcrumb
==============================================================================*/
.breadcrumb-wrapper span.title {
  float: left;
  margin: 0;
  color: #000;
  width: auto;
  font: 600 18px/24px Lato, Helvetica, sans-serif; }
  @media screen and (max-width: 480px) {
    .breadcrumb-wrapper span.title {
      margin-bottom: 10px; } }

.breadcrumb-wrapper .breadcrumb span.breadcrumb__sep {
  font-size: 0;
  line-height: normal; }

.breadcrumb-wrapper .breadcrumb span, .breadcrumb-wrapper .breadcrumb a {
  font-family: Lato, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px; }

.breadcrumb-wrapper .breadcrumb {
  float: right;
  margin: 2px 0 0;
  width: auto; }
  @media screen and (max-width: 991px) {
    .breadcrumb-wrapper .breadcrumb {
      margin: 0; } }

.breadcrumb-wrapper .container > span {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px; }

.spr-header-title {
  font-size: 21px; }

.breadcrumb-wrapper {
  padding: 20px 15px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #333333;
  margin: 0 0 30px 0;
  text-transform: capitalize;
  text-align: right; }
  @media screen and (max-width: 991px) {
    .breadcrumb-wrapper {
      margin: 0 0 20px;
      padding: 5px; } }
  @media screen and (max-width: 767px) {
    .breadcrumb-wrapper {
      margin: 0 0 15px; } }

.header_style_2 .breadcrumb-wrapper {
  margin: 20px 0 30px; }
  @media screen and (max-width: 991px) {
    .header_style_2 .breadcrumb-wrapper {
      margin: 0 0 30px; } }
  @media screen and (max-width: 767px) {
    .header_style_2 .breadcrumb-wrapper {
      margin: 0 0 15px; } }

@media screen and (max-width: 991px) {
  .header_style_2.about-us .breadcrumb-wrapper {
    margin: 0 0 20px; } }
.page-header {
  display: none; }

.breadcrumb .breadcrumb__sep:before {
  content: "\f142";
  font-family: "Material Design Icons";
  font-size: 16px;
  margin: 0px 8px; }

.breadcrumb__sep {
  position: relative;
  display: inline-block;
  font-size: 0;
  line-height: normal; }

@media screen and (max-width: 480px) {
  .breadcrumb-wrapper span.title, .breadcrumb-wrapper .breadcrumb {
    width: auto;
    text-align: center;
    line-height: 20px;
    float: none;
    display: inline-block;
    vertical-align: top; }

  .breadcrumb-wrapper .breadcrumb {
    margin-top: 10px; } }
  @media screen and (max-width: 480px) and (max-width: 480px) {
    .breadcrumb-wrapper .breadcrumb {
      margin: 10px 0 0;
      font-size: 16px;
      float: none;
      display: inline-block;
      vertical-align: top;
      width: 100%; } }

.breadcrumb-img {
  position: relative; }

.breadcrumb-wrap {
  color: #ffffff;
  float: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
  width: 100%; }
  @media screen and (max-width: 1200px) {
    .breadcrumb-wrap {
      padding: 130px 0 0; } }
  @media screen and (max-width: 991px) {
    .breadcrumb-wrap {
      padding: 40px 0;
      line-height: 18px; } }
  @media screen and (max-width: 991px) {
    .breadcrumb-wrap {
      padding: 10px 0; } }

@media screen and (max-width: 991px) {
  .breadcrumb-wrapper span.title, .breadcrumb-wrapper .h1 {
    margin: 0; } }
.breadcrumb-wrap, .breadcrumb a, .breadcrumb-wrap a, .breadcrumb-wrap *, .breadcrumb-wrapper .breadcrumb-wrap span.title, .breadcrumb-wrapper .breadcrumb-wrap .h1, .breadcrumb .breadcrumb__sep:before {
  color: #ffffff; }

/*============================================================================
  #Custom Section
==============================================================================*/
/*** Isotop filter****/
.isotop_filter_wrap {
  float: left;
  width: 100%;
  position: relative; }

.tt-product-items.animatedcontainer {
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

.tt-product-filters ul li {
  list-style: none;
  display: inline;
  margin-right: 5px; }

/*************/
/**left filter**/
.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
  -ms-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(0, 0, 0, 0.3);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden; }

.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed; }

.js-off-canvas-overlay.is-closable {
  cursor: pointer; }

.js-off-canvas-overlay.is-visible {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible; }

.js-off-canvas-overlay {
  z-index: 8888; }

.off-canvas-wrapper {
  position: relative;
  overflow: hidden; }

.off-canvas.position-left.is-open {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

.off-canvas.is-transition-overlap.is-open {
  -webkit-box-shadow: 0;
  -moz-box-shadow: 0;
  -ms-box-shadow: 0;
  -o-box-shadow: 0;
  box-shadow: 0; }

.off-canvas.position-left {
  width: 320px;
  -webkit-transform: translateX(-320px);
  -moz-transform: translateX(-320px);
  -ms-transform: translateX(-320px);
  -o-transform: translateX(-320px);
  transform: translateX(-320px);
  overflow-y: initial; }
  @media screen and (max-width: 480px) {
    .off-canvas.position-left {
      width: 280px; } }

.off-canvas.is-transition-overlap {
  z-index: 8889; }

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 270px;
  -webkit-transform: translateX(-270px);
  -moz-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  -o-transform: translateX(-270px);
  transform: translateX(-270px); }

a.filter-right {
  float: right;
  line-height: 2.1;
  font-size: 15px;
  text-transform: capitalize; }

a.filter-right i {
  padding-left: 10px; }

a.filter-left i {
  padding-right: 10px; }

a.filter-left {
  line-height: 2.1;
  font-size: 15px;
  text-transform: capitalize; }

.full_width.wrap_left_filter .view-mode.filter-grid-list.grid__item, .full_width.wrap_left_filter .sorting_wrapper {
  float: right;
  padding-left: 15px; }
  @media screen and (max-width: 480px) {
    .full_width.wrap_left_filter .view-mode.filter-grid-list.grid__item, .full_width.wrap_left_filter .sorting_wrapper {
      padding-left: 0; } }

.full_width.right_filter.collection-sorting {
  float: left;
  margin-left: 15px; }
  @media screen and (max-width: 480px) {
    .full_width.right_filter.collection-sorting {
      margin-left: 0; } }

.full_width.left_filter.collection-sorting {
  float: right; }

.full_width .sorting_wrapper .btn.dropdown-toggle, .full_width .sorting_wrapper .dropdown-toggle.btn--secondary, .full_width .sorting_wrapper input.dropdown-toggle[type="submit"], .full_width .sorting_wrapper .dropdown-toggle.btn--secondary, .full_width .sorting_wrapper input.dropdown-toggle[type="submit"], .full_width .sorting_wrapper .dropdown-toggle.btn--secondary, .full_width .sorting_wrapper input.dropdown-toggle[type="submit"] {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #e5e5e5;
  color: #000000;
  padding: 7px 22px 7px 10px; }

.sorting_wrapper button > i {
  font-size: 8px;
  left: auto;
  position: absolute;
  right: 8px;
  top: 12px; }

.off-canvas.position-right.is-open {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px); }

.off-canvas.position-right {
  width: 320px;
  -webkit-transform: translateX(350px);
  -moz-transform: translateX(350px);
  -ms-transform: translateX(350px);
  -o-transform: translateX(350px);
  transform: translateX(350px);
  overflow-y: initial; }
  @media screen and (max-width: 480px) {
    .off-canvas.position-right {
      width: 300px; } }

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 270px;
  -webkit-transform: translateX(-270px);
  -moz-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  -o-transform: translateX(-270px);
  transform: translateX(-270px); }

.off-canvas {
  position: fixed;
  z-index: 12;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #FFF;
  overflow: auto; }

.off-canvas .collection_sidebar ul,
.off-canvas .collection_sidebar .refined-widgets {
  margin: 0 0 15px; }
  @media screen and (max-width: 991px) {
    .off-canvas .collection_sidebar ul,
    .off-canvas .collection_sidebar .refined-widgets {
      margin: 0; } }

.off-canvas .collection_sidebar #shopify-section-sidebar-bestsellers {
  border-top: 1px solid #e5e5e5;
  float: left;
  width: 100%;
  padding: 10px 0; }

.off-canvas .collection_sidebar #shopify-section-sidebar-promoimage {
  border-top: 1px solid #e5e5e5;
  float: left;
  width: 100%; }

@media screen and (max-width: 991px) {
  .off-canvas .collection_sidebar .widget {
    border: none;
    padding: 0; }

  .off-canvas .shopify-section#shopify-section-sidebar-bestsellers {
    margin: 0; } }
/******* Product Categories ******/
.ttproduct-categories-wrap {
  float: left;
  width: 100%; }

/****category block****/
.list-collection-products .pickgradient-products {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  display: inline-block;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }

.list-collection-products .pickgradient-products > a.grid-link {
  float: left;
  width: 100%;
  position: relative; }

/****************/
.countdownHolder {
  width: 184px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -3px; }

.position {
  display: inline-block;
  height: 1.6em;
  overflow: hidden;
  position: relative;
  width: 1.05em; }

.digit {
  position: absolute;
  display: block;
  width: 1em;
  background-color: #444;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  -khtml-border-radius: 0.2em;
  border-radius: 0.2em;
  text-align: center;
  color: #fff;
  letter-spacing: -1px; }

.digit.static {
  -webkit-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.35);
  -moz-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.35);
  -ms-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.35);
  -o-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.35);
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.35);
  background-image: linear-gradient(bottom, #3a3a3a 50%, #444444 50%);
  background-image: -o-linear-gradient(bottom, #3a3a3a 50%, #444444 50%);
  background-image: -moz-linear-gradient(bottom, #3a3a3a 50%, #444444 50%);
  background-image: -webkit-linear-gradient(bottom, #3a3a3a 50%, #444444 50%);
  background-image: -ms-linear-gradient(bottom, #3a3a3a 50%, #444444 50%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #3a3a3a), color-stop(0.5, #444444)); }

/**
 * You can use these classes to hide parts
 * of the countdown that you don't need.
 */
.countDays {
  /* display:none !important;*/ }

.countDiv0 {
  /* display:none !important;*/ }

.countDiv {
  display: inline-block;
  width: 16px;
  height: 1.6em;
  position: relative; }

.countDiv:before,
.countDiv:after {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #444;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.5em;
  -webkit-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  -moz-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  -ms-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  -o-box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: ''; }

.countDiv:after {
  top: 0.9em; }

#note {
  color: #666666;
  font-size: 12px;
  margin: 0 auto;
  padding: 4px;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3); }

.flip-countdown-text {
  margin-top: -7px;
  font-size: 20px;
  color: #24ceff; }

.flip-countdown {
  width: 100%;
  float: left; }

.fixed-content .product-single__header .flip-countdown {
  margin: 8px auto 12px;
  position: relative;
  float: left;
  width: auto;
  position: static;
  padding: 0 10px 0 8px; }

.fixed-content .flip-countdown.simple-countdown {
  margin: 0 0 0 12px;
  position: relative;
  float: left;
  width: auto;
  position: static;
  padding: 0 10px 0 8px; }
  @media screen and (max-width: 991px) {
    .fixed-content .flip-countdown.simple-countdown {
      margin: 20px 0 10px; } }
  @media screen and (max-width: 767px) {
    .fixed-content .flip-countdown.simple-countdown {
      margin: 0 0 0 20px; } }
  @media screen and (max-width: 481px) {
    .fixed-content .flip-countdown.simple-countdown {
      margin: 0 0 0 15px; } }
  @media screen and (max-width: 440px) {
    .fixed-content .flip-countdown.simple-countdown {
      margin: 15px 0 10px; } }

.design_2 .fixed-content .flip-countdown.simple-countdown {
  border-radius: 25px; }

#shopify-section-sidebar-tag-filters aside.sidebar-tag {
  margin: 0;
  float: left;
  width: 100%; }

@media screen and (max-width: 991px) {
  #shopify-section-sidebar-tag-filters {
    margin-top: 0; }

  .flip-countdown {
    -ms-flex-direction: column;
    flex-direction: column; }

  .flip-countdown > *:not(:first-child) {
    margin-top: 15px; } }
.flip-countdown .time {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  position: relative;
  height: 44px;
  width: 48px;
  margin-right: 5px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.flip-countdown .count {
  background: #000;
  color: #fff;
  display: block;
  font-size: 23px;
  line-height: 44px;
  font-weight: 500;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }

.flip-countdown .count.top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: 50%;
  transform-origin: 50% 100%; }

.flip-countdown .count.bottom {
  background: #000;
  line-height: 0;
  height: 50%;
  top: 50%;
  transform-origin: 50% 0; }

.flip-countdown .label {
  font-size: 14px;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  color: #000;
  padding: 0;
  font-weight: 400;
  text-transform: capitalize; }

.flip-countdown .count.curr.top {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  z-index: 3; }

.flip-countdown .count.next.bottom {
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -o-transform: rotateX(90deg);
  transform: rotateX(90deg);
  z-index: 2; }

.flip-countdown .flip .count.curr.top {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -o-transform: rotateX(-90deg);
  transform: rotateX(-90deg); }

.flip-countdown .flip .count.next.bottom {
  -webkit-transition: all 250ms ease-in-out 250ms;
  -moz-transition: all 250ms ease-in-out 250ms;
  -ms-transition: all 250ms ease-in-out 250ms;
  -o-transition: all 250ms ease-in-out 250ms;
  transition: all 250ms ease-in-out 250ms;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.left-txt, .time-txt {
  display: none; }

.flip-countdown.simple-countdown {
  position: absolute;
  top: 10px;
  bottom: auto;
  left: 10px;
  right: 10px;
  width: calc(100% - 20px);
  -webkit-width: calc(100% - 20px);
  text-align: center;
  border: 1px solid #f0e6d7;
  padding: 0;
  margin: 0 auto;
  background: #fff;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 767px) {
    .flip-countdown.simple-countdown {
      top: auto;
      bottom: 47px; } }

@media screen and (max-width: 767px) {
  .style2 .flip-countdown.simple-countdown {
    bottom: 80px; }

  .style2 .product-wrapper:hover .flip-countdown.simple-countdown {
    bottom: 80px; } }
.flip-countdown.simple-countdown .countdown-icon {
  height: 40px;
  width: 40px;
  float: none;
  display: inline-block;
  vertical-align: top; }
  @media screen and (max-width: 1199px) {
    .flip-countdown.simple-countdown .countdown-icon {
      width: 35px; } }
  @media screen and (max-width: 480px) {
    .flip-countdown.simple-countdown .countdown-icon {
      width: 28px; } }

.flip-countdown.simple-countdown .countdown-icon i {
  color: #111;
  line-height: 40px;
  font-size: 24px; }
  @media screen and (max-width: 480px) {
    .flip-countdown.simple-countdown .countdown-icon i {
      font-size: 20px; } }

.flip-countdown.simple-countdown .countdown-container > span::after {
  color: #000;
  content: ":";
  font-size: 20px;
  position: absolute;
  right: -10px;
  font-weight: normal;
  top: -2px; }

.large--one-fifth .flip-countdown.simple-countdown .countdown-container > span::after {
  right: -8px; }

.flip-countdown.simple-countdown .countdown-container span::last-child::after {
  display: none; }

.flip-countdown.simple-countdown .countdown-container > span:last-child::after {
  display: none; }

.flip-countdown.simple-countdown .countdown-container span.second {
  color: #f13340; }

.flip-countdown.simple-countdown .countdown-container span {
  display: inline-block;
  float: none;
  vertical-align: top;
  height: 40px;
  margin: 0 15px 0 0;
  max-width: 2em;
  position: relative;
  text-align: center;
  width: 30px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #000; }
  @media screen and (max-width: 767px) {
    .flip-countdown.simple-countdown .countdown-container span {
      font-size: 14px;
      max-width: 2em;
      width: 25px; } }
  @media screen and (max-width: 480px) {
    .flip-countdown.simple-countdown .countdown-container span {
      width: 25px; } }

.large--one-fifth .flip-countdown.simple-countdown .countdown-container span {
  margin: 0 10px 0 0; }

.large--one-sixth .flip-countdown.simple-countdown .countdown-container span {
  width: 20px;
  padding: 0;
  font-size: 14px; }

.flip-countdown.simple-countdown .countdown-container span:last-child {
  margin: 0; }

.flip-countdown.simple-countdown .countdown-container {
  float: none;
  display: inline-block;
  width: auto;
  text-align: center;
  margin: 0; }

.product-list .flip-countdown.simple-countdown {
  display: none; }

@media screen and (max-width: 767px) {
  .style1 .flip-countdown.simple-countdown .countdown-container {
    top: auto;
    bottom: 70px !important; }

  .style1 .product-wrapper:hover .flip-countdown.simple-countdown .countdown-container {
    top: auto; } }
.product-wrapper:hover .flip-countdown.simple-countdown {
  top: -52px; }
  @media screen and (max-width: 767px) {
    .product-wrapper:hover .flip-countdown.simple-countdown {
      bottom: 47px;
      top: auto; } }

.flip-countdown .countdown-container span.time-txt, .flip-countdown .countdown-container span.left-txt {
  display: none; }

.product-list .product-wrapper:hover .product-description .flip-countdown.simple-countdown {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

/************************************************/
#shopify-section-sidebar-bestsellers .widget_top_rated_products .top-products-detail {
  padding-right: 0; }

.widget_top_rated_products .top-products-detail {
  margin: 8px 0 0; }

.widget_top_rated_products .top-products .owl-nav {
  display: block;
  float: right;
  width: auto;
  position: absolute;
  right: -10px;
  left: auto;
  top: -42px;
  bottom: auto; }
  @media screen and (max-width: 1199px) {
    .widget_top_rated_products .top-products .owl-nav {
      top: -35px; } }
  @media screen and (max-width: 991px) {
    .widget_top_rated_products .top-products .owl-nav {
      right: 40px;
      top: -40px; } }

.widget_top_rated_products .top-products .owl-nav div {
  float: none;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  font-size: 0;
  height: 30px;
  width: 30px;
  position: relative;
  border: none; }

.widget_top_rated_products .top-products .owl-nav .owl-prev:hover,
.widget_top_rated_products .top-products .owl-nav .owl-next:hover {
  background: none; }

.widget_top_rated_products .top-products .owl-nav .owl-prev::after {
  content: "\f141";
  font-size: 24px;
  line-height: 30px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  text-align: center;
  margin: auto;
  font-family: "Material Design Icons";
  color: #000; }

.widget_top_rated_products .top-products .owl-nav .owl-next::after {
  content: "\f142";
  font-size: 24px;
  line-height: 30px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  text-align: center;
  margin: auto;
  font-family: "Material Design Icons";
  color: #000; }

@media screen and (max-width: 991px) {
  #shopify-section-sidebar-bestsellers .widget_top_rated_products .top-products .owl-nav .owl-prev::after,
  #shopify-section-sidebar-bestsellers .widget_top_rated_products .top-products .owl-nav .owl-next::after {
    font-size: 20px;
    line-height: 28px; } }
.product-detail-section {
  text-align: left; }

.quickview-template {
  bottom: 0;
  left: 0;
  outline: 0 none;
  overflow-x: auto;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
  display: none; }

.quick-view {
  bottom: 0;
  left: 0;
  outline: 0 none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
  display: none; }

.quick-view .product-detail-section p.dt-sc-button {
  margin: 20px 0 0px 0; }

.quick-view form .actions button {
  font-weight: 400;
  text-transform: uppercase;
  float: left;
  padding: 12px 16px;
  padding-left: 44px;
  text-transform: capitalize; }

.quick-view .product-shop.summary .details {
  float: left;
  width: 100%; }

.quick-view .product-shop.summary .details label {
  float: left;
  margin-right: 15px;
  width: 70px;
  margin-top: 10px;
  display: none; }

.quick-view .product-shop.summary h2.product-title, .quick-view .product-shop.summary .product-title.h2 {
  padding-bottom: 10px;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  float: left;
  width: 100%;
  line-height: 26px; }

.quick-view .product-detail-section p.dt-sc-button {
  margin: 20px 0 0px 0;
  float: left; }

.quick-view .product-shop .qnt_wrap .button:hover {
  background: #eeeeee none repeat scroll 0 0; }

.quick-view .product-shop.summary select {
  width: 100%;
  padding: 12px 10px;
  background-color: #fff; }

.quick-view.open-in {
  visibility: visible;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: opacity .4s,-webkit-transform .4s;
  -moz-transition: opacity .4s,-webkit-transform .4s;
  -ms-transition: opacity .4s,-webkit-transform .4s;
  -o-transition: opacity .4s,-webkit-transform .4s;
  transition: opacity .4s,-webkit-transform .4s;
  -webkit-transition: transform .4s,opacity .4s;
  -moz-transition: transform .4s,opacity .4s;
  -ms-transition: transform .4s,opacity .4s;
  -o-transition: transform .4s,opacity .4s;
  transition: transform .4s,opacity .4s;
  -webkit-transition: transform .4s,opacity .4s,-webkit-transform .4s;
  -moz-transition: transform .4s,opacity .4s,-webkit-transform .4s;
  -ms-transition: transform .4s,opacity .4s,-webkit-transform .4s;
  -o-transition: transform .4s,opacity .4s,-webkit-transform .4s;
  transition: transform .4s,opacity .4s,-webkit-transform .4s; }

.ajax-success-modal .overlay {
  background: rgba(45, 45, 50, 0.8);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0; }

.quick-view .content {
  background: #fff;
  z-index: 99;
  display: block;
  margin: 40px auto;
  position: relative;
  width: 50%;
  padding: 50px 15px 15px; }
  @media screen and (max-width: 1200px) {
    .quick-view .content {
      width: 70%; } }

.ajax-success-modal .overlay {
  z-index: 99; }

._quick-view-content {
  display: none; }

#fancybox-close,
.search-close, #popupBoxClose {
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/hover.png?139) no-repeat;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  position: absolute;
  top: 0px;
  right: 0px; }

.Site-navigation .horizontal-mega-menu ul.mm-submenu.tree li {
  padding: 7px 20px !important; }

/* ajax */
.ajax-success-modal .content, .ajax-error-modal .modal-inner {
  padding: 40px;
  background: #fff;
  bottom: auto;
  left: 0;
  position: fixed;
  right: 0;
  top: 50% !important;
  width: 588px;
  float: left;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  z-index: 999; }
  @media screen and (max-width: 1200px) {
    .ajax-success-modal .content, .ajax-error-modal .modal-inner {
      padding: 20px; } }
  @media screen and (max-width: 480px) {
    .ajax-success-modal .content, .ajax-error-modal .modal-inner {
      padding: 10px; } }
  @media screen and (max-width: 480px) {
    .ajax-success-modal .content, .ajax-error-modal .modal-inner {
      width: 270px; } }
  @media screen and (max-width: 767px) {
    .ajax-success-modal .content, .ajax-error-modal .modal-inner {
      width: 450px; } }
  @media screen and (max-width: 480px) {
    .ajax-success-modal .content, .ajax-error-modal .modal-inner {
      width: 290px; } }

.ajax-success-modal .ajax-left {
  float: left;
  width: 40%; }

.ajax-product-image {
  width: auto;
  float: left;
  max-width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 480px) {
    .ajax-product-image {
      float: none;
      display: inline-block;
      vertical-align: top; } }

@media screen and (max-width: 480px) {
  .ajax-success-modal .ajax-left {
    width: 80%;
    padding: 0 10px;
    text-align: left; } }

.ajax-product-title {
  margin-bottom: 7px;
  color: #000;
  font-family: Lato, helvetica, Sans-Serif;
  font-size: 16px;
  margin-top: 5px;
  text-transform: capitalize; }
  @media screen and (max-width: 480px) {
    .ajax-product-title {
      font-size: 14px; } }

.ajax-right .ajax_price {
  font-size: 16px;
  font-weight: 300;
  float: left;
  width: 100%;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    .ajax-right .ajax_price {
      margin-bottom: 5px; } }

.ajax-success-modal .success-message .btn, .ajax-success-modal .success-message .btn--secondary, .ajax-success-modal .success-message input[type="submit"] {
  line-height: 20px;
  padding: 9px 15px;
  text-transform: capitalize; }
  @media screen and (max-width: 767px) {
    .ajax-success-modal .success-message .btn, .ajax-success-modal .success-message .btn--secondary, .ajax-success-modal .success-message input[type="submit"] {
      width: 100%; } }
  @media screen and (max-width: 480px) {
    .ajax-success-modal .success-message .btn, .ajax-success-modal .success-message .btn--secondary, .ajax-success-modal .success-message input[type="submit"] {
      font-size: 13px;
      padding: 8px 14px; } }

.ajax-right {
  float: left;
  width: 60%;
  padding: 0 0 0 15px;
  text-align: left; }
  @media screen and (max-width: 480px) {
    .ajax-right {
      width: 100%;
      padding: 0 10px;
      margin: 20px 0 0; } }

.ajax-success-modal .added-to-cart.info, .ajax-success-modal .added-to-wishlist.info {
  font-size: 16px;
  text-align: left;
  text-transform: capitalize;
  font-weight: normal;
  margin: 0;
  padding: 0px 0 20px 0px; }

.ajax-success-modal .content {
  padding: 0; }

.ajax-success-modal .added-to-cart.info {
  color: white;
  font: 600 16px/18px Lato, helvetica, Sans-Serif;
  background: #4cbb6c;
  text-align: center;
  padding: 10px 30px 10px 15px; }

.ajax-success-modal .added-to-cart.info i {
  padding-right: 5px; }

.ajax-success-modal .content-wrap {
  padding: 40px;
  float: left;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .ajax-success-modal .content-wrap {
      padding: 20px 15px; } }

.ajax-success-modal .close-modal .mdi {
  font-size: 20px;
  color: #fff;
  line-height: 22px; }

.ajax-success-modal .close-modal .mdi::before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.ajax-success-modal .close-modal .mdi:hover::before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.ajax-right .ajax_price .visually-hidden {
  font-size: 14px;
  width: 100%;
  float: left;
  margin: 0 0 10px; }

/***/
.grid-view-item .tooltip-label {
  display: none; }

/*----------- brand logo -------------------*/
.template-index .main-content .shopify-section.brand-logo {
  margin: 45px 0 55px; }
  @media screen and (max-width: 1199px) {
    .template-index .main-content .shopify-section.brand-logo {
      margin: 25px 0; } }
  @media screen and (max-width: 480px) {
    .template-index .main-content .shopify-section.brand-logo {
      margin: 15px 0; } }

.brand-bar .brand-bar__image {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
  -webkit-transition: all 200ms ease-in-out 0s;
  -moz-transition: all 200ms ease-in-out 0s;
  -ms-transition: all 200ms ease-in-out 0s;
  -o-transition: all 200ms ease-in-out 0s;
  transition: all 200ms ease-in-out 0s; }

.brand-bar .brand-bar__image:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.tt-brand_slider.owl-carousel img {
  display: block;
  width: auto;
  max-width: 100%;
  text-align: center;
  margin: 0 auto; }

.tt-brand_slider:hover .owl-nav {
  display: block; }

#brands_list_slider .brand-bar__item {
  padding: 15px;
  float: left;
  width: 100%; }

/**/
.shop_table.cart_table td, .shop_table.cart_table th {
  padding: 15px;
  text-align: center;
  color: #222222; }

.site-navigation {
  border-top: 1px solid #e5e5e5;
  -webkit-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.1);
  -ms-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.1);
  -o-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px rgba(50, 50, 50, 0.1);
  display: inline-block;
  width: 100%; }

.shop_table.cart_table .cart__mini-labels {
  display: none; }

.shop_table.cart_table .js-qty {
  text-align: center;
  float: none;
  margin: 0 auto; }

#template-index .site-navigation {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

.page-header {
  display: none; }

.breadcrumb__sep {
  position: relative;
  display: inline-block;
  font-size: 0; }

.qty-box-set .qtyminus, .qty-box-set .qtyplus, .qty-box-set .quantity {
  border: none;
  width: 40px;
  height: 41px;
  line-height: 41px;
  padding: 0;
  float: left;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  margin: 0; }

.qty-box-set .quantity {
  -webkit-appearance: textfield !important;
  appearance: textfield !important;
  -moz-appearance: textfield; }

table.shop_table.cart_table tfoot {
  display: none; }

.inc.button.qtyplus {
  border-bottom: 1px solid #e5e5e5; }

.qty-box-set .qtyplus, .qty-box-set .qtyminus {
  width: 20px;
  height: 22px;
  line-height: 18px; }

.qty-box-set .qtyminus {
  border-right: none; }

.qnt_wrap {
  float: left;
  width: 20px;
  border-left: 1px solid #e5e5e5;
  height: 41px;
  overflow: hidden; }

/* Adds a box around the numeric value in Safari and Chrome */
.qty-box-set input[type=number]::-webkit-textfield-decoration-container {
  background: #efefef;
  -webkit-appearance: none; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* Removes leftover margin */ }

.qty-box-setinput [type=number]::-webkit-inner-spin-button,
.qty-box-set input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.qty-box-set {
  float: left;
  width: auto;
  border: 1px solid #e5e5e5;
  margin-right: 15px; }

.product-wrapper .product {
  display: block;
  margin-bottom: 0; }

ul.nav-tabs.jquery-tab-pager-tabbar {
  margin-bottom: 20px;
  border: none; }

.product_title .product_img {
  width: 100px; }

.qty-section.quantity-box .actions.hidden-md.hidden-xs.hidden-sm {
  display: none; }

#slidedown-cart .product-details .product-name > a {
  margin: 5px 0 !important; }

@media screen and (max-width: 1200px) {
  .TTProduct-Tab-container .tab-inner.tab-content.tab-container .owl-carousel .owl-stage-outer, #specialproduct_products_slider .owl-carousel .owl-stage-outer {
    margin: 0; }

  .has_bg .TTProduct-Tab-container .tab-inner.tab-content.tab-container .owl-carousel .owl-stage-outer, .has_bg #specialproduct_products_slider .owl-carousel .owl-stage-outer {
    margin: 0; }

  .has_bg .TTProduct-Tab-container .tab-inner.tab-content.tab-container, .has_bg #specialproduct_products_slider {
    padding: 0;
    margin: 0; } }
  @media screen and (max-width: 1200px) and (max-width: 992px) {
    .has_bg .TTProduct-Tab-container .tab-inner.tab-content.tab-container, .has_bg #specialproduct_products_slider {
      padding: 0; } }

@media screen and (max-width: 768px) {
  .has_bg .TTProduct-Tab-container .tab-inner.tab-content.tab-container, .has_bg #specialproduct_products_slider {
    padding: 0; } }
/*============================================================================
  #Site Footer
==============================================================================*/
.template-index .site-footer {
  margin: 0; }

.site-footer a:hover, .site-footer .h1, .site-footer .h2, .site-footer .h3, .site-footer .h4, .site-footer .h5,
.site-footer .h6, .site-footer h1, .site-footer .h1, .site-footer h2, .site-footer .h2, .site-footer h3, .site-footer .h3, .site-footer h4, .site-footer .h4, .site-footer h5, .site-footer .h5, .site-footer h6, .site-footer .h6 {
  color: #ffffff; }

.site-footer {
  padding: 0;
  color: #cccccc;
  float: left;
  width: 100%;
  margin: 30px 0 0; }
  @media screen and (max-width: 991px) {
    .site-footer {
      margin: 0; } }

.footer-wrap .follow-us-outer li a > span {
  font-size: 20px; }

h5.widget-title, .widget-title.h5 {
  text-transform: capitalize;
  font: 400 20px/24px Lato, sans-serif; }

footer .footer-column h5, footer .footer-column .h5 {
  cursor: pointer;
  font: italic 700 20px/22px Lato, sans-serif;
  letter-spacing: 1px;
  margin: 0 0 20px;
  position: relative;
  text-transform: capitalize;
  float: left;
  width: 100%; }
  @media screen and (max-width: 991px) {
    footer .footer-column h5, footer .footer-column .h5 {
      margin: 0;
      font-size: 16px; } }

.footer-bottom-wrap .footer-bottom .copyright,
.footer-bottom-wrap .footer-bottom .copyright a {
  color: #cccccc; }

.footer-bottom a:hover {
  color: #ffffff; }

.footer-bottom .copyright a:hover {
  color: #ffffff; }

/*------------------ footer-style-1 --------------*/
.main-content .shopify-section#shopify-section-footer-model-1 {
  margin-bottom: 0; }

.footer-model-1 .text-center.copyright {
  float: left;
  width: 100%;
  margin: 5px; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .text-center.copyright {
      float: none; } }

.footer-model-1 .footer-bottom-wrap .footer-bottom {
  padding: 12px 0 20px; }

.ttinput_newsletter button span.icon.icon-chevron-right {
  display: none; }
  @media screen and (max-width: 480px) {
    .ttinput_newsletter button span.icon.icon-chevron-right {
      display: block; } }

.footer-model-1 .footer-top {
  float: left;
  width: 100%;
  position: relative;
  margin: 0 0 -60px;
  z-index: 1;
  padding: 0 10px; }
  @media screen and (max-width: 767px) {
    .footer-model-1 .footer-top {
      padding: 0; } }

.footer-model-1 .block_newsletter {
  float: left;
  width: 100%;
  position: relative;
  padding: 35px 90px;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  -khtml-border-radius: 70px;
  border-radius: 70px; }
  @media screen and (max-width: 1199px) {
    .footer-model-1 .block_newsletter {
      padding: 35px 50px; } }
  @media screen and (max-width: 991px) {
    .footer-model-1 .block_newsletter {
      padding: 10px 20px 20px; } }
  @media screen and (max-width: 480px) {
    .footer-model-1 .block_newsletter {
      padding: 15px 10px 20px;
      -webkit-border-radius: 40px;
      -moz-border-radius: 40px;
      -khtml-border-radius: 40px;
      border-radius: 40px; } }

.footer-model-1 .block_newsletter .tt-content {
  float: left; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .block_newsletter .tt-content {
      padding: 0 0 8px; } }

.footer-model-1 .block_newsletter .block_content {
  float: right; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .block_newsletter .block_content {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: 70%; } }
  @media screen and (max-width: 481px) {
    .footer-model-1 .block_newsletter .block_content {
      width: 100%;
      padding: 0; } }

.footer-model-1 .footer-cms .footer-desc {
  font: 400 14px/22px Poppins, sans-serif;
  margin: 10px 0;
  display: block !important; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .footer-cms .footer-desc {
      width: 70%;
      float: none;
      display: inline-block !important;
      vertical-align: top; } }
  @media screen and (max-width: 481px) {
    .footer-model-1 .footer-cms .footer-desc {
      width: 100%; } }

.footer-model-1 .block_newsletter .tt-content .news-title {
  font: italic 700 30px/50px Lato, sans-serif;
  padding: 0 0 0 55px;
  margin: 0;
  text-transform: capitalize; }
  @media screen and (max-width: 1199px) {
    .footer-model-1 .block_newsletter .tt-content .news-title {
      font-size: 26px; } }
  @media screen and (max-width: 991px) {
    .footer-model-1 .block_newsletter .tt-content .news-title {
      font-size: 30px;
      line-height: 38px;
      margin: 0;
      padding: 42px 0 0; } }
  @media screen and (max-width: 480px) {
    .footer-model-1 .block_newsletter .tt-content .news-title {
      font-size: 20px;
      line-height: 28px; } }

.footer-model-1 .block_newsletter .news-title::before {
  content: '\f1f0';
  font-size: 44px; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .block_newsletter .news-title::before {
      left: 0;
      right: 0;
      margin: auto; } }

.footer-model-1 .footer-top .block_newsletter .block_content form {
  margin: 0; }

.footer-model-1 .footer-container {
  float: left;
  width: 100%;
  padding: 150px 0 0;
  position: relative;
  background: #191919; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .footer-container {
      padding: 80px 0 0; } }

#shopify-section-footer-model-1 .footer-bottom-wrap {
  margin: 40px 0 0; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-1 .footer-bottom-wrap {
      margin: 20px 0 0; } }
  @media screen and (max-width: 481px) {
    #shopify-section-footer-model-1 .footer-bottom-wrap {
      margin: 10px 0 0; } }

#shopify-section-footer-model-1 .site-footer a {
  font: 400 14px/26px Poppins; }

.footer-model-1 .footer-wrap .footer-right .footer-column.newsletter .widget-title {
  margin: 7px 0; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .footer-wrap .footer-right .footer-column.newsletter .widget-title {
      margin: 0; } }

.footer-model-1 text-center.copyright small {
  line-height: 22px; }

.footer-model-1 .follow-us-outer {
  padding: 5px 0;
  float: left;
  width: 100%;
  position: relative;
  margin: 20px 0 0; }

.footer-model-1 .follow-us-outer.text-center::before {
  content: '';
  position: absolute;
  top: 0;
  margin: auto 0;
  bottom: 0;
  left: 0;
  right: auto;
  background: #2d2d2d;
  height: 1px;
  width: 100%; }

.footer-model-1 .footer-bottom {
  padding: 12px 0 20px; }

.footer-model-1 .footer-bottom-wrap .site-footer__payment-icons {
  float: left;
  width: 100%; }

.footer-model-1 .copyright.left {
  padding: 0; }
  @media screen and (max-width: 991px) {
    .footer-model-1 .copyright.left {
      padding: 0 15px; } }

.footer-model-1 .tt-desc {
  float: left;
  width: 100%;
  margin: 20px 0 0;
  display: block !important; }

.footer-model-1 .footer-wrap {
  padding: 0;
  border: none; }

.footer-model-1 .contact-us ul {
  margin: 0; }

.footer-model-1 .follow-us-outer li {
  width: auto;
  float: left;
  margin: 0 5px; }

.footer-model-1 .social-icons {
  display: inline-block;
  float: none;
  vertical-align: top;
  text-align: center;
  position: relative;
  background: #191919; }

#shopify-section-footer-model-1 .social-icons li a {
  display: inline-block;
  height: 36px;
  line-height: 35px;
  padding: 2px;
  width: 36px;
  margin: 0; }

.footer-model-1 .footer-content .footer-column ul li {
  margin: 0 0 10px; }

@media screen and (max-width: 991px) {
  .footer-model-1 .footer-cms {
    float: left;
    width: 100%;
    text-align: center; }

  .footer-model-1 .footer-cms .footer-logo {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 100%; }

  .footer-model-1 .footer-wrap .text-left {
    width: 100%;
    padding: 0 15px; }

  .footer-model-1 .footer-content .footer-column ul {
    margin: 10px 0 0 !important; }

  .footer-model-1 .follow-us-outer {
    text-align: center;
    width: 100%;
    padding: 0; }

  .footer-model-1 .payment-icons {
    float: left;
    margin: 5px 0;
    text-align: center;
    width: 100%; }

  .footer-model-1 .footer-wrap .footer-right .footer-column.newsletter .block_content {
    padding: 0 15px; } }
@media screen and (max-width: 480px) {
  .footer-model-1 .footer-wrap span.subscribe {
    display: none; }

  .footer-model-1 .footer-wrap .text-left {
    padding: 0; } }
/*-------------- footer-style-2 -------------*/
.main-content .shopify-section#shopify-section-footer-model-2 {
  margin: 0; }

.template-index .main-content .shopify-section#shopify-section-footer-model-2 {
  margin: 25px 0 0; }

#shopify-section-footer-model-2 .footer-cms.footer-column {
  float: left;
  width: 100%;
  text-align: center;
  margin: 0 0 25px; }

#shopify-section-footer-model-2 .footer-column {
  text-align: center; }

#shopify-section-footer-model-2 .footer-info-block.footer-column {
  padding: 2px 15px 0; }

#shopify-section-footer-model-2 footer .footer-column h5, #shopify-section-footer-model-2 footer .footer-column .h5, #shopify-section-footer-model-2 footer .footer-column .h5 {
  text-align: center;
  position: relative; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 footer .footer-column h5, #shopify-section-footer-model-2 footer .footer-column .h5, #shopify-section-footer-model-2 footer .footer-column .h5 {
      text-align: left; } }

#shopify-section-footer-model-2 footer .footer-column h5::after, #shopify-section-footer-model-2 footer .footer-column .h5::after, #shopify-section-footer-model-2 footer .footer-column .h5::after {
  font-style: normal; }

@media screen and (min-width: 992px) {
  #shopify-section-footer-model-2 footer .footer-column h5::before, #shopify-section-footer-model-2 footer .footer-column .h5::before, #shopify-section-footer-model-2 footer .footer-column .h5::before {
    background: #333;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    width: 30px;
    height: 1px;
    content: ""; } }
#shopify-section-footer-model-2 .footer-column ul li {
  float: none;
  padding: 0 10px;
  vertical-align: top;
  width: auto;
  position: relative;
  display: inline-block; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-column ul li {
      float: left;
      width: 100%;
      padding: 0; } }

#shopify-section-footer-model-2 .contact-us .contact-detail .address i {
  top: 0;
  left: 35px; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .contact-us .contact-detail .address i {
      left: 0; } }

#shopify-section-footer-model-2 .footer-info-block.footer-column ul li {
  width: 100%;
  text-align: center; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-info-block.footer-column ul li {
      text-align: left; } }

@media screen and (min-width: 992px) {
  #shopify-section-footer-model-2 .site-footer .footer-column li a::before {
    background: #666 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    left: auto;
    margin: auto;
    position: absolute;
    right: -2px;
    top: 0;
    width: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; } }
#shopify-section-footer-model-2 .site-footer .footer-column li:last-child a::before {
  display: none; }

#shopify-section-footer-model-2 .site-footer .footer-info-block.footer-column a::before {
  display: none; }

@media screen and (min-width: 992px) {
  #shopify-section-footer-model-2 footer .footer-info-block.footer-column h5, #shopify-section-footer-model-2 footer .footer-info-block.footer-column .h5 {
    display: none; } }
#shopify-section-footer-model-2 .footer-column.block_newsletter .form-vertical .errors li {
  margin: 0; }

#shopify-section-footer-model-2 .footer-bottom-wrap .site-footer__payment-icons {
  float: right;
  width: auto; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-bottom-wrap .site-footer__payment-icons {
      width: 100%;
      float: none;
      display: inline-block;
      vertical-align: top; } }

#shopify-section-footer-model-2 .block_newsletter .ttinput_newsletter form,
#shopify-section-footer-model-3 .block_newsletter .ttinput_newsletter form {
  margin: 0; }

#shopify-section-footer-model-2 .footer-top .block_newsletter .tt-desc,
#shopify-section-footer-model-3 .footer-top .block_newsletter .tt-desc {
  display: inline-block;
  font: 400 14px/18px Poppins;
  float: left;
  width: 100%; }

#shopify-section-footer-model-2 .footer-top .block_newsletter .tt-content {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: auto; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-top .block_newsletter .tt-content {
      width: 100%; } }

#shopify-section-footer-model-2 .footer-top .block_newsletter .block_content {
  float: none;
  display: inline-block;
  vertical-align: top; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-top .block_newsletter .block_content {
      width: 75%;
      margin: 10px 0 0; } }
  @media screen and (max-width: 480px) {
    #shopify-section-footer-model-2 .footer-top .block_newsletter .block_content {
      padding: 0 15px;
      width: 100%; } }

#shopify-section-footer-model-3 .footer-top .block_newsletter .ttinput_newsletter {
  padding: 20px 0; }
  @media screen and (max-width: 480px) {
    #shopify-section-footer-model-3 .footer-top .block_newsletter .ttinput_newsletter {
      padding: 10px 0; } }

#shopify-section-footer-model-2 .site-footer .input-group.newsletter-input,
#shopify-section-footer-model-1 .site-footer .input-group.newsletter-input,
#shopify-section-footer-model-3 .site-footer .input-group.newsletter-input {
  border: none;
  padding-bottom: 0;
  float: left;
  width: 100%;
  position: relative; }

#shopify-section-footer-model-2 .footer-top .block_newsletter form .input-group .input-group-btn .btn, #shopify-section-footer-model-2 .footer-top .block_newsletter form .input-group .input-group-btn .btn--secondary, #shopify-section-footer-model-2 .footer-top .block_newsletter form .input-group .input-group-btn input[type="submit"],
#shopify-section-footer-model-1 .footer-top .block_newsletter form .input-group .input-group-btn .btn,
#shopify-section-footer-model-1 .footer-top .block_newsletter form .input-group .input-group-btn .btn--secondary,
#shopify-section-footer-model-1 .footer-top .block_newsletter form .input-group .input-group-btn input[type="submit"],
#shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn .btn,
#shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn .btn--secondary,
#shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn input[type="submit"] {
  position: absolute;
  left: auto;
  right: 9px;
  top: 4px;
  bottom: auto;
  padding: 8px 20px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }
  @media screen and (max-width: 480px) {
    #shopify-section-footer-model-2 .footer-top .block_newsletter form .input-group .input-group-btn .btn, #shopify-section-footer-model-2 .footer-top .block_newsletter form .input-group .input-group-btn .btn--secondary, #shopify-section-footer-model-2 .footer-top .block_newsletter form .input-group .input-group-btn input[type="submit"],
    #shopify-section-footer-model-1 .footer-top .block_newsletter form .input-group .input-group-btn .btn,
    #shopify-section-footer-model-1 .footer-top .block_newsletter form .input-group .input-group-btn .btn--secondary,
    #shopify-section-footer-model-1 .footer-top .block_newsletter form .input-group .input-group-btn input[type="submit"],
    #shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn .btn,
    #shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn .btn--secondary,
    #shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn input[type="submit"] {
      right: 7px;
      padding: 12px; } }

#shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn .btn, #shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn .btn--secondary, #shopify-section-footer-model-3 .block_newsletter form .input-group .input-group-btn input[type="submit"] {
  padding: 13px 12px; }

#shopify-section-footer-model-2 .footer-top .block_newsletter,
#shopify-section-footer-model-3 .footer-top .block_newsletter {
  padding: 35px 0;
  float: left;
  width: 100%;
  text-align: center; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-top .block_newsletter,
    #shopify-section-footer-model-3 .footer-top .block_newsletter {
      padding: 15px 0 20px; } }
  @media screen and (max-width: 480px) {
    #shopify-section-footer-model-2 .footer-top .block_newsletter,
    #shopify-section-footer-model-3 .footer-top .block_newsletter {
      padding: 10px 0px 20px; } }

#shopify-section-footer-model-3 .block_content .input-group-btn .subscribe {
  display: none; }

#shopify-section-footer-model-3 .ttinput_newsletter button span.icon.icon-chevron-right {
  display: block; }

#shopify-section-footer-model-2 .site-footer .footer-container {
  float: left;
  width: 100%; }

#shopify-section-footer-model-2 .follow-us-outer.text-center {
  padding: 0 0 20px;
  float: left;
  width: 100%; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .follow-us-outer.text-center {
      padding: 15px 0; } }

#shopify-section-footer-model-2 .footer-bottom .follow-us-outer.text-center {
  padding: 5px 0 5px; }

#shopify-section-footer-model-2 .block_newsletter .tt-content .news-title,
#shopify-section-footer-model-3 .block_newsletter .tt-content .news-title {
  font: italic 600 30px/50px Lato, sans-serif;
  padding-left: 50px;
  text-transform: capitalize;
  margin: 0; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .block_newsletter .tt-content .news-title,
    #shopify-section-footer-model-3 .block_newsletter .tt-content .news-title {
      font-size: 26px;
      line-height: 46px; } }
  @media screen and (max-width: 480px) {
    #shopify-section-footer-model-2 .block_newsletter .tt-content .news-title,
    #shopify-section-footer-model-3 .block_newsletter .tt-content .news-title {
      padding: 45px 0 0 0;
      font-size: 24px;
      line-height: 28px;
      margin: 0; } }

.footer-container .contact-us > ul li i {
  float: none;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  vertical-align: top;
  display: inline-block;
  left: 20px;
  top: 0;
  cursor: pointer; }
  @media screen and (max-width: 991px) {
    .footer-container .contact-us > ul li i {
      left: 0; } }

.footer-container .contact-us > ul li.email:hover i {
  color: #ffffff; }

.site-footer .footer-container .contact-us > ul li.email:hover a {
  color: #ffffff; }

#shopify-section-footer-model-2 .site-footer .footer-wrap {
  padding: 60px 0 0;
  background: #191919; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .site-footer .footer-wrap {
      padding: 30px 0 0; } }

#shopify-section-footer-model-2 .footer-bottom-wrap .footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #2d2d2d;
  text-align: center; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-bottom-wrap .footer-bottom {
      padding: 15px 0; } }

#shopify-section-footer-model-2 .footer-bottom-wrap .footer-bottom .copyright {
  float: left;
  width: auto;
  margin: 2px 0; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-bottom-wrap .footer-bottom .copyright {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: 100%; } }

#shopify-section-footer-model-2 .footer-bottom .follow-us-outer.text-center {
  padding: 0; }

#shopify-section-footer-model-2 .social-icons li a {
  display: inline-block;
  height: 36px;
  line-height: 35px;
  padding: 2px;
  width: 36px;
  margin: 0; }

#shopify-section-footer-model-2 .footer-wrap .footer-cms .footer-desc {
  float: left;
  font-size: 14px;
  line-height: 22px;
  margin: 25px 0 0;
  width: 100%;
  font-family: Poppins; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-2 .footer-wrap .footer-cms .footer-desc {
      display: block !important;
      padding: 0; } }

#shopify-section-footer-model-3 .footer-cms .footer-desc {
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-family: Poppins; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-cms .footer-desc {
      display: inline-block !important;
      float: none;
      vertical-align: top;
      width: 70%;
      padding: 0; } }
  @media screen and (max-width: 481px) {
    #shopify-section-footer-model-3 .footer-cms .footer-desc {
      width: 100%; } }

.site-footer input#Email::-webkit-input-placeholder {
  color: #ffffff; }

#shopify-section-footer-model-2 .site-footer a {
  font: 400 14px/26px Poppins;
  position: static; }

#shopify-section-footer-model-2 .contact-us .contact-address, #shopify-section-footer-model-2 .contact-us .phone {
  font: 400 14px/26px Poppins; }
  @media screen and (max-width: 1199px) {
    #shopify-section-footer-model-2 .contact-us .contact-address, #shopify-section-footer-model-2 .contact-us .phone {
      font-size: 14px; } }

@media screen and (max-width: 991px) {
  #shopify-section-footer-model-2 .footer-cms.footer-column {
    text-align: center !important;
    margin: 0 0 20px; } }
/*------- footer-style-3 ---------*/
.main-content .shopify-section#shopify-section-footer-model-3 {
  margin-bottom: 0; }

#shopify-section-footer-model-3 .footer-cms.footer-column {
  float: left;
  text-align: center;
  position: relative; }

@media screen and (min-width: 992px) {
  #shopify-section-footer-model-3 .footer-cms.footer-column::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: auto;
    right: 0;
    background: #2d2d2d;
    height: 100%;
    width: 1px; } }
#shopify-section-footer-model-3 .block_newsletter .block_content .input-group.newsletter-input {
  border: medium none; }

#shopify-section-footer-model-3 .block_newsletter form input[type="email"] {
  padding: 10px 65px 10px 15px; }

div#shopify-section-footer-model-3 .Newsletter-wrapper {
  padding: 75px 0; }

.template-index .main-content div#shopify-section-footer-model-3, .template-index div#shopify-section-footer-model-3 .Newsletter-wrapper {
  margin: 0; }

.template-index #shopify-section-footer-model-3 {
  margin: 0; }

#shopify-section-footer-model-3 {
  margin-top: 30px;
  float: left;
  width: 100%; }

#shopify-section-footer-model-3 .footer-cms.block_newsletter {
  padding: 30px 15px; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-cms.block_newsletter {
      padding: 20px 15px;
      border-bottom: 1px solid #2d2d2d; } }

#shopify-section-footer-model-3 .footer-cms.block_newsletter .footer-desc {
  padding: 0 0 20px;
  float: none;
  display: inline-block !important;
  vertical-align: top;
  width: 80%; }
  @media screen and (max-width: 1199px) {
    #shopify-section-footer-model-3 .footer-cms.block_newsletter .footer-desc {
      width: 100%; } }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-cms.block_newsletter .footer-desc {
      width: 60%;
      padding: 0 0 10px; } }
  @media screen and (max-width: 481px) {
    #shopify-section-footer-model-3 .footer-cms.block_newsletter .footer-desc {
      width: 100%; } }

#shopify-section-footer-model-3 .site-footer .footer-wrap {
  float: left;
  width: 100%;
  background-color: #191919; }

@media screen and (min-width: 992px) {
  #shopify-section-footer-model-3 .footer-menu .widget-title {
    display: none; } }
#shopify-section-footer-model-3 .footer-column.footer-menu ul li {
  width: auto;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 0 20px 0 0;
  position: relative; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-column.footer-menu ul li {
      width: 100%;
      float: left;
      padding: 0;
      margin: 0 0 5px; } }

@media screen and (min-width: 992px) {
  #shopify-section-footer-model-3 .footer-column.footer-menu ul li::after {
    content: '';
    position: absolute;
    left: auto;
    right: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-right: 1px solid; }

  #shopify-section-footer-model-3 .footer-column.footer-menu ul li:last-child::after {
    display: none; } }
#shopify-section-footer-model-3 .footer-column.footer-menu {
  float: left;
  width: 100%;
  text-align: center; }

#shopify-section-footer-model-3 .social-icons li a {
  height: 25px;
  width: 25px;
  line-height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

#shopify-section-footer-model-3 .text-center.copyright {
  float: left;
  width: 100%;
  margin: 8px 0 5px; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .text-center.copyright {
      margin: 20px 0 0; } }

#shopify-section-footer-model-3 .footer-bottom-wrap .site-footer__payment-icons {
  width: 100%; }

#shopify-section-footer-model-3 .follow-us-outer.text-center {
  float: left;
  width: 100%;
  padding: 0 0 20px; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .follow-us-outer.text-center {
      padding: 20px 0; } }

#shopify-section-footer-model-3 .footer-column ul li {
  text-align: center; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-column ul li {
      text-align: left; } }

#shopify-section-footer-model-3 .contact-us .contact-detail .address i {
  left: 15px;
  top: 0; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .contact-us .contact-detail .address i {
      left: 0; } }

#shopify-section-footer-model-3 .footer-bottom-wrap .footer-bottom {
  border-top: 1px solid #2d2d2d;
  padding: 30px 0 25px; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-bottom-wrap .footer-bottom {
      padding: 0;
      border: none; } }

#shopify-section-footer-model-3 .grid, #shopify-section-footer-model-3 .grid--rev, #shopify-section-footer-model-3 .grid--full {
  text-align: left !important;
  float: left;
  width: 100%;
  padding: 60px 0 50px; }
  @media screen and (max-width: 1300px) {
    #shopify-section-footer-model-3 .grid, #shopify-section-footer-model-3 .grid--rev, #shopify-section-footer-model-3 .grid--full {
      padding: 40px 0; } }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .grid, #shopify-section-footer-model-3 .grid--rev, #shopify-section-footer-model-3 .grid--full {
      padding: 25px 0 0; } }

#shopify-section-footer-model-3 .footer-desc {
  float: left;
  width: 100%;
  padding: 0 0 20px 0;
  text-align: center; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-desc {
      padding: 0 0 10px 0; } }

#shopify-section-footer-model-3 .footer-column.contactus {
  float: left;
  text-align: center;
  padding: 30px 15px; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .footer-column.contactus {
      padding: 0 15px 0; } }

#shopify-section-footer-model-3 .footer-column ul {
  margin: 0;
  float: none;
  display: inline-block;
  vertical-align: top; }

#shopify-section-footer-model-3 .footer-section .footer-cms.footer-column {
  float: right; }

#shopify-section-footer-model-3 .widget-title {
  font: 500 20px/24px Lato;
  text-transform: capitalize;
  margin: 0 0 20px 0;
  float: left;
  width: 100%; }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .widget-title {
      margin: 0; } }

@media screen and (max-width: 991px) {
  #shopify-section-footer-model-3 .footer-section {
    float: left;
    width: 100%;
    padding: 0; }

  #shopify-section-footer-model-3 .widget-title {
    text-align: left;
    padding: 10px;
    font-size: 20px;
    width: 100%; }

  #shopify-section-footer-model-3 .block_newsletter .widget-title {
    text-align: center;
    padding: 0; }

  #shopify-section-footer-model-3 .footer-section .footer-cms.footer-column .newsletter-bottom-cotent {
    padding: 0 15px; }

  #shopify-section-footer-model-3 .footer-bottom-wrap .site-footer__payment-icons {
    padding: 5px 0 12px;
    float: left; } }
/*----------------------------------------------------------*/
#GotoTop {
  background: #f6bb25;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  bottom: 40px;
  cursor: pointer;
  height: 40px;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  padding: 7px;
  position: fixed;
  right: 40px;
  text-align: center;
  width: 40px;
  line-height: 1.5;
  z-index: 9;
  color: white;
  display: none;
  top: auto !important;
  font-size: 12px;
  color: white !important;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 767px) {
    #GotoTop {
      right: 20px;
      bottom: 40px; } }

#GotoTop:hover {
  background: #f6bb25;
  border: 2px solid #fff;
  color: white !important;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px); }

#GotoTop i.mdi.mdi-chevron-up {
  font-size: 22px;
  line-height: 22px; }

#shopify-section-footer-model-3 .site-footer {
  margin: 0; }

.footer-bottom-wrap {
  padding: 0;
  margin: 0;
  float: left;
  width: 100%;
  background-color: #191919; }

.footer-bottom-wrap .footer-bottom {
  padding: 12px 0;
  float: left;
  width: 100%;
  text-align: center; }

.text-center.copyright small {
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  width: auto;
  float: none;
  display: inline-block;
  vertical-align: top; }

#shopify-section-footer-model-3 .text-center.copyright small {
  line-height: 22px; }

#shopify-section-footer-model-1 .text-center.copyright small {
  line-height: 26px; }

.footer-bottom-wrap .site-footer__payment-icons {
  float: right;
  width: auto; }
  @media screen and (max-width: 991px) {
    .footer-bottom-wrap .site-footer__payment-icons {
      float: none; } }
  @media screen and (max-width: 767px) {
    .footer-bottom-wrap .site-footer__payment-icons {
      width: 100%; } }

.footer-column ul li {
  display: inline-block;
  float: left;
  width: 100%;
  text-align: left;
  line-height: 22px;
  text-transform: capitalize;
  position: relative;
  margin: 0; }

#shopify-section-footer-model-3 ul.inline-list.social-icons li {
  width: auto; }

.footer-column ul.nav-secondary li a {
  position: relative;
  margin: 0; }

.contact-us .phone {
  color: #cccccc;
  font: 400 14px/22px Poppins, sans-serif;
  padding: 0 0 0 5px; }

.footer-column .email-address {
  padding: 0 0 0 10px;
  text-transform: initial; }

.footer-column ul .contact-address p {
  margin: 0; }

.footer-column .contact-us li {
  margin: 0 0 5px; }

.contact-us .contact-address {
  font: 400 14px/22px Poppins, sans-serif;
  float: left;
  width: 100%;
  padding: 0 0 0 30px; }

.contact-us .contact-detail .address i {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto; }

.footer-column > ul {
  margin: 0 !important;
  width: 100%; }

@media screen and (max-width: 1025px) {
  .site-footer small {
    display: block; } }
.site-footer a {
  color: #cccccc; }
.site-footer hr {
  border-color: #e5e5e5; }
.site-footer input[type="text"],
.site-footer input[type="search"],
.site-footer input[type="password"],
.site-footer input[type="email"],
.site-footer input[type="file"],
.site-footer input[type="number"],
.site-footer input[type="tel"],
.site-footer textarea,
.site-footer select {
  border-color: #e5e5e5;
  color: #cccccc; }
.site-footer .input-group {
  border-color: #e5e5e5; }
  .site-footer .input-group .icon {
    color: #cccccc; }
.site-footer .onboarding-header {
  margin-bottom: 15px; }
.site-footer .rte h1, .site-footer .rte .h1, .site-footer .rte h2, .site-footer .rte .h2, .site-footer .rte h3, .site-footer .rte .h3, .site-footer .rte h4, .site-footer .rte .h4, .site-footer .rte h5, .site-footer .rte .h5, .site-footer .rte h6, .site-footer .rte .h6 {
  text-align: left; }
  @media screen and (max-width: 1025px) {
    .site-footer .rte h1, .site-footer .rte .h1, .site-footer .rte h2, .site-footer .rte .h2, .site-footer .rte h3, .site-footer .rte .h3, .site-footer .rte h4, .site-footer .rte .h4, .site-footer .rte h5, .site-footer .rte .h5, .site-footer .rte h6, .site-footer .rte .h6 {
      text-align: center; } }
@media screen and (max-width: 1025px) {
  .site-footer .rte ul, .site-footer .rte ol {
    margin-left: 0;
    list-style-position: inside; } }

.block_newsletter .form-vertical .errors {
  margin: 5px 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  padding: 14px 19px;
  text-align: left; }

.block_newsletter .form-vertical .form-success {
  margin: 5px 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  padding: 14px 19px;
  text-align: left; }

.block_newsletter .errors li {
  font-weight: 400; }

.modal-newsletter .checkbox-group input[type="checkbox"] + label {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 14px; }

.modal-newsletter .desc {
  font-size: 14px;
  padding: 20px; }
  @media screen and (max-width: 767px) {
    .modal-newsletter .desc {
      padding: 10px 0; } }

@media screen and (max-width: 991px) {
  .site-footer .footer-column {
    width: 100%;
    float: left; }

  .site-footer .footer-column .contact-us {
    margin: 0; }

  .site-footer .footer-column h5, .site-footer .footer-column .h5 {
    margin: 0;
    padding: 10px 10px;
    font-size: 18px;
    line-height: 22px;
    width: 100%; }

  .site-footer .footer-column h5.toggle:hover, .site-footer .footer-column .toggle.h5:hover {
    background: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px; }

  .site-footer .footer-column {
    margin: 0; }

  .site-footer .footer-column h5.toggle, .site-footer .footer-column .toggle.h5, .sidebar h4.toggle, .sidebar .toggle.h4 {
    cursor: pointer; }

  .site-footer .footer-column h5.toggle:after, .site-footer .footer-column .toggle.h5:after, .sidebar h4.toggle::after, .sidebar .toggle.h4::after, .sidebar-block .widget h4.toggle::after, .sidebar-block .widget .toggle.h4::after {
    font-family: 'Material Design Icons';
    content: '\f140';
    font-size: 18px;
    font-weight: 500;
    float: right;
    font-style: normal; }

  .site-footer .footer-column.active h5.toggle:after, .site-footer .footer-column.active .toggle.h5:after, .sidebar .widget.active h4.toggle::after, .sidebar .widget.active .toggle.h4::after, .sidebar-block .widget.active h4.toggle::after, .sidebar-block .widget.active .toggle.h4::after, .site-footer .tt-desc.active h5.toggle:after, .site-footer .tt-desc.active .toggle.h5:after {
    font-family: 'Material Design Icons';
    content: '\f143';
    font-size: 18px;
    font-weight: 500;
    float: right; }

  .footer-column > *:nth-child(2) {
    padding: 0 10px;
    margin-top: 15px;
    float: left; }

  .sidebar .widget > *:nth-child(2) {
    padding: 0;
    margin-top: 15px; }
  .site-footer small {
    padding-top: 0; }

  .widget > h4.toggle, .widget > .toggle.h4 {
    margin: 0; }

  .widget {
    padding: 15px;
    border: 1px solid #e5e5e5;
    margin: 0;
    float: left;
    width: 100%; } }
  @media screen and (max-width: 991px) and (max-width: 991px) {
    .sidebar .widget > *:nth-child(2) {
      margin: 0; } }

/*contact form*/
.contact-form .btn, .contact-form .btn--secondary, .contact-form input[type="submit"] {
  background: #f6bb25;
  color: white;
  padding: 10px 25px;
  letter-spacing: 1px; }

.contac-us-page .address-container .content {
  font-size: 16px; }

.contact-form .btn:hover, .contact-form .btn--secondary:hover, .contact-form input[type="submit"]:hover, .contact-form .btn:active, .contact-form .btn--secondary:active, .contact-form input[type="submit"]:active, .contact-form .btn:focus, .contact-form .btn--secondary:focus, .contact-form input[type="submit"]:focus {
  background: #f6bb25;
  color: white; }

.address-container .address-text {
  width: 33.333%;
  padding: 0 15px;
  display: inline-block;
  float: left;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .address-container .address-text {
      width: 100%;
      margin: 0 0 15px; } }

.address-container .address-text .icon {
  font-size: 30px;
  height: 90px;
  width: 90px;
  text-align: center;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 0 3px #3a3a3a;
  -moz-box-shadow: 0 0 0 3px #3a3a3a;
  -ms-box-shadow: 0 0 0 3px #3a3a3a;
  -o-box-shadow: 0 0 0 3px #3a3a3a;
  box-shadow: 0 0 0 3px #3a3a3a;
  transition: color 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 35px;
  color: #444;
  z-index: 1;
  position: relative; }

.address-container .address-text .icon::after {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  content: '';
  top: -2px;
  left: -2px;
  padding: 2px;
  z-index: -1;
  background-color: #f6bb25;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  box-sizing: content-box;
  transition: transform 0.2s, opacity 0.3s; }

.address-container .address-text:hover .icon {
  color: white;
  -webkit-box-shadow: 0 0 0 3px #f6bb25;
  -moz-box-shadow: 0 0 0 3px #f6bb25;
  -ms-box-shadow: 0 0 0 3px #f6bb25;
  -o-box-shadow: 0 0 0 3px #f6bb25;
  box-shadow: 0 0 0 3px #f6bb25; }

.address-container .address-text:hover .icon::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.contact-us-page {
  margin: 20px 0; }

.contact-us-page .icon i.mdi {
  font-size: 36px;
  line-height: 90px; }

.address-container.right-to-left {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .address-container.right-to-left {
      margin: 0; } }

.contact-us-page .address-container .small-title {
  color: #222222;
  margin: 0 0 40px; }
  @media screen and (max-width: 480px) {
    .contact-us-page .address-container .small-title {
      margin: 0 0 20px;
      font-size: 22px; } }

.quickview-template .content, .quick-view .overlay {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%; }

.quickview-template .content, .quick-view .overlay {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%; }

/*============================================================================
  #Index sections
==============================================================================*/
.index-section--flush + .index-section--flush {
  margin-top: -70px; }
  @media screen and (min-width: 1024px) {
    .index-section--flush + .index-section--flush {
      margin-top: -110px; } }

.index-section--flush:first-child {
  margin-top: -35px; }
  @media screen and (min-width: 1024px) {
    .index-section--flush:first-child {
      margin-top: -55px; } }

.index-section--flush:last-child {
  margin-bottom: -35px; }
  @media screen and (min-width: 1024px) {
    .index-section--flush:last-child {
      margin-bottom: -55px; } }

@media screen and (max-width: 1024px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }
/*============================================================================
  #Blank states - placeholder images
==============================================================================*/
.placeholder-svg {
  display: block;
  fill: rgba(119, 119, 119, 0.35);
  background-color: rgba(119, 119, 119, 0.05);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(119, 119, 119, 0.15); }

.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; }

/*============================================================================
  #Product Grid and List Views
==============================================================================*/
.TTProduct-Tab-container .TTProduct-Tab {
  float: left;
  text-align: center;
  width: 100%; }

.TTProduct-Tab-container .nav.nav-tabs {
  border: medium none;
  display: inline-block;
  float: none;
  vertical-align: top;
  width: auto;
  margin: 0 0 30px;
  position: relative; }

.TTProduct-Tab .owl-nav {
  display: none; }

.TTProduct-Tab .product_col3 .owl-carousel .owl-item {
  width: 33.33%; }
  @media screen and (max-width: 767px) {
    .TTProduct-Tab .product_col3 .owl-carousel .owl-item {
      width: 50%; } }
  @media screen and (max-width: 480px) {
    .TTProduct-Tab .product_col3 .owl-carousel .owl-item {
      width: 100%; } }

.TTProduct-Tab .product_col5 .owl-carousel .owl-item {
  width: 20%; }
  @media screen and (max-width: 1200px) {
    .TTProduct-Tab .product_col5 .owl-carousel .owl-item {
      width: 33.33%; } }
  @media screen and (max-width: 767px) {
    .TTProduct-Tab .product_col5 .owl-carousel .owl-item {
      width: 50%; } }
  @media screen and (max-width: 480px) {
    .TTProduct-Tab .product_col5 .owl-carousel .owl-item {
      width: 100%; } }

.TTProduct-Tab .product_col4 .owl-carousel .owl-item {
  width: 25%; }
  @media screen and (max-width: 1200px) {
    .TTProduct-Tab .product_col4 .owl-carousel .owl-item {
      width: 33.33%; } }
  @media screen and (max-width: 767px) {
    .TTProduct-Tab .product_col4 .owl-carousel .owl-item {
      width: 50%; } }
  @media screen and (max-width: 480px) {
    .TTProduct-Tab .product_col4 .owl-carousel .owl-item {
      width: 100%; } }

.TTProduct-Tab .owl-carousel .owl-item.active, .special-product .owl-item.active, .product-grid.related-products .owl-item.active {
  animation: zoomIn 500ms ease; }

.product-cat-item {
  float: left;
  position: relative;
  margin-bottom: 25px; }

.product-layouts {
  display: inline-block;
  float: left;
  width: 100%; }

.product-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  float: left;
  width: 100%;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    .product-wrapper {
      margin-bottom: 20px; } }

.product-list .product-wrapper {
  text-align: left; }

.product-wrapper .slider-nav .slick-list {
  height: 100% !important; }

.product-wrapper .slider-nav.product-single__thumbs .grid-item {
  width: 100% !important;
  padding: 5px;
  margin: 0; }

.product-list .product-wrapper .btn_wrapper {
  float: left;
  width: 100%;
  margin: 5px 0; }

.product-list .product-wrapper .product-description-wrap {
  float: left;
  width: 100%;
  padding: 10px 0 0; }

.product-list .product-description .spr-badge, .product-list .style2 .product-wrapper .product-description .spr-badge {
  position: static; }

.product-list .style2.grid-view-item .product-wrapper,
.product-short-list .style2.grid-view-item .product-wrapper {
  background: none;
  margin-bottom: 30px; }

.style2.grid-view-item .product-wrapper {
  overflow: unset;
  margin-bottom: 50px;
  background: #faf7f2;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.style2.grid-view-item .product-wrapper svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  top: auto;
  width: 120px;
  bottom: -35px;
  z-index: 1; }

.product-short-list svg, .product-list svg {
  display: none; }

.style1.product-layouts svg, .style3.product-layouts svg {
  display: none; }

.tab-pane .style2.product-layouts.grid-view-item .product-wrapper .product-description,
.style2.products-grid-view > .product-grid .product-layouts .product-wrapper .product-description,
.related-products .style2.product-layouts.grid-view-item .product-wrapper .product-description,
#recently-viewed-products .style2.product-layouts .product-wrapper .product-description,
.search-products .style2 .product-wrapper .product-description,
#specialproduct_products_slider .style2 .product-wrapper .product-description {
  width: 100%;
  position: relative;
  float: left;
  text-align: center;
  padding: 0 10px;
  margin: -15px 0 0;
  z-index: 2;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -khtml-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px; }

.style2.product-layouts.grid-view-item .product-wrapper .product-description .btn_wrapper {
  float: none;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 -20px;
  width: auto; }

@media screen and (max-width: 480px) {
  .product-list .style2.product-layouts.grid-view-item .product-wrapper .product-description .btn_wrapper {
    width: 100%; } }
.grid-view-item__meta .visually-hidden {
  display: none; }

.tab-pane .product-layouts.grid-view-item .product-wrapper .product-thumb,
.products-grid-view > .product-grid .product-layouts .product-wrapper .product-thumb,
.related-products .product-wrapper .product-thumb,
#specialproduct_products_slider .product-wrapper .product-thumb,
#recently-viewed-products .product-wrapper .product-thumb,
.search-products .product-layouts .product-thumb {
  float: left;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }
  @media screen and (max-width: 767px) {
    .tab-pane .product-layouts.grid-view-item .product-wrapper .product-thumb,
    .products-grid-view > .product-grid .product-layouts .product-wrapper .product-thumb,
    .related-products .product-wrapper .product-thumb,
    #specialproduct_products_slider .product-wrapper .product-thumb,
    #recently-viewed-products .product-wrapper .product-thumb,
    .search-products .product-layouts .product-thumb {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }

.product-layouts.product-price--sold-out.grid-view-item--sold-out .product-wrapper .product-thumb a.grid-view-item__link {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5; }

.product-layouts .product-wrapper .product-thumb a.grid-view-item__link {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.product-wrapper .product-thumb .left_img, .product-wrapper .product-thumb .right_img {
  text-align: center;
  overflow: hidden;
  position: relative;
  margin: 0 auto !important;
  padding: 0; }

.product-wrapper .product-thumb .product-hover {
  padding: 0; }
  @media screen and (max-width: 767px) {
    .product-wrapper .product-thumb .product-hover {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }

.product-layouts .zoom_img {
  overflow: hidden; }

.product-layouts .fade_img {
  overflow: hidden;
  padding: 0;
  position: relative; }
  @media screen and (max-width: 767px) {
    .product-layouts .fade_img {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }

.product-thumb .fade_img img.image_thumb_swap {
  left: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  transition: all 500ms ease-in-out 0s;
  margin: auto;
  bottom: 0; }

.product-thumb .fade_img img.image_thumb {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  transition: all 500ms ease-in-out 0s; }

.product-layouts .bottom_img {
  overflow: hidden;
  padding: 0;
  position: relative; }

.product-wrapper .product-thumb .bottom_img img.image_thumb_swap {
  display: block;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }

.product-wrapper:hover .product-thumb .bottom_img img.image_thumb_swap {
  -webkit-transform: translate3d(0, -99%, 0);
  -moz-transform: translate3d(0, -99%, 0);
  -ms-transform: translate3d(0, -99%, 0);
  -o-transform: translate3d(0, -99%, 0);
  transform: translate3d(0, -99%, 0);
  -webkit-transition: transform 1s cubic-bezier(.19,1,.22,1);
  -moz-transition: transform 1s cubic-bezier(.19,1,.22,1);
  -ms-transition: transform 1s cubic-bezier(.19,1,.22,1);
  -o-transition: transform 1s cubic-bezier(.19,1,.22,1);
  transition: transform 1s cubic-bezier(.19,1,.22,1); }

.product-wrapper:hover .product-thumb .bottom_img img.image_thumb {
  -webkit-transform: translate3d(0, -99%, 0);
  -moz-transform: translate3d(0, -99%, 0);
  -ms-transform: translate3d(0, -99%, 0);
  -o-transform: translate3d(0, -99%, 0);
  transform: translate3d(0, -99%, 0);
  -webkit-transition: transform 1s cubic-bezier(.19,1,.22,1);
  -moz-transition: transform 1s cubic-bezier(.19,1,.22,1);
  -ms-transition: transform 1s cubic-bezier(.19,1,.22,1);
  -o-transition: transform 1s cubic-bezier(.19,1,.22,1);
  transition: transform 1s cubic-bezier(.19,1,.22,1); }

.product-wrapper .product-thumb .bottom_img img.image_thumb {
  line-height: 0;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  top: 0; }

.product-wrapper:hover .product-thumb .bottom_img img.image_thumb {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }

.product-thumb img {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; }

.product-list .add_cart {
  display: inline-block;
  padding: 16px 16px 16px 10px; }

.product-thumb .btn_wrapper {
  bottom: 5px;
  left: 20px;
  margin: 0 auto;
  position: absolute;
  right: 20px;
  text-align: center;
  top: auto;
  width: auto; }
  @media screen and (max-width: 767px) {
    .product-thumb .btn_wrapper {
      bottom: 5px; } }

@media screen and (max-width: 767px) {
  .product-wrapper:hover .btn_wrapper {
    bottom: 5px; } }

.tab-pane .product-layouts.grid-view-item .product-wrapper .product-description,
.products-grid-view > .product-grid .product-layouts .product-wrapper .product-description,
.related-products .product-layouts.grid-view-item .product-wrapper .product-description,
#recently-viewed-products .product-wrapper .product-description,
.search-products .product-wrapper .product-description,
#specialproduct_products_slider .product-wrapper .product-description {
  width: 100%;
  position: relative;
  float: left;
  text-align: center;
  padding: 0; }

.tab-pane .style2.product-layouts.grid-view-item .product-wrapper .product-description,
.products-grid-view > .product-grid .style2.product-layouts .product-wrapper .product-description,
.related-products .style2.product-layouts.grid-view-item.style2 .product-wrapper .product-description,
#recently-viewed-products .style2.product-layouts .product-wrapper .product-description,
.search-products .style2 .product-wrapper .product-description,
#specialproduct_products_slider .style2 .product-wrapper .product-description {
  width: 100%;
  position: relative;
  float: left;
  text-align: center;
  padding: 0 10px;
  background: #faf7f2;
  margin: -15px 0 0;
  z-index: 2;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -khtml-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px; }

.products-grid-view > .product-grid .product-layouts .product-wrapper .product-description .grid-view-item__vendor,
.tab-pane .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__vendor,
.related-products .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__vendor,
.search-products .product-wrapper .product-description .grid-view-item__vendor,
#specialproduct_products_slider .product-wrapper .product-description .grid-view-item__vendor {
  display: none; }

.tab-pane .style3.product-layouts.grid-view-item .product-wrapper .product-description,
.hover_style3 #recently-viewed-products .product-wrapper .product-description,
.related-products .product-layouts.grid-view-item.style3 .product-wrapper .product-description,
.search-products .style3 .product-wrapper .product-description,
#specialproduct_products_slider .style3 .product-wrapper .product-description {
  text-align: center; }
  @media screen and (max-width: 991px) {
    .tab-pane .style3.product-layouts.grid-view-item .product-wrapper .product-description,
    .hover_style3 #recently-viewed-products .product-wrapper .product-description,
    .related-products .product-layouts.grid-view-item.style3 .product-wrapper .product-description,
    .search-products .style3 .product-wrapper .product-description,
    #specialproduct_products_slider .style3 .product-wrapper .product-description {
      padding: 0 10px; } }

.product-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a {
  height: auto;
  width: auto; }
  @media screen and (max-width: 767px) {
    .product-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a {
      height: 45px;
      width: 45px; } }

.product-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
  height: 40px;
  width: 40px;
  line-height: 40px; }
  @media screen and (max-width: 767px) {
    .product-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
      height: 42px;
      width: 42px;
      line-height: 42px; } }

.product-list .style3.product-layouts.grid-view-item .product-wrapper .product-description {
  position: static;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-description .h4, #slidedown-cart .product-details .product-name > a {
  font: 400 16px/20px Lato, Helvetica, Sans-serif;
  overflow: hidden;
  text-transform: capitalize;
  float: left;
  width: 100%;
  margin: 8px 0 8px;
  text-overflow: ellipsis; }

.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
  float: left;
  width: 100%;
  margin: 2px 0 10px 0; }

.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price {
  float: left;
  width: 100%;
  text-align: center; }

.product-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price {
  text-align: left; }
  @media screen and (max-width: 480px) {
    .product-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price {
      text-align: center; } }

.product-short-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price {
  text-align: left; }
  @media screen and (max-width: 480px) {
    .product-short-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price {
      text-align: center; } }

.product-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
  margin: 0 0 10px 0; }

.product-price__price, .product-price__price .money, .price, price .money {
  font: 700 18px/20px Lato, Helvetica, sans-serif;
  color: #111111; }
  @media screen and (max-width: 991px) {
    .product-price__price, .product-price__price .money, .price, price .money {
      font-size: 14px; } }

.product-desc {
  display: none; }

.product-price__price.compare_price .money, .product-price__price.compare_price {
  font: 300 14px/16px Lato, Helvetica, sans-serif;
  color: #777777; }

.product-price__sale-label {
  position: absolute;
  right: auto;
  left: 15px;
  top: -15px;
  bottom: auto;
  color: #000;
  font-size: 14px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  text-transform: capitalize; }
  @media screen and (max-width: 767px) {
    .product-price__sale-label {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      top: 35px; } }
  @media screen and (max-width: 481px) {
    .product-price__sale-label {
      left: 8px; } }

.product-wrapper:hover .product-price__sale-label {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  top: 35px; }

.product-wrapper .custom_label {
  position: absolute;
  left: 15px;
  right: auto;
  top: -15px;
  bottom: auto;
  color: #000;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 20px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .product-wrapper .custom_label {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      top: 15px; } }
  @media screen and (max-width: 481px) {
    .product-wrapper .custom_label {
      left: 8px; } }

.product-wrapper:hover .custom_label {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  top: 15px; }

.style2 .product-price__sale-label {
  top: 15px;
  left: -35px;
  right: auto;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: 600ms ease-in-out;
  -moz-transition: 600ms ease-in-out;
  -ms-transition: 600ms ease-in-out;
  -o-transition: 600ms ease-in-out;
  transition: 600ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .style2 .product-price__sale-label {
      left: 15px; } }
  @media screen and (max-width: 481px) {
    .style2 .product-price__sale-label {
      left: 10px; } }

.style2 .product-wrapper .custom_label {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  top: 15px;
  left: -35px;
  -webkit-transition: 600ms ease-in-out;
  -moz-transition: 600ms ease-in-out;
  -ms-transition: 600ms ease-in-out;
  -o-transition: 600ms ease-in-out;
  transition: 600ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .style2 .product-wrapper .custom_label {
      left: 15px; } }
  @media screen and (max-width: 481px) {
    .style2 .product-wrapper .custom_label {
      left: 10px; } }

.style2 .product-wrapper:hover .custom_label {
  left: 15px; }
  @media screen and (max-width: 481px) {
    .style2 .product-wrapper:hover .custom_label {
      left: 10px; } }

.style2 .product-wrapper .product-price__sale-label {
  top: 35px; }

.style2 .product-wrapper:hover .product-price__sale-label {
  left: 15px;
  top: 35px; }
  @media screen and (max-width: 481px) {
    .style2 .product-wrapper:hover .product-price__sale-label {
      left: 10px; } }

.product-layouts.grid-view-item .product-wrapper .spr-badge, #recently-viewed-products .product-wrapper .product-thumb .spr-badge {
  float: left;
  width: 100%;
  position: absolute;
  top: auto;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -ms-transition: 500ms ease-in-out;
  -o-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .product-layouts.grid-view-item .product-wrapper .spr-badge, #recently-viewed-products .product-wrapper .product-thumb .spr-badge {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.product-layouts.grid-view-item .product-wrapper:hover .spr-badge, #recently-viewed-products .product-wrapper:hover .product-thumb .spr-badge {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-wrapper span.spr-badge-caption {
  display: none; }

/*------- Product style 1 ------------*/
.style1 .product-thumb .btn_wrapper {
  float: left;
  width: 100%;
  position: static; }

.style1 .product-thumb .btn_wrapper .pro_btn.add_tocart {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: auto;
  width: 100%;
  padding: 0 10px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -ms-transition: 500ms ease-in-out;
  -o-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .style1 .product-thumb .btn_wrapper .pro_btn.add_tocart {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      bottom: 10px; } }

.style1 .product-wrapper:hover .product-thumb .btn_wrapper .pro_btn.add_tocart {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  bottom: 10px; }

/*----------- New-product ----------*/
.slider-specialproduct-wrap .special-product-div.specialproduct {
  text-align: center; }

form#AddToCartForm {
  float: left;
  width: 100%;
  margin: 0; }

a.product-lightbox-btn.tip-top img {
  width: auto;
  height: auto; }

.product-single.design_4 .product-information-inner form#AddToCartForm {
  padding-top: 0; }

a.grid-link__title {
  font: 500 16px/18px Lato;
  text-transform: capitalize;
  white-space: nowrap;
  color: #676767; }

@media screen and (min-width: 1025px) {
  .product {
    position: relative; } }

.collection_left .collection_template {
  margin-left: -10px; }
  @media screen and (max-width: 991px) {
    .collection_left .collection_template {
      margin-left: 0; } }

.filter-toggle-wrap {
  display: none;
  float: left;
  width: 100%; }

.full_width .filter-toggle {
  float: right;
  margin: 5px;
  text-transform: capitalize; }

.full_width .sorting_wrapper {
  margin: 0 0 0 20px;
  float: left; }
  @media screen and (max-width: 480px) {
    .full_width .sorting_wrapper {
      margin: 0;
      width: 100%; } }

.collection_template .full_width .shopify-section {
  float: left;
  width: 25%; }
  @media screen and (max-width: 991px) {
    .collection_template .full_width .shopify-section {
      width: 100%; } }

.full_width #shopify-section-sidebar-tag-filters {
  width: 50%; }
  @media screen and (max-width: 991px) {
    .full_width #shopify-section-sidebar-tag-filters {
      width: 100%; } }

.full_width #shopify-section-sidebar-tag-filters aside.sidebar-tag {
  float: left;
  width: 50%; }
  @media screen and (max-width: 991px) {
    .full_width #shopify-section-sidebar-tag-filters aside.sidebar-tag {
      width: 100%; } }

@media screen and (max-width: 991px) {
  .filter-toggle-wrap .sidebar-block {
    margin: 0; } }
.full_width .collection_sidebar {
  margin: 30px 0 0; }

.full_width .collection_sidebar .widget_product_categories {
  display: none; }

.full_width .collection_sidebar .refined-widgets a {
  background-color: #f6bb25;
  color: white;
  padding: 7px 20px;
  float: right;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px;
  margin: 0 0 10px; }

.full_width .collection_sidebar .refined-widgets a:hover {
  background-color: #f6bb25;
  color: white; }

.full_width .filter-toggle .mdi.mdi-format-align-right {
  padding: 0 0 0 7px;
  font-size: 17px;
  line-height: 17px;
  vertical-align: middle; }

.left-sidebar, .right-sidebar {
  width: 24%; }
  @media screen and (max-width: 991px) {
    .left-sidebar, .right-sidebar {
      width: 100%; } }

.col-xs-12.collection_wrapper, .col-xs-12.content-wrapper {
  width: 76%; }
  @media screen and (max-width: 991px) {
    .col-xs-12.collection_wrapper, .col-xs-12.content-wrapper {
      width: 100%; } }

.collections.template-list-collections .col-xs-12.collection_wrapper {
  width: 100%; }

.left-sidebar .sidebar-product .price, .right-sidebar .sidebar-product .price {
  font-size: 16px; }
  @media screen and (max-width: 1199px) {
    .left-sidebar .sidebar-product .price, .right-sidebar .sidebar-product .price {
      font-size: 14px; } }

.left-sidebar .sidebar-product .top-product-prices, .right-sidebar .sidebar-product .top-product-prices {
  font-family: Lato, Helvetica, sans-serif; }

.shopify-section .product-tab-type-1.has_bg {
  padding: 100px 0; }
  @media screen and (max-width: 1199px) {
    .shopify-section .product-tab-type-1.has_bg {
      padding: 70px 10px; } }
  @media screen and (max-width: 767px) {
    .shopify-section .product-tab-type-1.has_bg {
      padding: 65px 10px; } }

.product-tab-type-1.categories-block {
  padding: 0; }

.page-width.specialproduct.slider-specialproduct-wrap.has_bg {
  padding: 100px 0; }
  @media screen and (max-width: 1199px) {
    .page-width.specialproduct.slider-specialproduct-wrap.has_bg {
      padding: 70px 10px; } }
  @media screen and (max-width: 480px) {
    .page-width.specialproduct.slider-specialproduct-wrap.has_bg {
      padding: 65px 10px; } }

.grid-uniform {
  margin-left: -15px;
  margin-right: -15px; }

/*================ This hacks all the grid-items in IE8 and below ================*/
.lt-ie9 .product-grid .grid-item {
  display: inline-block;
  float: none;
  margin-bottom: 30px;
  margin-left: 0;
  padding: 0; }
  .lt-ie9 .product-grid .grid-item .product {
    margin-bottom: 0; }
.lt-ie9 .product-wrapper {
  margin: 0 15px; }

.product__img {
  display: block;
  margin: 0 auto; }
  @media screen and (min-width: 1025px) {
    .product__img {
      position: relative;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      -o-backface-visibility: hidden;
      backface-visibility: hidden; } }

.product__details {
  -webkit-transition: opacity 0.75s;
  -moz-transition: opacity 0.75s;
  -ms-transition: opacity 0.75s;
  -o-transition: opacity 0.75s;
  transition: opacity 0.75s; }

.product__price {
  font-size: 14px; }

.product__title {
  font-size: 1.21429em;
  margin: 15px 0 0 0;
  line-height: 1.5; }
  @media screen and (min-width: 480px) and (max-width: 1025px) {
    .large--one-quarter .product__title {
      font-size: 1em; } }

.tag {
  background-color: #f6f6f6;
  color: #717171;
  font-family: Poppins;
  font-size: 1em;
  padding: 5px 10px; }
  .on-sale-tag .tag {
    background-color: none;
    color: #333333; }

.widget_top_rated_products .sale {
  font-size: 12px;
  top: 5px;
  color: #333333;
  right: 15px;
  position: absolute;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.widget_top_rated_products .product-wrapper.sidebar-product:hover .sale {
  display: none; }

.sold-out-tag,
.on-sale-tag {
  margin: 0 0 15px;
  position: absolute;
  top: 15px;
  right: 15px; }

.product-list .sold-out-tag, .product-list .on-sale-tag {
  left: 15px;
  right: auto; }

@media screen and (max-width: 767px) {
  .products-grid-view .grid-item {
    width: 50%; } }
@media screen and (max-width: 480px) {
  .products-grid-view .grid-item {
    width: 100%; } }

@media screen and (min-width: 1200px) {
  .full-width .collection_template .product-list .product-thumb {
    width: auto; } }
@media screen and (min-width: 768px) and (max-width: 1449px) {
  .products-grid-view .grid-item.product-grid {
    width: 33.33%;
    clear: none; }

  .products-grid-view .grid-item.product-grid:nth-child(3n+1) {
    clear: both; }

  .full-width .products-grid-view .grid-item.product-grid {
    width: 25%;
    clear: none; }

  .full-width .products-grid-view .grid-item.product-grid:nth-child(4n+1) {
    clear: both; } }
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .products-grid-view .grid-item.style3.product-grid {
    width: 50%;
    clear: none; }

  .products-grid-view .grid-item.style3.product-grid:nth-child(2n+1) {
    clear: both; }

  .full-width .products-grid-view .grid-item.product-grid {
    width: 33.33%;
    clear: none; }

  .full-width .products-grid-view .grid-item.product-grid:nth-child(3n+1) {
    clear: both; }

  .full-width .products-grid-view .style3.grid-item.product-grid {
    width: 33.33%;
    clear: none; }

  .full-width .products-grid-view .style3.grid-item.product-grid:nth-child(3n+1) {
    clear: both; } }
@media screen and (min-width: 450px) and (max-width: 767px) {
  .products-grid-view .grid-item.style2 {
    width: 50%; } }
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .search-products .large--one-fifth:nth-child(4n+1) {
    clear: both; }

  .search-products .large--one-fifth {
    width: 25%;
    clear: none; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .search-products .large--one-fifth:nth-child(3n+1) {
    clear: both; }

  .search-products .large--one-fifth {
    width: 33.33%;
    clear: none; } }
.edit_checkout .btn, .edit_checkout .btn--secondary, .edit_checkout input[type="submit"] {
  padding: 0.8em 1.7em; }

/*------------- short-list-view ------------*/
.product-grid .products-grid-view .grid-item.product-short-list {
  width: 100%;
  padding: 0; }

.product-short-list .product-wrapper .product-description .short-title {
  text-align: left;
  margin: 10px 0; }
  @media screen and (max-width: 767px) {
    .product-short-list .product-wrapper .product-description .short-title {
      float: left;
      width: 100%; } }
  @media screen and (max-width: 480px) {
    .product-short-list .product-wrapper .product-description .short-title {
      width: 100%;
      padding: 0;
      text-align: center;
      margin: 15px 0 0; } }

.product-short-list .product-wrapper .product-description {
  padding: 0; }
  @media screen and (max-width: 480px) {
    .product-short-list .product-wrapper .product-description {
      width: 100%; } }

.product-short-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
  width: 22%;
  margin: 20px 0;
  float: left; }
  @media screen and (max-width: 1199px) {
    .product-short-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
      margin: 10px 0; } }
  @media screen and (max-width: 767px) {
    .product-short-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
      width: 40%;
      text-align: left;
      padding: 0 15px; } }
  @media screen and (max-width: 480px) {
    .product-short-list .product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
      width: 100%;
      text-align: center;
      padding: 0;
      margin-bottom: 0; } }

.product-short-list.style2 .product-wrapper .product-description .btn_wrapper .pro_btn {
  display: inline-block;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  vertical-align: top;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  margin: 0 3px 0 0; }
  @media screen and (max-width: 1450px) {
    .product-short-list.style2 .product-wrapper .product-description .btn_wrapper .pro_btn {
      margin: 0; } }

.product-short-list .style2.product-layouts.grid-view-item .product-wrapper .product-description .btn_wrapper {
  margin: 10px 0; }
  @media screen and (max-width: 480px) {
    .product-short-list .style2.product-layouts.grid-view-item .product-wrapper .product-description .btn_wrapper {
      margin: 10px 0 0; } }

.product-list .style2.product-layouts.grid-view-item .product-wrapper .product-description .btn_wrapper {
  margin: 0; }

.product-short-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a {
  height: 45px;
  width: auto; }
  @media screen and (max-width: 1199px) {
    .product-short-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a {
      width: 45px; } }

.product-short-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
  height: 40px;
  width: 40px;
  line-height: 42px; }
  @media screen and (max-width: 1199px) {
    .product-short-list .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
      width: 42px;
      height: 42px; } }

.product-short-list .product-wrapper .product-description .btn_wrapper {
  width: 36.33%;
  position: static;
  margin: 15px auto;
  visibility: visible;
  float: left;
  text-align: center;
  -webkit-transform: translateY(0) translateZ(0px);
  -moz-transform: translateY(0) translateZ(0px);
  -ms-transform: translateY(0) translateZ(0px);
  -o-transform: translateY(0) translateZ(0px);
  transform: translateY(0) translateZ(0px); }
  @media screen and (max-width: 1199px) {
    .product-short-list .product-wrapper .product-description .btn_wrapper {
      margin: 10px 0;
      text-align: center; } }
  @media screen and (max-width: 767px) {
    .product-short-list .product-wrapper .product-description .btn_wrapper {
      width: 45%; } }
  @media screen and (max-width: 480px) {
    .product-short-list .product-wrapper .product-description .btn_wrapper {
      width: 100%; } }

.product-short-list .product-wrapper .product-description .grid-view-item__vendor {
  text-transform: capitalize;
  font-size: 14px;
  line-height: 16px;
  float: left;
  width: 100%;
  margin: 0 0 5px; }

.product-short-list .product-wrapper .product-description .h4.grid-view-item__title {
  margin: 7px 0 10px; }

.product-short-list .product-wrapper .product-description .h4.grid-view-item__title a.grid-view-item__link.grid-link__title {
  color: #222222; }

.product-short-list .product-layouts.grid-view-item .product-wrapper .product-description .spr-badge {
  margin: 0 0 10px;
  position: static; }

.product-short-list .product-wrapper .flip-countdown.simple-countdown {
  display: none; }

.product-short-list .product-wrapper .product-description .grid-view-item__meta .product-price__sale span.money {
  font-size: 18px;
  line-height: 20px; }

.product-short-list .product-wrapper .product-description .grid-view-item__meta .product-price__sale {
  width: 100%;
  float: left;
  margin: 0 0 5px; }
  @media screen and (max-width: 480px) {
    .product-short-list .product-wrapper .product-description .grid-view-item__meta .product-price__sale {
      width: auto;
      float: none; } }

.product-short-list .product-wrapper .ttimg-bg, .product-list .product-wrapper .ttimg-bg {
  margin: 0; }

.product-short-list.style3 .product-wrapper .btn_wrapper .pro_btn {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

.product-short-list .product-layouts.grid-view-item.style3 .product-wrapper:hover .product-description .spr-badge {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-short-list .product-layouts.grid-view-item.style3 .product-wrapper:hover .product-description .grid-view-item__meta {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.product-short-list .product-layouts.grid-view-item.style3 .product-wrapper:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

.product-short-list .style1 .product-wrapper .product-title-review {
  background: none;
  padding: 0; }

.product-short-list.style1 .product-wrapper {
  border: none; }

.product-short-list .style1.product-layouts.grid-view-item .product-wrapper .product-description {
  padding: 0;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  background: none; }

.product-short-list .style1.product-layouts.grid-view-item .product-wrapper:hover .product-description {
  background: none; }

@media screen and (max-width: 1199px) {
  .product-short-list .product-wrapper .product-description .btn_wrapper .add_tocart .add-cart-btn span.add_cart {
    display: none !important; }

  .product-short-list .product-wrapper .product-description .btn_wrapper .add_tocart a.add-cart-btn.btn, .product-short-list .product-wrapper .product-description .btn_wrapper .add_tocart a.add-cart-btn.btn--secondary {
    width: 36px; } }
@media screen and (max-width: 480px) {
  .product-short-list .product-wrapper .product-thumb {
    width: 100%; } }
/*---------- end short-list-view -----------------*/
#currencies-picker .selection-box {
  float: right;
  margin: 0;
  position: relative; }

#currencies-picker {
  width: 100%;
  margin: 0; }

#currencies-picker .selection-box select {
  border: none;
  padding: 0; }

#currencies-picker p {
  margin: 0 12px 0 0px; }

#currencies-picker {
  padding: 35px 0;
  margin: 0 !important; }

.currency_wrapper.dropdown-toggle {
  position: relative;
  line-height: 21px;
  vertical-align: middle; }

.tbl-list > li.currency .flag-dropdown-menu {
  left: 0;
  right: auto;
  top: 100%;
  width: 95px;
  text-align: left;
  position: absolute;
  display: none;
  margin-top: 0px;
  padding: 10px 0 !important;
  margin: 0;
  background: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

.tbl-list > li.currency.currency-block.open .flag-dropdown-menu {
  display: block; }

.search-products .product-layouts {
  display: inline-block;
  float: left; }

.sidebar .widget {
  margin-bottom: 20px;
  float: left;
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 991px) {
    .sidebar .widget {
      padding: 0; } }

@media screen and (max-width: 991px) {
  .sidebar-block .widget {
    padding: 0;
    border: none;
    border-bottom: 1px solid #e5e5e5; }

  .sidebar-block .color .widget:last-child {
    border-bottom: 0; }

  .main-content .sidebar-block .shopify-section {
    margin: 0; }

  .sidebar-block .widget .h4, .sidebar-block .widget h4, .sidebar-block .widget .h4 {
    padding: 15px; }

  .sidebar-block div ul {
    padding: 0 15px 5px 15px !important;
    float: left;
    width: 100%;
    margin: 0px; }

  .sidebar-block #shopify-section-sidebar-tag-filters aside.sidebar-tag {
    margin: 0; }

  .sidebar-block {
    margin-bottom: 30px;
    float: left;
    width: 100%;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px; }

  .off-canvas-wrapper .sidebar-block,
  .off-canvas-wrapper .sidebar-block .widget {
    border: none;
    margin: 0; }

  .refined-widgets a {
    padding: 13px 15px;
    float: left;
    width: 100%;
    border-bottom: 1px solid #e5e5e5; } }
.sidebar-block #shopify-section-sidebar-tag-filters .widget-content {
  float: left;
  width: 100%; }

.sidebar .widget h4, .sidebar .widget .h4, .sidebar-block .widget .h4, .sidebar-block .widget h4, .sidebar-block .widget .h4 {
  font: 600 18px/20px Lato, sans-serif;
  color: #222222;
  margin: 0 0 18px;
  cursor: pointer;
  text-transform: capitalize;
  float: left;
  width: 100%; }
  @media screen and (max-width: 1199px) {
    .sidebar .widget h4, .sidebar .widget .h4, .sidebar-block .widget .h4, .sidebar-block .widget h4, .sidebar-block .widget .h4 {
      margin: 0 0 10px; } }
  @media screen and (max-width: 991px) {
    .sidebar .widget h4, .sidebar .widget .h4, .sidebar-block .widget .h4, .sidebar-block .widget h4, .sidebar-block .widget .h4 {
      margin: 0;
      font-weight: 500; } }

.off-canvas .collection_sidebar .widget_top_rated_products h4, .off-canvas .collection_sidebar .widget_top_rated_products .h4 {
  float: left;
  width: 100%;
  font: 600 18px/20px Lato, sans-serif;
  color: #222222;
  margin: 0 0 15px;
  cursor: pointer;
  text-transform: capitalize; }
  @media screen and (max-width: 991px) {
    .off-canvas .collection_sidebar .widget_top_rated_products h4, .off-canvas .collection_sidebar .widget_top_rated_products .h4 {
      padding: 15px; } }

.sidebar .widget h4, .sidebar .widget .h4, .sidebar .widget .widget-content ul li {
  text-transform: capitalize; }

.sidebar-block ul li > a {
  color: #777777;
  float: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  position: relative; }

.sidebar-block ul li > a:hover {
  color: #f6bb25; }

.collection_sidebar ul {
  margin: 0;
  float: left;
  width: 100%; }

.sidebar .widget ul li.product-wrapper {
  margin: 0 0 15px 0; }

.sidebar .widget ul li, .sidebar-block .widget ul li {
  margin: 3px 0;
  display: inline-block;
  width: 100%;
  text-transform: capitalize;
  vertical-align: top;
  padding: 0; }

.sidebar ul {
  margin: 0;
  float: left;
  width: 100%; }

.sidebar .widget.widget_categories h4, .sidebar .widget.widget_categories .h4 {
  margin: 0 0 10px; }
  @media screen and (max-width: 991px) {
    .sidebar .widget.widget_categories h4, .sidebar .widget.widget_categories .h4 {
      margin: 0; } }

.widget.widget_top_rated_products .sidebar .widget ul li {
  margin: 0 0 15px 0; }

.sidebar .widget .top-products-detail .price .money {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700; }

.widget-content li > a.active span {
  color: #000; }

.widget-content li > a.active {
  position: relative; }

.widget-content ul li a.active::before {
  content: "\f12c";
  font-family: "Material Design Icons";
  position: absolute;
  left: 7px;
  right: auto;
  top: 3px;
  bottom: auto;
  height: 15px;
  width: 15px;
  color: #fff;
  font-size: 12px;
  line-height: 20px; }
  @media screen and (max-width: 991px) {
    .widget-content ul li a.active::before {
      top: 2px; } }

.sidebar .collection_sidebar .refined-widgets > a {
  border: 1px solid #e5e5e5;
  float: left;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 15px;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }

.collection_sidebar .refined-widgets > a > i {
  float: right;
  font-size: 16px;
  line-height: 20px; }

.collection_sidebar .widget .product-categories ul {
  padding: 0 0 0 15px; }

.collection_sidebar .widget a > i {
  float: right; }

.full_width.wrap_toggle_filter .filter-toggle-wrap .collection_sidebar .widget a > i {
  float: none;
  display: inline-block;
  vertical-align: top; }

.sidebar .widget_promo_img ul li {
  margin: 0;
  display: inline; }

.sidebar .widget.widget_promo_img {
  padding: 0;
  border: none; }
  @media screen and (max-width: 991px) {
    .sidebar .widget.widget_promo_img {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }

@media screen and (max-width: 991px) {
  .full-width .widget.widget_promo_img {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: auto;
    border: none; }

  .full-width .main-content div#shopify-section-sidebar-promoimage {
    margin: 0;
    width: 100%;
    display: inline-block;
    float: left;
    text-align: center; } }
.product-wrapper.sidebar-product .image.product-thumb {
  padding: 0; }
  @media screen and (min-width: 1500px) {
    .product-wrapper.sidebar-product .image.product-thumb {
      width: auto; } }

.product-wrapper.sidebar-product .image.product-thumb .product-img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

#shopify-section-sidebar-bestsellers .sidebar-product .product-thumb .zoom_img .image_thumb_swap {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  border: none; }

#shopify-section-sidebar-bestsellers .sidebar-product:hover .product-thumb .zoom_img .image_thumb_swap {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

@media screen and (max-width: 991px) {
  .sidebar .widget .no-bullets .image {
    width: auto; }

  .collection_sidebar .widget a > i {
    float: unset;
    display: inline-block; }

  .sidebar .collection_sidebar div ul:not(#promoimg-carousel) {
    padding: 0 15px 5px 15px;
    float: left;
    width: 100%; }

  .collection_sidebar div ul#promoimg-carousel {
    padding: 0 !important; }

  .sidebar .collection_sidebar > div .widget > h4, .sidebar .collection_sidebar > div .widget > .h4 {
    padding: 15px; }

  .collection_sidebar .widget #promo-carousel {
    padding: 0 !important; }

  .widget_promo_img ul#promo-carousel .owl-item, .widget_promo_img ul#promo-carousel .owl-stage {
    width: 100% !important; }

  .off-canvas .collection_sidebar .refined-widgets a {
    border: none; } }
@media screen and (max-width: 480px) {
  .widget_top_rated_products .top-products-detail {
    width: 58%; } }
.spr-review .spr-icon {
  font-size: 100%; }

.item-swatch.color_swatch_Value label {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  float: left;
  height: 20px;
  width: 20px;
  margin: 0;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out; }

.color_swatch_Value li {
  display: inline-block;
  float: left;
  width: auto;
  margin: 0 5px 0 0;
  padding: 1px;
  border: 2px solid #eee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out; }

.color_swatch_Value li:hover {
  border-color: #bbb; }

.product-list .product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value,
.product-short-list .product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value {
  display: block;
  margin: 0 0 12px;
  float: left;
  width: 100%; }
  @media screen and (max-width: 480px) {
    .product-list .product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value,
    .product-short-list .product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value {
      display: inline-block;
      float: none;
      width: auto;
      vertical-align: top; } }

@media screen and (max-width: 480px) {
  .product-short-list .product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value {
    margin: 0; }

  .product-short-list .style1.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value {
    margin: 0 0 10px; } }
.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value, .grid-item .product-wrapper .item-swatch.color_swatch_Value {
  display: none; }

.style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value, .style2 .grid-item .product-wrapper .item-swatch.color_swatch_Value {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  position: absolute;
  top: -22px;
  bottom: auto;
  left: 0;
  right: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value, .style2 .grid-item .product-wrapper .item-swatch.color_swatch_Value {
      top: -52px;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value li {
  float: none;
  display: inline-block;
  vertical-align: top; }

.style2.product-layouts .product-wrapper:hover .product-description .item-swatch.color_swatch_Value, .style2 .grid-item .product-wrapper .item-swatch.color_swatch_Value {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style2.product-layouts.grid-view-item .product-wrapper:hover .spr-badge, .style2 #recently-viewed-products .product-wrapper:hover .product-thumb .spr-badge {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .style2.product-layouts.grid-view-item .product-wrapper:hover .spr-badge, .style2 #recently-viewed-products .product-wrapper:hover .product-thumb .spr-badge {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.product-list .style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value, .style2 .grid-item .product-wrapper .item-swatch.color_swatch_Value,
.product-short-list .style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value, .style2 .grid-item .product-wrapper .item-swatch.color_swatch_Value {
  position: static;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-list .style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value li,
.product-short-list .style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value li {
  float: left; }
  @media screen and (max-width: 480px) {
    .product-list .style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value li,
    .product-short-list .style2.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value li {
      float: none; } }

.collection_template .item-row.product-layouts {
  padding: 0; }

@media screen and (min-width: 1500px) {
  .full-width .collection_template .product-list .product-thumb {
    width: auto; } }
.top-products-detail h5, .top-products-detail .h5 {
  overflow: hidden;
  margin: 0 0 5px 0;
  font: 400 16px/20px Lato, Helvetica, sans-serif; }
  @media screen and (max-width: 1400px) {
    .top-products-detail h5, .top-products-detail .h5 {
      font-size: 14px;
      line-height: 18px;
      padding: 0; } }

.collection_template .product-list.grid-item {
  width: 100%;
  padding: 0; }

.products-grid-view > .grid-item {
  overflow: hidden;
  padding: 0 15px; }

a.product-t {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 0 auto;
  height: 100%;
  display: inline-block;
  text-align: center;
  width: 100%; }

.sidebar__inner .collection_sidebar .sidebar-products a.thumb.product-t {
  width: auto; }

.sidebar .sidebar__inner .collection_sidebar .sidebar-products .sidebar-product:hover span.sale.on-sale-tag {
  display: none; }

.product-description .spr-badge-caption, .product-wrapper:hover .spr-badge {
  display: block; }

.product-single__photos .product-image-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  line-height: 30px; }

.product-list .spr-badge, .product-short-list .spr-badge {
  -webkit-opacity: 1 !important;
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  opacity: 1 !important;
  position: relative;
  float: left;
  margin-bottom: 7px !important;
  width: 100%;
  margin-top: 0 !important; }

.product-list .product-wrapper:hover .product-description .spr-badge {
  display: block; }

.search-results .product-price__price.compare_price .money, .search-results .product-price__price.compare_price {
  margin-left: 5px; }

.search_wrapper .search-results {
  top: 100% !important;
  overflow: auto;
  max-height: 655px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.search-results .thumbnail img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.filter-grid-list span {
  display: none; }

.filter-grid-list #list-view, .filter-grid-list #grid-view, .filter-grid-list #short-list-view {
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 15px;
  margin: 0 3px 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.filter-grid-list a.grid.btn::after, .filter-grid-list a.btn.grid--rev::after, .filter-grid-list a.grid--rev.btn--secondary::after, .filter-grid-list a.btn.grid--full::after, .filter-grid-list a.grid--full.btn--secondary::after, .filter-grid-list a.grid.btn--secondary::after,
.filter-grid-list a.list.btn::after,
.filter-grid-list a.list.btn--secondary::after,
.filter-grid-list a.short-list.btn::after,
.filter-grid-list a.short-list.btn--secondary::after,
.collection_template .sorting_wrapper .collection-sorting .filter-sortby .btn.dropdown-toggle::after,
.collection_template .sorting_wrapper .collection-sorting .filter-sortby .dropdown-toggle.btn--secondary::after,
.collection_template .sorting_wrapper .collection-sorting .filter-sortby input.dropdown-toggle[type="submit"]::after,
.collection_template .sorting_wrapper .pages_list .btn.dropdown-toggle::after,
.collection_template .sorting_wrapper .pages_list .dropdown-toggle.btn--secondary::after,
.collection_template .sorting_wrapper .pages_list input.dropdown-toggle[type="submit"]::after {
  display: none; }

.filter-grid-list .grid::before, .filter-grid-list .grid--rev::before, .filter-grid-list .grid--full::before {
  content: "\f03b";
  color: #979292;
  font-family: "Material Design Icons";
  position: absolute;
  left: 0px;
  right: auto;
  top: 0;
  bottom: 0;
  font-size: 24px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin: 0 auto; }

.filter-grid-list .list::before {
  content: "\f969";
  color: #979292;
  font-family: "Material Design Icons";
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  font-size: 24px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin: 0 auto; }

.filter-grid-list .short-list::before {
  content: "\f687";
  color: #979292;
  font-family: "Material Design Icons";
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  font-size: 24px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin: 0 auto; }

.filter-grid-list .grid.active::before, .filter-grid-list .active.grid--rev::before, .filter-grid-list .active.grid--full::before, .filter-grid-list .grid:hover::before, .filter-grid-list .grid--rev:hover::before, .filter-grid-list .grid--full:hover::before, .filter-grid-list .list.active::before, .filter-grid-list .list:hover::before, .filter-grid-list .short-list.active::before, .filter-grid-list .short-list:hover::before {
  color: #000; }

.widget_filter_tag.total_2, .widget_filter_tag.total_2 .sidebar-tag {
  float: left;
  width: 50%; }

.widget_filter_tag.total_3 {
  float: left;
  width: 75%; }

.widget_filter_tag.total_4, .widget_filter_tag.total_1 .sidebar-tag {
  float: left;
  width: 100%; }

.widget_filter_tag.total_1, .widget_filter_tag.total_4 .sidebar-tag {
  float: left;
  width: 25%; }

.product-wrapper:hover .product-thumb .fade_img img.image_thumb {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.product-wrapper:hover .product-thumb .fade_img img.image_thumb_swap {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

@media (min-width: 1201px) {
  .full_width .product-list .product-thumb {
    width: auto; } }

@media screen and (max-width: 480px) {
  .product-list .product-description, .product-list .product-thumb {
    width: 100%;
    text-align: center; }

  .product-list .product-thumb {
    margin: 0 0 15px; } }
/** Product image hover effect **/
.product-thumb .left_img .image_thumb_swap {
  left: -100%;
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
  -webkit-transition: left 0.5s ease 0s;
  -moz-transition: left 0.5s ease 0s;
  -ms-transition: left 0.5s ease 0s;
  -o-transition: left 0.5s ease 0s;
  transition: left 0.5s ease 0s; }

.product-thumb .right_img .image_thumb_swap {
  right: -100%;
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
  -webkit-transition: right 0.5s ease 0s;
  -moz-transition: right 0.5s ease 0s;
  -ms-transition: right 0.5s ease 0s;
  -o-transition: right 0.5s ease 0s;
  transition: right 0.5s ease 0s; }

.product-wrapper:hover .product-thumb .left_img .image_thumb_swap, .product-wrapper:hover .product-thumb .right_img .image_thumb_swap {
  left: 0;
  right: 0; }

.product-thumb .zoom_img .image_thumb_swap {
  bottom: 25px;
  left: auto;
  margin: 0 auto;
  position: absolute;
  right: 10px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  transform-origin: 100% 100% 0;
  -webkit-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  border: 10px solid #ffffff; }
  @media screen and (max-width: 767px) {
    .product-thumb .zoom_img .image_thumb_swap {
      bottom: 100px; } }

@media screen and (max-width: 767px) {
  .product-short-list .product-thumb .zoom_img .image_thumb_swap,
  .product-list .product-thumb .zoom_img .image_thumb_swap {
    bottom: 25px; } }
.product-wrapper:hover .product-thumb .zoom_img .image_thumb_swap {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  border-color: transparent;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

#tt-megamenu .list_products_menu .product-wrapper .thumbs .grid-view-item a.grid-view-item__link {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden; }

/*product css*/
.slider-specialproduct .grid__item {
  padding: 0 15px; }

.slider-specialproduct .item-row.grid-view-item {
  position: relative; }

.btn.dropdown-toggle:focus, .dropdown-toggle.btn--secondary:focus, input.dropdown-toggle[type="submit"]:focus, .btn.dropdown-toggle:active, .dropdown-toggle.btn--secondary:active, input.dropdown-toggle[type="submit"]:active {
  color: #777777;
  background-color: #f6bb25; }

.product-description .spr-badge-caption {
  display: none; }

.loadding-wishbutton-aliquam-quat-voluptatem.loading.btn i, .loadding-wishbutton-aliquam-quat-voluptatem.loading.btn--secondary i, input.loadding-wishbutton-aliquam-quat-voluptatem.loading[type="submit"] i {
  background: none; }

.tt-product-item .product-description {
  width: 100%;
  float: left; }

/*---------------- recently viewed products ------------------*/
#recently-viewed-products {
  float: left;
  width: 100%;
  margin: 10px 0 0; }

#recently-viewed-products .product-wrapper .product-description .grid-view-item__title {
  margin: 12px 0 8px; }

#recently-viewed-products .product-wrapper .product-description span.price {
  margin: 0 0 10px;
  float: none;
  display: inline-block;
  vertical-align: top; }

#recently-viewed-products-wrap > .container {
  padding: 0; }

#recently-viewed-products-wrap {
  float: left;
  width: 100%;
  margin: 40px 0; }
  @media screen and (max-width: 1199px) {
    #recently-viewed-products-wrap {
      margin: 20px 0; } }
  @media screen and (max-width: 767px) {
    #recently-viewed-products-wrap {
      margin: 15px 0; } }

@media screen and (max-width: 1199px) {
  #recently-viewed-products .product.item-row {
    width: 33.33%; }

  #recently-viewed-products .product.item-row:nth-child(4) {
    display: none; } }
@media screen and (max-width: 767px) {
  #recently-viewed-products .product.item-row {
    width: 50%; } }
@media screen and (max-width: 410px) {
  #recently-viewed-products .product.item-row {
    width: 100%; } }
.medium--one-third.large--one-third chair.product-grid .product-description {
  padding: 15px 10px;
  border-top: 1px solid #e5e5e5;
  position: relative;
  display: inline-block; }

/*--------------------- wishlist page -----------------------*/
.template-page .product-thumbnail img {
  float: none;
  display: inline-block;
  vertical-align: top;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.template-page .product-thumbnail img:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }

.wishlist_table thead th span {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #222; }

.wishlist_table .product-remove, .wishlist_table .product-thumbnail, .wishlist_table .product-name,
.wishlist_table .product-price, .wishlist_table .product-stock-stauts,
.wishlist_table .wishlist-product-price.product-price, .wishlist_table .product-stock-status, .wishlist_table .product-add-to-cart {
  text-align: center;
  padding: 15px;
  position: relative;
  font-family: Lato, Helvetica, Sans-serif; }

@media screen and (max-width: 767px) {
  .wishlist_table td.product-thumbnail {
    float: left;
    width: 100px; } }
.wishlist_table .product-stock-status .wishlist-out-of-stock {
  font-weight: 600;
  color: #ff0000; }

.wishlist_table .wishlist-product-price.product-price span.money {
  color: #111111; }

.wishlist_table .product-remove .remove_from_wishlist {
  font-size: 16px;
  font-weight: 700;
  height: 20px;
  left: 0;
  line-height: 20px;
  position: absolute;
  right: 0;
  width: 20px;
  top: 60px;
  margin: 0 auto; }
  @media screen and (max-width: 991px) {
    .wishlist_table .product-remove .remove_from_wishlist {
      right: 5px;
      top: 50px; } }
  @media screen and (max-width: 650px) {
    .wishlist_table .product-remove .remove_from_wishlist {
      top: 30px; } }

.wishlist_table .product-remove .remove_from_wishlist:hover {
  background: #000 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  color: #fff; }

.template-page .shop_table > thead {
  background: #f5f5f5; }

.filter-wrapper {
  float: left;
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin: 0 0 30px 0;
  background: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }

.sorting_wrapper {
  display: flex;
  float: left; }

@media screen and (max-width: 767px) {
  .template-page .contact-us-page {
    padding: 0; } }
@media screen and (max-width: 480px) {
  .full_width.wrap_right_filter .sorting_wrapper {
    width: 100%; }

  .wishlist_table td.product-thumbnail {
    width: 100px;
    float: left; } }
/*============================================================================
  product button css
==============================================================================*/
.product-wrapper .btn_wrapper .pro_btn form {
  float: left;
  height: 100%;
  margin: 0;
  width: 100%; }

.grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i {
  height: 40px;
  width: 40px;
  float: left;
  font-size: 20px;
  line-height: 42px;
  color: #333333;
  text-align: center; }

.grid-view-item .product-wrapper .btn_wrapper .pro_btn:hover a > i,
.grid-view-item .product-wrapper .btn_wrapper .pro_btn:active a > i,
.grid-view-item .product-wrapper .btn_wrapper .pro_btn:focus a > i {
  color: #f6bb25;
  border-radius: 25px; }

.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:hover a > i.mdi-refresh,
.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:active a > i.mdi-refresh,
.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:focus a > i.mdi-refresh {
  background-color: #f6bb25; }

.style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:hover a > i.mdi-refresh,
.style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:active a > i.mdi-refresh,
.style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:focus a > i.mdi-refresh {
  background: none; }

.grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline::before {
  content: "\F111"; }

.product-wrapper .btn_wrapper .pro_btn a {
  background-color: white;
  cursor: pointer;
  float: left;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: relative;
  z-index: 1; }

.product-wrapper .btn_wrapper .pro_btn:hover a::after,
.product-wrapper .btn_wrapper .pro_btn:active a::after,
.product-wrapper .btn_wrapper .pro_btn:focus a::after {
  background-color: #f6bb25; }

.product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart, .grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a,
.product-short-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart, .grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a {
  width: auto;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px; }

.product-list .grid-view-item .btn_wrapper .add_tocart .add_cart,
.product-short-list .grid-view-item .btn_wrapper .add_tocart .add_cart {
  color: #333333;
  display: inline-block !important;
  vertical-align: top;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

@media screen and (max-width: 767px) {
  .product-list .grid-view-item .btn_wrapper .add_tocart .add_cart,
  .product-short-list .grid-view-item .btn_wrapper .add_tocart .add_cart {
    display: none !important; } }
.product-list .grid-view-item .btn_wrapper .add_tocart:hover .add_cart,
.product-list .grid-view-item .btn_wrapper .add_tocart:active .add_cart,
.product-list .grid-view-item .btn_wrapper .add_tocart:focus .add_cart,
.product-short-list .grid-view-item .btn_wrapper .add_tocart:hover .add_cart,
.product-short-list .grid-view-item .btn_wrapper .add_tocart:active .add_cart,
.product-short-list .grid-view-item .btn_wrapper .add_tocart:focus .add_cart {
  color: #f6bb25; }

.product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline,
.product-short-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline {
  text-align: right;
  width: 40px;
  height: 40px;
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

@media screen and (max-width: 767px) {
  .product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline,
  .product-short-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline {
    text-align: center; } }
.product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn:hover a > i.mdi-cart-outline,
.product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn:active a > i.mdi-cart-outline,
.product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn:focus a > i.mdi-cart-outline,
.product-short-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn:hover a > i.mdi-cart-outline,
.product-short-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn:active a > i.mdi-cart-outline,
.product-short-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn:focus a > i.mdi-cart-outline {
  color: #f6bb25; }

.product-wrapper .btn_wrapper .added-wishlist.add_to_wishlist {
  background: #f6bb25;
  float: left;
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.style2.grid-view-item .product-wrapper .btn_wrapper .added-wishlist.add_to_wishlist {
  border-color: #f6bb25; }

.product-wrapper .btn_wrapper .added-wishlist.add_to_wishlist .mdi.mdi-heart {
  color: #f6bb25 !important; }

@media screen and (max-width: 1199px) {
  .product-short-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline {
    text-align: center; } }
/*---------- style1 ---------*/
.style1.product-layouts.grid-view-item .product-wrapper:hover, .related-products .style1.product-layouts.grid-view-item .product-wrapper:hover,
#recently-viewed-products .style1 .product-wrapper:hover, .search-products .style1 .product-wrapper:hover, #specialproduct_products_slider .style1 .product-wrapper:hover {
  border-color: #f23e44; }

.style1 .product-wrapper .btn_wrapper .pro_btn {
  display: inline-block;
  vertical-align: top;
  height: 40px;
  width: 40px;
  cursor: pointer;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px; }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn, .product-list .style2 .product-wrapper .btn_wrapper .pro_btn, .product-list .style3 .product-wrapper .btn_wrapper .pro_btn {
  display: inline-block; }

.product-list .grid-view-item.style1 .btn_wrapper .add_tocart .add_cart,
.product-short-list .grid-view-item.style1 .btn_wrapper .add_tocart .add_cart {
  color: #333333;
  padding: 9px 16px 9px 6px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }
  @media screen and (max-width: 767px) {
    .product-list .grid-view-item.style1 .btn_wrapper .add_tocart .add_cart,
    .product-short-list .grid-view-item.style1 .btn_wrapper .add_tocart .add_cart {
      display: none !important; } }

.product-list .grid-view-item.style1 .btn_wrapper .add_tocart:hover .add_cart {
  color: #f6bb25; }

@media screen and (max-width: 767px) {
  .product-list .grid-view-item.style1 .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline {
    text-align: center; } }

.style1 .product-wrapper .spr-badge-caption {
  display: none; }

.style1 .product-wrapper .product-title-review .grid-view-item__title {
  margin: 0 0 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 18px; }

.style1 .product-wrapper .product-title-review {
  float: left;
  width: 100%;
  padding: 10px; }

.product-short-list .style1.product-layouts.grid-view-item .product-wrapper .spr-badge {
  position: static;
  text-align: left; }
  @media screen and (max-width: 767px) {
    .product-short-list .style1.product-layouts.grid-view-item .product-wrapper .spr-badge {
      width: 100%; } }

.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn > i,
.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns > i {
  display: inline-block;
  vertical-align: top;
  float: none;
  border-radius: 0;
  text-align: center;
  color: #333333;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media screen and (min-width: 992px) {
    .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn > i,
    .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns > i {
      font-size: 24px; } }

.style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart,
.style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
  display: inline-block;
  vertical-align: top;
  color: #333333;
  text-transform: capitalize;
  float: none;
  width: auto;
  padding: 15px 16px 15px 6px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

@media screen and (min-width: 992px) {
  .style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn a.add-cart-btn > i {
    text-align: right; } }
.style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

.style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
  padding: 10px 20px 10px 5px; }
  @media screen and (min-width: 481px) and (max-width: 544px) {
    .style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
      padding: 10px 8px 10px 0; } }

.collection_template .style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
  padding: 10px 16px 10px 5px; }

@media screen and (max-width: 991px) {
  .style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
    display: none; } }
.style3 .grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: right; }
  @media screen and (max-width: 767px) {
    .style3 .grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
      text-align: center; } }

@media screen and (max-width: 1199px) {
  .product-short-list.style3 .grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
    text-align: center; } }
.product-list .style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart,
.product-short-list .style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
  padding: 10px 20px 10px 6px; }

.style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart:hover span.add_cart,
.style3.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart:hover span.add_cart {
  color: #f6bb25; }

.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart:hover .add-cart-btn > i,
.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart:hover .add-cart-btns > i {
  color: #f6bb25; }

.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart {
  width: 100%;
  height: auto; }

.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn,
.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns {
  width: 100%;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
  height: 50px;
  position: relative;
  z-index: 1; }

.product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn::after, .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns::after,
.product-wrapper .btn_wrapper .pro_btn.add-to-wishlist .add-in-wishlist-js::after,
.product-wrapper .btn_wrapper .pro_btn.quick-view-wrap a.quick-view-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  color: #f6bb25;
  border-color: #f6bb25;
  background-color: #f6bb25;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0.5, 1);
  -moz-transform: scale(0.5, 1);
  -ms-transform: scale(0.5, 1);
  -o-transform: scale(0.5, 1);
  transform: scale(0.5, 1); }

.product-wrapper .btn_wrapper .pro_btn.add_tocart:hover .add-cart-btn::after, .product-wrapper .btn_wrapper .pro_btn.add_tocart:hover .add-cart-btns::after,
.product-wrapper .btn_wrapper .pro_btn.add_tocart:focus .add-cart-btn::after, .product-wrapper .btn_wrapper .pro_btn.add_tocart:focus .add-cart-btns::after,
.product-wrapper .btn_wrapper .pro_btn.add_tocart:active .add-cart-btn::after, .product-wrapper .btn_wrapper .pro_btn.add_tocart:active .add-cart-btns::after,
.product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:hover .add-in-wishlist-js::after,
.product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:focus .add-in-wishlist-js::after,
.product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:active .add-in-wishlist-js::after,
.product-wrapper .btn_wrapper .pro_btn.quick-view-wrap:hover a.quick-view-text::after,
.product-wrapper .btn_wrapper .pro_btn.quick-view-wrap:focus a.quick-view-text::after,
.product-wrapper .btn_wrapper .pro_btn.quick-view-wrap:active a.quick-view-text::after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn::after,
.style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns::after {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn::after,
.product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn::after {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px; }

.style1 .product-wrapper:hover .btn_wrapper .pro_btn.add_tocart .add-cart-btn {
  color: #f6bb25; }

.product-list .style1.product-layouts.grid-view-item .product-wrapper .spr-badge {
  position: static;
  text-align: left; }
  @media screen and (max-width: 767px) {
    .product-list .style1.product-layouts.grid-view-item .product-wrapper .spr-badge {
      width: 100%; } }

.product-list .style1 .product-wrapper .btn_wrapper .main-btn,
.product-short-list .style1 .product-wrapper .btn_wrapper .main-btn {
  display: inline-block;
  vertical-align: top;
  position: static;
  width: auto;
  float: none; }

.style1 .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist, .style1 .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap {
  margin: 0 0 5px;
  background: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .style1 .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist, .style1 .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.style1 .product-wrapper .btn_wrapper .added-wishlist.add_to_wishlist {
  background: none; }

.style1 .product-wrapper:hover .btn_wrapper .pro_btn.add-to-wishlist,
.style1 .product-wrapper:hover .btn_wrapper .pro_btn.quick-view-wrap {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style1 .product-price__sale-label, .style1 .product-wrapper .custom_label {
  left: 0;
  right: auto;
  top: 35px; }
  @media screen and (max-width: 767px) {
    .style1 .product-price__sale-label, .style1 .product-wrapper .custom_label {
      left: 10px; } }

.style1 .product-wrapper .custom_label {
  top: 15px; }

.style1 .product-wrapper:hover .product-price__sale-label, .style1 .product-wrapper:hover .custom_label {
  top: 35px;
  left: 10px; }
  @media screen and (max-width: 767px) {
    .style1 .product-wrapper:hover .product-price__sale-label, .style1 .product-wrapper:hover .custom_label {
      left: 10px; } }

.style1 .product-wrapper:hover .custom_label {
  top: 15px; }

.style1.product-layouts.grid-view-item .product-wrapper .product-description,
.related-products .style1.product-layouts.grid-view-item .product-wrapper .product-description,
#recently-viewed-products .style1 .product-wrapper .product-description,
.search-products .style1 .product-wrapper .product-description,
#specialproduct_products_slider .style1 .product-wrapper .product-description {
  padding: 15px 10px 10px 10px;
  text-align: left; }

.style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price {
  text-align: left; }

@media screen and (max-width: 480px) {
  .product-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price,
  .product-short-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta .grid-link__org_price {
    text-align: center; } }
.product-list .style1.product-layouts.grid-view-item .product-wrapper,
.product-short-list .style1.product-layouts.grid-view-item .product-wrapper {
  border: none; }

.style1.product-layouts.grid-view-item .product-wrapper .spr-badge,
.related-products .style1.product-layouts.grid-view-item .product-wrapper .spr-badge,
#recently-viewed-products .style1 .product-wrapper .spr-badge,
.search-products .style1 .product-wrapper .spr-badge,
#specialproduct_products_slider .style1 .product-wrapper .spr-badge {
  text-align: left;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style1.product-layouts.grid-view-item .product-wrapper:hover .spr-badge,
.related-products .style1.product-layouts.grid-view-item .product-wrapper:hover .spr-badge,
#recently-viewed-products .style1 .product-wrapper:hover .spr-badge,
.search-products .style1 .product-wrapper:hover .spr-badge,
#specialproduct_products_slider .style1 .product-wrapper:hover .spr-badge {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }
  @media screen and (max-width: 767px) {
    .style1.product-layouts.grid-view-item .product-wrapper:hover .spr-badge,
    .related-products .style1.product-layouts.grid-view-item .product-wrapper:hover .spr-badge,
    #recently-viewed-products .style1 .product-wrapper:hover .spr-badge,
    .search-products .style1 .product-wrapper:hover .spr-badge,
    #specialproduct_products_slider .style1 .product-wrapper:hover .spr-badge {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

@media screen and (max-width: 767px) {
  .style1.product-layouts.grid-view-item .product-wrapper .flip-countdown.simple-countdown {
    bottom: 12px; } }
@media screen and (max-width: 481px) {
  .style1 .product-price__price, .style1 .product-price__price .money, .style1 .price, price .money {
    font-size: 14px; } }
.style1 .product-wrapper .slider-for {
  float: left;
  width: 100%; }

.style1 .product-wrapper .product-thumb:hover img.image_thumb {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9; }

.style1 .product-wrapper .product-thumb:hover .slider-for a::before {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style1 .product-wrapper .slider-for a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .grid-item {
  cursor: pointer; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .grid-item.slick-slide.open img,
.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .grid-item.slick-slide.open.slick-current img {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }

.style1 .product-wrapper .product-thumb:hover .slider-nav.product-single__thumbs {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  right: 0; }

.style1 .product-wrapper .product-thumb:hover .fade_img img.image_thumb {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs {
  float: left;
  width: 84px;
  padding: 54px 5px 54px 5px;
  right: -95px;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  z-index: 9;
  position: absolute !important;
  top: 0;
  bottom: 0;
  height: 100%;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  text-align: center; }
  @media screen and (min-width: 1200px) and (max-width: 1229px) {
    .style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs {
      padding: 40px 5px 40px 5px; } }
  @media screen and (max-width: 481px) {
    .style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs {
      padding: 50px 5px 50px 5px; } }

@media screen and (max-width: 767px) {
  .collection_template .style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs {
    padding: 45px 5px 45px 5px; } }
@media screen and (max-width: 320px) {
  .collection_template .style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs {
    padding: 55px 5px 55px 5px; } }
.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .slick-arrow {
  border: none;
  cursor: pointer;
  background: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .slick-prev.slick-arrow {
  left: 0;
  right: 0;
  top: 0;
  bottom: auto; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .slick-next.slick-arrow {
  left: 0;
  right: 0;
  bottom: 0;
  top: auto; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .slick-arrow:hover i {
  color: #515151; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .slick-arrow .mdi-chevron-left:before {
  content: "\f143";
  font-size: 28px; }

.style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs .slick-arrow .mdi-chevron-right:before {
  content: "\f140";
  font-size: 28px; }

.style1.product-layouts.grid-view-item .product-wrapper .product-description .spr-badge {
  float: left;
  width: 100%;
  position: static;
  margin: 0 0 8px;
  text-align: left; }

@media screen and (max-width: 480px) {
  .product-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .spr-badge,
  .product-short-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .spr-badge {
    text-align: center; } }
.style1.product-layouts.grid-view-item .product-wrapper:hover .spr-badge {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper {
  position: absolute;
  float: left;
  width: auto;
  left: auto;
  right: 0;
  bottom: auto;
  -webkit-transform: translateX(90px);
  -moz-transform: translateX(90px);
  -ms-transform: translateX(90px);
  -o-transform: translateX(90px);
  transform: translateX(90px);
  -webkit-transition: all 0.3s 0.1s;
  -moz-transition: all 0.3s 0.1s;
  -ms-transition: all 0.3s 0.1s;
  -o-transition: all 0.3s 0.1s;
  transition: all 0.3s 0.1s; }
  @media screen and (max-width: 767px) {
    .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); } }

.style1.product-layouts.grid-view-item .product-wrapper:hover .btn_wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.style1.product-layouts .product-wrapper .main_btn_wrapper {
  float: left;
  width: 100%;
  position: absolute;
  bottom: 15px;
  opacity: 0;
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 0.3s 0.1s;
  -moz-transition: all 0.3s 0.1s;
  -ms-transition: all 0.3s 0.1s;
  -o-transition: all 0.3s 0.1s;
  transition: all 0.3s 0.1s;
  left: 8px;
  cursor: pointer; }

.style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a i {
  float: left;
  font-weight: 500; }

.style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart:hover a i {
  color: #f6bb25; }

.style1.product-layouts .product-wrapper:hover .main_btn_wrapper {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.style1.product-layouts .product-wrapper .product-description .main_btn_wrapper form {
  margin: 0; }

.product-list .style1.product-layouts .product-wrapper .main_btn_wrapper,
.product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper {
  position: static;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  width: auto; }
  @media screen and (max-width: 481px) {
    .product-list .style1.product-layouts .product-wrapper .main_btn_wrapper,
    .product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper {
      margin: 0 0 10px; } }
  @media screen and (max-width: 480px) {
    .product-list .style1.product-layouts .product-wrapper .main_btn_wrapper,
    .product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper {
      float: none;
      display: inline-block;
      vertical-align: top; } }

.product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper {
  margin: 15px 0; }

.product-list .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper,
.product-short-list .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper {
  position: static;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  margin: 0 0 5px 10px; }
  @media screen and (max-width: 481px) {
    .product-list .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper,
    .product-short-list .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper {
      margin: 0 0 10px 8px; } }
  @media screen and (max-width: 480px) {
    .product-list .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper,
    .product-short-list .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper {
      float: none;
      display: inline-block;
      vertical-align: top;
      margin: 0 0 10px 4px; } }

.product-short-list .style1.product-layouts.grid-view-item .product-wrapper .btn_wrapper {
  margin: 15px 0 15px 10px; }

.style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
  -webkit-transition: all 0.3s 0.1s;
  -moz-transition: all 0.3s 0.1s;
  -ms-transition: all 0.3s 0.1s;
  -o-transition: all 0.3s 0.1s;
  transition: all 0.3s 0.1s;
  margin: 0 0 8px; }

.style1.product-layouts.grid-view-item .product-wrapper:hover .product-description .grid-view-item__meta {
  -webkit-transform: translateX(70px);
  -moz-transform: translateX(70px);
  -ms-transform: translateX(70px);
  -o-transform: translateX(70px);
  transform: translateX(70px);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.product-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta,
.product-short-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a,
.product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a {
  float: none;
  display: inline-block;
  vertical-align: top;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }

.product-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a i,
.product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a i {
  float: left;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: right;
  color: #333333; }
  @media screen and (max-width: 767px) {
    .product-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a i,
    .product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a i {
      text-align: center; } }

.product-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart:hover a i,
.product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart:hover a i {
  color: #f6bb25; }

@media screen and (max-width: 1199px) {
  .product-short-list .style1.product-layouts .product-wrapper .main_btn_wrapper .pro_btn.add_tocart a i {
    text-align: center; } }
.product-list .style1 .product-wrapper .main_btn_wrapper .pro_btn.add_tocart span.add_cart,
.product-short-list .style1 .product-wrapper .main_btn_wrapper .pro_btn.add_tocart span.add_cart {
  float: none;
  display: inline-block !important;
  vertical-align: top;
  padding: 13px 25px 13px 5px;
  line-height: 14px;
  position: relative; }
  @media screen and (max-width: 767px) {
    .product-list .style1 .product-wrapper .main_btn_wrapper .pro_btn.add_tocart span.add_cart,
    .product-short-list .style1 .product-wrapper .main_btn_wrapper .pro_btn.add_tocart span.add_cart {
      display: none !important; } }

@media screen and (max-width: 1199px) {
  .product-short-list .style1 .product-wrapper .main_btn_wrapper .pro_btn.add_tocart span.add_cart {
    display: none !important; } }
.product-list .style1 .product-wrapper .btn_wrapper .pro_btn, .product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn {
  position: static;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  margin: 0 3px 0 0;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1); }

.product-short-list .style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs {
  display: none; }
  @media screen and (max-width: 480px) {
    .product-short-list .style1 .product-wrapper .product-thumb .slider-nav.product-single__thumbs {
      display: block; } }

.product-short-list .style1 .product-wrapper .slider-for a::before {
  display: none; }
  @media screen and (max-width: 480px) {
    .product-short-list .style1 .product-wrapper .slider-for a::before {
      display: flex; } }

.style1 .product-wrapper .main_btn_wrapper .pro_btn.add_tocart span.add_cart {
  padding: 0;
  float: left;
  color: #333333;
  text-transform: capitalize;
  line-height: 24px;
  font-weight: 500;
  margin: 0 0 0 4px;
  display: block !important; }

.style1 .product-wrapper .main_btn_wrapper .pro_btn.add_tocart:hover span.add_cart {
  color: #f6bb25; }

@media screen and (max-width: 480px) {
  .product-list .style1.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value,
  .product-short-list .style1.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value {
    width: 100%; }

  .product-list .style1.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value li,
  .product-short-list .style1.product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value li {
    float: none;
    vertical-align: top; } }
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btns::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist .add-in-wishlist-js::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist .add-in-wishlist-js::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist .add-in-wishlist-js::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap a.quick-view-text::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap a.quick-view-text::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap a.quick-view-text::after {
  background: none; }

.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart:hover .add-cart-btn::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart:hover .add-cart-btns::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart:focus .add-cart-btn::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart:focus .add-cart-btns::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart:active .add-cart-btn::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add_tocart:active .add-cart-btns::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:hover .add-in-wishlist-js::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:focus .add-in-wishlist-js::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist:active .add-in-wishlist-js::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap:hover a.quick-view-text::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap:focus a.quick-view-text::after,
.style1.product-layouts .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap:active a.quick-view-text::after {
  background: none; }

@media screen and (max-width: 767px) {
  .product-list .style1 .product-wrapper .product-price__price .money,
  .product-short-list .style1 .product-wrapper .product-price__price .money {
    color: #222222; }

  .product-list .style1 .product-wrapper .product-price__price.compare_price,
  .product-short-list .style1 .product-wrapper .product-price__price.compare_price {
    color: #777777; } }
.product-list .style1 .product-wrapper {
  border: none; }

.product-list .style1.product-layouts.grid-view-item .product-wrapper:hover .product-description {
  background: none; }

.product-list .style1.product-layouts.grid-view-item .product-wrapper .product-description {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  padding: 0 15px;
  background: none;
  text-align: left; }
  @media screen and (max-width: 480px) {
    .product-list .style1.product-layouts.grid-view-item .product-wrapper .product-description {
      text-align: center; } }

@media screen and (max-width: 480px) {
  .product-short-list .style1.product-layouts.grid-view-item .product-wrapper .product-description {
    text-align: center; } }
.product-short-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
  margin: 20px 0; }
  @media screen and (max-width: 480px) {
    .product-short-list .style1.product-layouts.grid-view-item .product-wrapper .product-description .grid-view-item__meta {
      margin: 0; } }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn,
.product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn {
  position: static;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  margin: 0 3px 0 0;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn > i,
.product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn > i {
  display: block;
  float: left;
  line-height: 40px; }

.product-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart::after,
.product-short-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart::after {
  display: none;
  color: #333333; }

.product-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover span.add_cart, .product-short-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover span.add_cart,
.product-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:active span.add_cart, .product-short-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:active span.add_cart,
.product-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:focus span.add_cart, .product-short-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:focus span.add_cart {
  background: none;
  color: #f6bb25; }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover > i, .product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover > i,
.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:active > i, .product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:active > i,
.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:focus > i, .product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:focus > i {
  color: #f6bb25; }

.product-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover span.add_cart,
.product-short-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover span.add_cart {
  padding: 9px 16px 9px 6px; }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn,
.product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn {
  height: 40px;
  background-color: white;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover::after, .product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:hover::after,
.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:active::after, .product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:active::after,
.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:focus::after, .product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart .add-cart-btn:focus::after {
  background: #f6bb25; }

.product-list .style1.grid-view-item .product-wrapper:hover .btn_wrapper .pro_btn.add_tocart span.add_cart,
.product-short-list .style1.grid-view-item .product-wrapper:hover .btn_wrapper .pro_btn.add_tocart span.add_cart {
  color: #333333; }

.product-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart,
.product-short-list .style1 .product-wrapper .btn_wrapper .pro_btn.add_tocart {
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24); }

.product-list .style1 .product-wrapper .product-title-review {
  background: none;
  padding: 0;
  border: none; }

.product-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart,
.product-short-list .style1.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  color: #333333;
  padding: 9px 16px 9px 6px; }

/*---------- style2 ---------*/
.style2.product-layouts .fade_img {
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.style2 .product-wrapper .btn_wrapper .pro_btn {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  float: none;
  vertical-align: top;
  height: 45px;
  margin: 0 0 5px;
  position: relative;
  text-align: center;
  width: 45px;
  cursor: pointer; }

.style2 .add-to-wishlist.pro_btn .show, .style2 .pro_btn .quick-view-text.for-home, .style2 .pro_btn .add-cart-btn {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  float: left;
  height: 45px;
  width: 45px; }

.style2 .product-wrapper .product-thumb .btn_wrapper {
  right: 10px;
  left: auto;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  top: 10px; }
  @media screen and (max-width: 767px) {
    .style2 .product-wrapper .product-thumb .btn_wrapper {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.style2 .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist {
  -webkit-transform: translateX(53px);
  -moz-transform: translateX(53px);
  -ms-transform: translateX(53px);
  -o-transform: translateX(53px);
  transform: translateX(53px);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .style2 .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist {
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -o-transform: translateY(0px);
      transform: translateY(0px);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.style2 .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap {
  -webkit-transform: translateX(-53px);
  -moz-transform: translateX(-53px);
  -ms-transform: translateX(-53px);
  -o-transform: translateX(-53px);
  transform: translateX(-53px);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .style2 .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap {
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -o-transform: translateY(0px);
      transform: translateY(0px);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.style2 .product-wrapper .btn_wrapper .pro_btn.add_tocart {
  z-index: 1;
  height: 50px;
  width: 53px;
  margin: 0; }

.style2 .product-wrapper:hover .btn_wrapper .pro_btn.add-to-wishlist, .style2 .product-wrapper:hover .btn_wrapper .pro_btn.quick-view-wrap {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn a {
  border: 2px solid #f0e6d7;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  height: 45px;
  width: 45px; }

.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn:hover a,
.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn:focus a,
.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn:active a,
.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn a.add_to_wishlist {
  border-color: #f6bb25;
  -webkit-transition: all 700ms ease-in-out;
  -moz-transition: all 700ms ease-in-out;
  -ms-transition: all 700ms ease-in-out;
  -o-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out; }

.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a {
  height: 52px;
  width: 52px; }

.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
  height: 50px;
  width: 50px;
  line-height: 50px; }
  @media screen and (min-width: 1200px) {
    .style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart a > i {
      font-size: 24px; } }

.style2.grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i {
  height: 100%;
  width: 100%; }

.style2.product-list .product-wrapper .btn_wrapper .pro_btn.add_tocart, .style2.product-list .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist, .style2.product-list .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style2.product-short-list .product-wrapper .btn_wrapper .pro_btn.add_tocart, .style2.product-short-list .product-wrapper .btn_wrapper .pro_btn.add-to-wishlist, .style2.product-short-list .product-wrapper .btn_wrapper .pro_btn.quick-view-wrap {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style2.product-list .product-wrapper .btn_wrapper .pro_btn.add_tocart {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  height: 45px;
  width: auto; }

.style2.product-list .add_cart,
.style2.product-short-list .add_cart {
  padding: 10px 16px 10px 6px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
  cursor: pointer; }

.product-list .style2.grid-view-item .product-wrapper svg,
.product-short-list .style2.grid-view-item .product-wrapper svg {
  display: none; }

@media screen and (max-width: 547px) {
  .style2.product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.fa-shopping-cart {
    text-align: center; } }

.product-wrapper .product-thumb .sold-out-tag {
  margin: 0;
  position: absolute;
  height: 70px;
  width: 70px;
  line-height: 60px;
  background: #ff0000;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  padding: 5px;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto; }

.product-wrapper .product-thumb .sold-out-tag .tag {
  color: #fff;
  font-size: 12px;
  background: none;
  padding: 0;
  line-height: 16px;
  text-transform: capitalize; }

.product-list .style2 .product-wrapper .btn_wrapper .pro_btn {
  display: inline-block; }

.grid-view-item .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
  display: none; }

/*--------------------------- style3 -------------------------------*/
.product-layouts.grid-view-item.style3 .product-wrapper:hover, #recently-viewed-products.style3 .product .product-wrapper:hover {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all .5s ease-in-out 0s;
  -moz-transition: all .5s ease-in-out 0s;
  -ms-transition: all .5s ease-in-out 0s;
  -o-transition: all .5s ease-in-out 0s;
  transition: all .5s ease-in-out 0s; }
  @media screen and (max-width: 767px) {
    .product-layouts.grid-view-item.style3 .product-wrapper:hover, #recently-viewed-products.style3 .product .product-wrapper:hover {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      -ms-box-shadow: none;
      -o-box-shadow: none;
      box-shadow: none; } }

.product-layouts.grid-view-item.style3 .product-wrapper .product-description .spr-badge {
  -webkit-transition: all .2s ease-in-out 0s;
  -moz-transition: all .2s ease-in-out 0s;
  -ms-transition: all .2s ease-in-out 0s;
  -o-transition: all .2s ease-in-out 0s;
  transition: all .2s ease-in-out 0s;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  bottom: auto;
  margin: auto; }
  @media screen and (max-width: 991px) {
    .product-layouts.grid-view-item.style3 .product-wrapper .product-description .spr-badge {
      top: -40px; } }

.product-layouts.grid-view-item.style3 .product-wrapper:hover .product-description .spr-badge {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }
  @media screen and (max-width: 767px) {
    .product-layouts.grid-view-item.style3 .product-wrapper:hover .product-description .spr-badge {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

@media screen and (max-width: 767px) {
  .product-layouts.grid-view-item.style3 .product-wrapper:hover .product-description .grid-view-item__meta {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; } }

.product-list .product-layouts.grid-view-item.style3 .product-wrapper .product-description .spr-badge,
.product-short-list .product-layouts.grid-view-item.style3 .product-wrapper .product-description .spr-badge {
  position: static; }

.style3 .product-wrapper .btn_wrapper {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  position: absolute;
  top: auto;
  bottom: 8px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-in-out 0s;
  -moz-transition: all .4s ease-in-out 0s;
  -ms-transition: all .4s ease-in-out 0s;
  -o-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s; }
  @media screen and (max-width: 767px) {
    .style3 .product-wrapper .btn_wrapper {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      position: static; } }

.style3 .product-wrapper:hover .btn_wrapper {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style3 .product-wrapper .btn_wrapper .pro_btn {
  display: inline-block;
  vertical-align: top;
  float: none;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out 0s;
  -moz-transition: all .3s ease-in-out 0s;
  -ms-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  -webkit-transform: translate(0, 0) scale(0, 0);
  -moz-transform: translate(0, 0) scale(0, 0);
  -ms-transform: translate(0, 0) scale(0, 0);
  -o-transform: translate(0, 0) scale(0, 0);
  transform: translate(0, 0) scale(0, 0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .style3 .product-wrapper .btn_wrapper .pro_btn {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.style3 .product-wrapper:hover .btn_wrapper .pro_btn {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1, 1);
  -moz-transform: translate(0, 0) scale(1, 1);
  -ms-transform: translate(0, 0) scale(1, 1);
  -o-transform: translate(0, 0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1); }
  @media screen and (max-width: 767px) {
    .style3 .product-wrapper:hover .btn_wrapper .pro_btn {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; } }

.product-list .product-layouts.grid-view-item.style3 .product-wrapper .btn_wrapper,
.product-list .product-layouts.grid-view-item.style3 .product-wrapper:hover .grid-view-item__meta,
.product-list .product-layouts.grid-view-item.style3 .product-wrapper:hover .product-description .spr-badge {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

.product-list .product-layouts.grid-view-item.style3 .product-wrapper .product-description .grid-view-item__meta {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

.product-list .product-layouts.grid-view-item.style3 .product-wrapper:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

.product-list .style3 .product-wrapper .btn_wrapper .pro_btn {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

@media screen and (max-width: 500px) {
  .style3.product-list .product-wrapper .btn_wrapper .pro_btn.add_tocart span.add_cart {
    display: none !important; } }

.style3.product-list .add_cart,
.style3.product-short-list .add_cart {
  padding: 10px 16px 9px 10px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px; }
  @media screen and (max-width: 500px) {
    .style3.product-list .add_cart,
    .style3.product-short-list .add_cart {
      display: none; } }

@media screen and (max-width: 500px) {
  .style3.product-list .grid-view-item .product-wrapper .btn_wrapper .pro_btn a > i.mdi-cart-outline {
    text-align: center; } }

.style3.product-layouts .product-wrapper .spr-badge {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  bottom: -3px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media screen and (max-width: 767px) {
    .style3.product-layouts .product-wrapper .spr-badge {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.style3.product-layouts .product-wrapper:hover .spr-badge {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.style3.product-layouts .product-description .h4 {
  margin: 12px 0 6px; }

.style3.product-layouts .product-wrapper:hover .product-description .h4 {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; }

.style3.product-layouts.grid-view-item .product-wrapper:hover .product-description .grid-view-item__meta {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; }

.product-list .style3.product-layouts .product-wrapper:hover .product-description .h4,
.product-short-list .style3.product-layouts .product-wrapper:hover .product-description .h4 {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-list .style3.product-layouts.grid-view-item .product-wrapper:hover .product-description .grid-view-item__meta,
.product-short-list .style3.product-layouts.grid-view-item .product-wrapper:hover .product-description .grid-view-item__meta {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-list .style3 .product-wrapper .btn_wrapper,
.product-short-list .style3 .product-wrapper .btn_wrapper {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  position: static; }

.product-list .style3.product-layouts .product-description .h4 {
  margin: 8px 0 6px; }

@media screen and (max-width: 767px) {
  .collection_template .products-grid-view .grid-item.product-grid {
    clear: none; } }
/*============================================================================
  #Collection Filters
==============================================================================*/
aside.sidebar-tag.filter.color.tags img {
  width: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  float: left; }

aside.sidebar-tag.filter.color.tags li.white img {
  border: 1px solid #e5e5e5; }

.off-canvas-wrapper .collection_sidebar {
  float: left;
  width: 100%;
  padding: 0 30px;
  margin: 20px 0; }
  @media screen and (max-width: 991px) {
    .off-canvas-wrapper .collection_sidebar {
      padding: 0 20px; } }

.off-canvas-wrapper .collection_sidebar .widget ul li.product-wrapper {
  margin: 0 0 15px;
  padding: 0; }

.off-canvas-wrapper .collection_sidebar .widget.widget_promo_img {
  padding: 0;
  margin: 20px 0;
  border: none; }

.active-filter {
  font-weight: bold; }

.view-mode.filter-grid-list.grid__item {
  float: left; }

a.filter-left {
  float: left; }

.pages_list.open {
  float: left;
  position: relative;
  width: auto; }

a.filter-left {
  float: left;
  font-size: 17px; }

@media screen and (max-width: 1024px) {
  .collection-filters {
    margin-bottom: 30px; } }
.filter-sortby label, .filter-show label {
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  padding-right: 10px;
  text-transform: capitalize; }
  @media screen and (max-width: 480px) {
    .filter-sortby label, .filter-show label {
      padding-right: 5px; } }

.collection_template .sorting_wrapper .btn.dropdown-toggle, .collection_template .sorting_wrapper .dropdown-toggle.btn--secondary, .collection_template .sorting_wrapper input.dropdown-toggle[type="submit"] {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 34px 5px 15px;
  background: #fff;
  color: #777777;
  border: 1px solid #e5e5e5; }

.collection_template .sorting_wrapper .btn.dropdown-toggle:hover, .collection_template .sorting_wrapper .dropdown-toggle.btn--secondary:hover, .collection_template .sorting_wrapper input.dropdown-toggle[type="submit"]:hover,
.collection_template .sorting_wrapper.open .btn.dropdown-toggle,
.collection_template .sorting_wrapper.open .dropdown-toggle.btn--secondary,
.collection_template .sorting_wrapper.open input.dropdown-toggle[type="submit"] {
  border-color: #cccccc;
  color: #333333; }

.collection_template .sorting_wrapper .filter-sortby .btn.dropdown-toggle, .collection_template .sorting_wrapper .filter-sortby .dropdown-toggle.btn--secondary, .collection_template .sorting_wrapper .filter-sortby input.dropdown-toggle[type="submit"] {
  width: 190px;
  text-align: left; }

.collection_template .sorting_wrapper .btn.dropdown-toggle > i, .collection_template .sorting_wrapper .dropdown-toggle.btn--secondary > i, .collection_template .sorting_wrapper input.dropdown-toggle[type="submit"] > i {
  bottom: auto;
  font-size: 16px;
  line-height: 18px;
  left: auto;
  position: absolute;
  right: 10px;
  top: 7px; }

.collection_template .sorting_wrapper .collection-sorting .filter-sortby .btn.dropdown-toggle, .collection_template .sorting_wrapper .collection-sorting .filter-sortby .dropdown-toggle.btn--secondary, .collection_template .sorting_wrapper .collection-sorting .filter-sortby input.dropdown-toggle[type="submit"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.collection_template .sorting_wrapper .pages_list .btn.dropdown-toggle, .collection_template .sorting_wrapper .pages_list .dropdown-toggle.btn--secondary, .collection_template .sorting_wrapper .pages_list input.dropdown-toggle[type="submit"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.sorting-section, .pages_list {
  float: right;
  position: relative; }
  @media screen and (max-width: 480px) {
    .sorting-section, .pages_list {
      float: left; } }

.collection_wrapper ul li.active > a, .collection_wrapper ul li.active > a:hover {
  background-color: #000000;
  color: #ffffff; }

.dropdown-menu {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px;
  width: 100%;
  border-color: #e5e5e5; }

.sorting_wrapper .dropdown-menu {
  z-index: 1; }

.dropdown-menu > li > a {
  color: #777777; }

.dropdown-menu > li > a:hover {
  color: #f6bb25; }

.filter-show.grid__item {
  display: inline-block;
  margin-left: 15px; }
  @media screen and (max-width: 480px) {
    .filter-show.grid__item {
      margin-top: 15px;
      margin-left: 15px; } }

@media screen and (max-width: 480px) {
  .full_width.wrap_right_filter .filter-show.grid__item, .full_width.wrap_left_filter .filter-show.grid__item {
    margin-left: 5px; } }
.collection-sorting {
  float: right;
  display: inline-block;
  margin-top: 30px;
  /*================ Medium Up Breakpoint ================*/ }
  @media screen and (min-width: 480px) {
    .collection-sorting {
      margin: 0; }
      .collection-sorting .grid-item {
        padding: 0 10px;
        min-width: 200px; } }
  @media screen and (max-width: 530px) {
    .collection-sorting {
      margin-top: 15px; } }

@media screen and (max-width: 530px) {
  .filter-show.grid__item {
    margin: 15px 0 0 15px; } }
.filter-dropdown {
  height: 60px;
  margin: 0;
  max-width: 250px;
  position: relative; }

@media screen and (min-width: 1024px) {
  .filter-dropdown__wrapper {
    display: inline-block;
    width: 225px; }

  .sorting-filters--enabled .collection-tags {
    margin-right: 25px; } }
.supports-pointerevents .filter-dropdown__select {
  position: absolute;
  text-indent: -999px; }
.supports-pointerevents .filter-dropdown__label {
  background-color: white;
  color: #777777;
  cursor: pointer;
  display: block;
  font-family: Poppins;
  font-size: 1.07143em;
  font-weight: normal;
  margin: 13px;
  max-width: 220px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1; }
  @media screen and (min-width: 1024px) {
    .supports-pointerevents .filter-dropdown__label {
      max-width: 195px; } }

/*============================================================================
  #Collection Page
==============================================================================*/
.collection-grid {
  margin-bottom: -30px; }

.product-wrapper:hover .product-description .h4 a {
  color: #f6bb25; }

a.featured-box {
  border: 1px solid #e5e5e5;
  color: #777777;
  display: block;
  margin-bottom: 30px; }
  a.featured-box:hover {
    color: #f6bb25; }

.collection_wrapper .section-header.text-left {
  float: left;
  width: 100%; }

.collection_template .category_img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.widget_promo_img #promo-carousel img {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.collection_wrapper .filter-wrapper .sorting_wrapper {
  float: right;
  width: auto; }
  @media screen and (max-width: 480px) {
    .collection_wrapper .filter-wrapper .sorting_wrapper {
      float: left;
      width: 100%; } }

.list-collection-products .grid__item {
  margin-bottom: 25px; }

@media screen and (max-width: 991px) {
  .list-collection-products .grid__item {
    width: 33.33%; } }
@media screen and (max-width: 767px) {
  .list-collection-products .grid__item {
    width: 50%; } }
@media screen and (max-width: 767px) and (max-width: 480px) {
  .list-collection-products .grid__item {
    width: 100%; } }
.grid-item.product-list .product-wrapper .product-description .flip-countdown.simple-countdown .countdown-container {
  position: static;
  float: left;
  margin: 0 0 8px 0;
  padding: 0 5px; }

@media screen and (max-width: 480px) {
  .grid-item.product-list .product-wrapper .product-description .flip-countdown.simple-countdown .countdown-container {
    margin: 0 auto 8px auto; } }
.grid-item.product-list .product-wrapper .product-description .flip-countdown.simple-countdown {
  float: left;
  width: 100%; }

.grid-item.product-list .product-wrapper:hover .product-description .flip-countdown.simple-countdown .countdown-container {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.tt-event-overlay::after {
  content: "";
  position: absolute;
  border: 42px solid white;
  width: 50%;
  left: 0;
  height: 100%;
  border-color: white transparent transparent white;
  bottom: -45px;
  top: auto;
  z-index: -1; }

.list-collection-products .pickgradient-products:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.list-collection-products .pickgradient-products img {
  max-width: 100%;
  -webkit-transition: transform .45s;
  -moz-transition: transform .45s;
  -ms-transition: transform .45s;
  -o-transition: transform .45s;
  transition: transform .45s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

p.text-center.veiw_all_collections a span.icon.icon-chevron-right {
  padding-top: 2px;
  float: right;
  padding-left: 5px; }

p.text-center.veiw_all_collections a {
  line-height: 2.5;
  display: inline-block; }

.tt-event-overlay {
  position: absolute;
  top: 18px;
  left: 0;
  color: #000;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg); }

.list-collection-products .pickgradient-products {
  overflow: hidden;
  display: inline-block;
  width: auto;
  float: none;
  vertical-align: top;
  position: relative;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer; }

.list-collection-products .pickgradient-products .deatil {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 50px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  z-index: 1; }

.pickgradient-products > a::before,
.pickgradient-products > a::after {
  content: "";
  position: absolute;
  left: 0;
  margin: auto;
  right: 0;
  width: 100%;
  height: 50%;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition: all .4s ease-in-out 0s;
  -moz-transition: all .4s ease-in-out 0s;
  -ms-transition: all .4s ease-in-out 0s;
  -o-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s; }

.pickgradient-products > a::before {
  top: -20%;
  z-index: 1; }

.pickgradient-products > a::after {
  bottom: -20%; }

.pickgradient-products:hover > a::after {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  bottom: 0; }

.pickgradient-products:hover > a::before {
  top: 0;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8; }

.list-collection-products .pickgradient-products:hover .deatil {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

p.collection-count span {
  font-size: 14px;
  line-height: 1.5; }

p.collection-count {
  font-size: 14px;
  margin: 0;
  z-index: 1;
  -webkit-transform: rotate(317deg);
  -moz-transform: rotate(317deg);
  -ms-transform: rotate(317deg);
  -o-transform: rotate(317deg);
  transform: rotate(317deg);
  width: 100%;
  text-align: center;
  color: #333333; }

a.grid-link.collection-link span.grid-link__title {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: Lato, Helvetica, sans-serif;
  color: #fff; }

.list-collection-products .pickgradient-products .deatil .collection-detail {
  color: #fff;
  padding: 5px; }

.featured-box__body {
  border-top: 0;
  margin-top: -15px;
  padding: 15px 10px; }
  .featured-box__body .btn--large {
    background-color: #f6bb25;
    color: white;
    font-family: Poppins;
    font-size: 1em;
    margin: 0;
    padding: 7.5px 0; }
  .featured-box__body .hr--small {
    position: relative;
    top: -5px; }
  @media screen and (min-width: 1025px) {
    .featured-box__body {
      padding: 30px 0; } }

.featured-box__title {
  margin: 0; }

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .medium--one-third .featured-box__title,
  .one-third .featured-box__title {
    font-size: 1.42857em; } }
@media screen and (min-width: 1025px) {
  .large--one-third .featured-box__title,
  .one-third .featured-box__title {
    font-size: 1.42857em; } }
@media screen and (min-width: 481px) {
  .product-list .grid-view-item.product-layouts .product-wrapper .product-thumb .padding_0.right_img {
    margin: 0 -10px !important; } }
.loading-modal {
  background: white url("loader.gif") center 14px no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 50% !important;
  bottom: auto;
  left: 50% !important;
  right: auto !important;
  width: 56px;
  height: 56px;
  margin-left: -28px;
  margin-top: -28px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  text-indent: -999em;
  -webkit-box-shadow:  0 1px 4px rgba(0,0,0,0.3);
  -moz-box-shadow:  0 1px 4px rgba(0,0,0,0.3);
  -ms-box-shadow:  0 1px 4px rgba(0,0,0,0.3);
  -o-box-shadow:  0 1px 4px rgba(0,0,0,0.3);
  box-shadow:  0 1px 4px rgba(0,0,0,0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  display: block; }

@media screen and (max-width: 991px) {
  .collection_wrapper, .left-sidebar, .right-sidebar {
    width: 100%; }

  .left-sidebar, .right-sidebar {
    margin-top: 20px; } }
/*home page*/
.template-index .main-content .shopify-section {
  float: left;
  margin: 45px 0;
  width: 100%; }
  @media screen and (max-width: 1199px) {
    .template-index .main-content .shopify-section {
      margin: 25px 0; } }
  @media screen and (max-width: 480px) {
    .template-index .main-content .shopify-section {
      margin: 15px 0; } }

.template-index .main-content .shopify-section.slideshow {
  margin: 0; }

.template-index .main-content .shopify-section.Services {
  margin-top: 0; }

.template-index .main-content .shopify-section.instagram-block {
  margin-bottom: 0; }

.main-content .sidebar .shopify-section {
  margin: 0;
  text-align: left; }

@media screen and (max-width: 991px) {
  .main-content .shopify-section {
    margin: 20px auto 0;
    float: left;
    width: 100%; }

  .main-content .sidebar div#shopify-section-sidebar-promoimage {
    margin: 0;
    width: 100%;
    display: inline-block;
    float: left;
    text-align: center; }

  .product-layouts .product-wrapper .product-description .item-swatch.color_swatch_Value {
    display: none; } }
@media screen and (max-width: 991px) {
  .content-wrapper {
    width: 100%; }

  .sidebar {
    width: 100%; }

  .sidebar .widget > h4.toggle, .sidebar .widget > .toggle.h4 {
    padding: 10px; } }
@media screen and (max-width: 480px) {
  .filter-sortby .sorting-section button span {
    white-space: nowrap;
    text-overflow: ellipsis;
    float: left;
    width: 100%;
    overflow: hidden; }

  .collection_wrapper .sorting_wrapper .btn.dropdown-toggle, .collection_wrapper .sorting_wrapper .dropdown-toggle.btn--secondary, .collection_wrapper .sorting_wrapper input.dropdown-toggle[type="submit"] {
    width: 100%; } }
/*============================================================================
  #Product Page
==============================================================================*/
i.mdi {
  font-size: 16px; }

a.product-lightbox-btn.tip-top img {
  width: auto;
  height: auto; }

.quick-view.open-in .product-detail-section {
  text-align: left;
  -webkit-opacity: 1 !important;
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  opacity: 1 !important; }

.product-arrows div {
  width: 130px;
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 130px;
  padding: 15px 0;
  z-index: 1; }

.product-info {
  display: inline-block;
  text-transform: capitalize;
  margin: 10px 0 20px 0;
  background: #f7f7f7;
  padding: 5px 15px;
  float: left;
  width: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }
  @media screen and (max-width: 991px) {
    .product-info {
      margin: 15px 0; } }

@media screen and (max-width: 767px) {
  .design_5 .product-info {
    margin: 20px 0; } }
.product-information .review-wrap {
  padding: 0; }

.product-information-inner .fixed-content .qty_attr {
  padding: 0; }

.product-information-inner .product-single__price #comparePrice {
  font-size: 14px; }

.product-info > p {
  display: table;
  margin: 8px 0;
  float: none;
  display: block;
  vertical-align: top;
  width: auto; }

.product-info > p > label {
  display: table-cell;
  width: 155px;
  font-weight: 600;
  font-size: 16px;
  color: #222222;
  text-transform: capitalize;
  float: left;
  margin: 0;
  font-family: Lato, Helvetica, Sans-serif; }

.product-information-inner .product-actions .selector-wrapper {
  float: left;
  margin: 0 5px 10px 0;
  width: 140px; }

.product-information .flip-countdown .countdown-container {
  float: none;
  width: auto;
  position: relative;
  border: none; }

.product-information .flip-countdown.simple-countdown .countdown-container::after {
  left: 10px; }

.spr-summary-starrating {
  font-size: 10px;
  color: #ffbf34; }

.spr-starratings {
  font-size: 12px !important;
  color: #ffbf34; }

.spr-review-header .spr-review-header-title {
  font-size: 14px;
  margin: 0;
  font-weight: 600; }

.spr-review {
  padding: 15px 0 !important; }

.spr-container {
  padding: 20px !important;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.spr-badge-starrating {
  margin: 0 !important; }

.spr-form {
  padding: 0 !important; }

span.spr-badge-caption {
  padding-left: 10px; }

#shopify-product-reviews .spr-content .spr-form-title {
  margin-bottom: 15px !important;
  color: #222222;
  font: 600 16px/30px Lato, Helvetica, sans-serif; }

.spr-icon {
  font-size: 11px !important;
  line-height: 12px !important; }

.spr-icon.spr-icon-star-empty {
  color: #ffbc00; }

.spr-form-input.spr-starrating .spr-icon {
  color: #ffbc00; }

.spr-form-input.spr-starrating .spr-icon.spr-icon-star-empty {
  color: #5c5c5c; }

.spr-form-input.spr-starrating .spr-icon.spr-icon-star-empty.spr-icon-star-hover {
  color: #ffbc00;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-single .product-single__description .spr-icon:hover.spr-icon-star-empty {
  color: #ffbc00 !important;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

#shopify-product-reviews .spr-form-label, #shopify-product-reviews .spr-review-content-body {
  font: 600 14px/20px Lato, Helvetica, sans-serif;
  margin: 0 0 5px;
  color: #222222; }

#shopify-product-reviews .spr-review-content-body {
  font-weight: 400; }

.product-single .product-single__thumbs .grid-item.slick-slide a {
  float: left; }

.product-single .product-single__thumbs .grid-item.slick-slide a:hover {
  border-color: #ddd; }

.product-information-inner .product-single__price span#productPrice {
  font: 600 16px/24px Lato, Helvetica, sans-serif;
  color: #111111; }

.product-single .social-sharing span.icon {
  -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  height: 30px;
  width: 30px;
  float: left;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #fff;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

.product-single .social-sharing span.icon:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px); }

.product-single .social-sharing span.icon.icon-facebook {
  background: #3b5998; }

.product-single .social-sharing span.icon.icon-twitter {
  background: #00aced; }

.product-single .social-sharing span.icon.icon-pinterest {
  background: #c8232c; }

.product-single .social-sharing span.icon.icon-instagram {
  background: #0077B5; }

.product-single .social-sharing span.icon.icon-google_plus {
  background: #d34836; }

.product-single .social-sharing span.share-title {
  display: none; }

/*----- product tab ------*/
.TTProduct-Tab .nav-tabs > li {
  float: none;
  margin-bottom: 0;
  display: inline-block;
  position: relative; }

.TTProduct-Tab .nav-tabs > li.current > a,
.TTProduct-Tab .nav-tabs > li > a:hover,
.TTProduct-Tab .nav-tabs > li > a:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: #fff; }

.TTProduct-Tab .nav-tabs > li:last-child > a {
  margin-right: 0; }

.TTProduct-Tab .nav-tabs > li > a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  font: 700 16px/20px Lato, Helvetica, sans-serif;
  outline: medium none;
  padding: 10px 20px;
  position: relative;
  text-transform: capitalize;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  margin: 0 2px;
  border: none;
  z-index: 1; }
  @media screen and (max-width: 767px) {
    .TTProduct-Tab .nav-tabs > li > a {
      margin: 0 0 5px 0; } }
  @media screen and (max-width: 480px) {
    .TTProduct-Tab .nav-tabs > li > a {
      padding: 8px 25px; } }

.TTProduct-Tab .nav-tabs > li > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  transition: all 500ms ease-in-out 0s;
  -webkit-transform: scale(0.5, 1);
  -moz-transform: scale(0.5, 1);
  -ms-transform: scale(0.5, 1);
  -o-transform: scale(0.5, 1);
  transform: scale(0.5, 1); }

.TTProduct-Tab .nav-tabs > li > a:hover::after,
.TTProduct-Tab .nav-tabs > li > a:focus::after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

.TTProduct-Tab .nav-tabs > li.active > a,
.TTProduct-Tab .nav-tabs > li.active > a:hover,
.TTProduct-Tab .nav-tabs > li.active > a:focus,
.TTProduct-Tab .nav-tabs > li > a:hover,
.TTProduct-Tab .nav-tabs > li > a:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: none; }

.product-single__description .product_tab_wrapper {
  clear: both;
  margin: 80px 0 40px;
  text-align: center;
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px; }
  @media screen and (max-width: 1199px) {
    .product-single__description .product_tab_wrapper {
      margin: 30px 0 40px; } }
  @media screen and (max-width: 767px) {
    .product-single__description .product_tab_wrapper {
      margin: 20px 0 30px; } }
  @media screen and (max-width: 481px) {
    .product-single__description .product_tab_wrapper {
      margin: 15px 0; } }

.product_tab_wrapper ul.tabs li > a {
  float: left;
  margin: 0 40px 0 0;
  padding: 10px 0px;
  text-transform: capitalize;
  font: 600 18px/22px Lato, Helvetica, sans-serif; }
  @media screen and (max-width: 480px) {
    .product_tab_wrapper ul.tabs li > a {
      width: 100%; } }

@media screen and (max-width: 480px) {
  .product-single__description .tabs > li {
    width: 100%; } }
.product_tab_wrapper .nav-tabs > li > a::before, .product_tab_wrapper .nav-tabs > li > a::before {
  background: #232323 none repeat scroll 0 0;
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  width: 0;
  margin: auto;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.product_tab_wrapper .nav-tabs > li.active > a::before, .product_tab_wrapper .nav-tabs > li.active > a::before,
.product_tab_wrapper .nav-tabs > li:hover > a::before, .product_tab_wrapper .nav-tabs > li:hover > a::before,
.product_tab_wrapper .nav-tabs > li:focus > a::before, .product_tab_wrapper .nav-tabs > li:focus > a::before {
  width: 100%; }

.product_tab_wrapper .tab-container {
  padding: 10px 0;
  float: left;
  width: 100%;
  text-align: left; }

.product_tab_wrapper ul.tabs li > a, .product_tab_wrapper ul.tabs li.active > a {
  border: none;
  background: none;
  color: #111; }

#shopify-product-reviews {
  text-align: left; }

.product-single__description .tab-pane .spr-summary {
  text-align: left; }

.product-information-inner #AddToCartForm .product-single__variants .selector-wrapper {
  float: left;
  margin-right: 10px;
  width: 140px; }

/**/
.product-arrows .right {
  right: 15px;
  left: auto;
  text-align: right; }

.product-arrows .left {
  left: 15px;
  right: auto; }

@media screen and (min-width: 992px) {
  .disable_menutoggle.menu_left .product-arrows .left {
    left: 300px; }

  .disable_menutoggle.menu_right .product-arrows .right {
    right: 300px; } }
.product-arrows div i {
  background: #000000 none repeat scroll 0 0;
  color: #ffffff;
  font-size: 15px;
  height: 104px;
  padding: 40px 10px;
  width: 30px;
  line-height: 25px; }

.product-arrows a img {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .product-arrows a img {
      display: none; } }

.product-arrows a:hover img {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }
  @media screen and (max-width: 767px) {
    .product-arrows a:hover img {
      display: none; } }

@media screen and (max-width: 991px) {
  .product-arrows div i {
    background: #000000 none repeat scroll 0 0;
    color: #ffffff;
    font-size: 15px;
    height: 40px;
    padding: 9px 14px;
    width: 40px;
    line-height: 25px; }

  .product-arrows {
    text-align: center; }

  .product-arrows a:hover img, .product-arrows a img {
    display: none; } }
.product-arrows div a .title {
  display: none; }

.design_3 .product-arrows div {
  line-height: 30px; }

.design_3 .product-Video-btn.popup-video.tip-top {
  position: static; }

.design_3 .product-Video-btn .mdi.mdi-video {
  margin: 0 6px 0 0; }

.product-arrows span {
  width: 35px;
  text-align: center;
  height: 35px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }
  @media screen and (max-width: 767px) {
    .product-arrows span {
      width: 35px; } }

.product-arrows span a {
  width: 100%;
  height: 100%;
  float: left;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.product-arrows span:hover a {
  background: #f6bb25;
  color: white; }

.product-arrows span:hover {
  border-color: #f6bb25; }

#shopify-section-product-template-5 .product-information .add-to-wishlist.pro_btn .loading {
  float: none !important;
  display: inline-block;
  vertical-align: top; }

.product-arrows {
  position: absolute;
  top: -5px;
  right: 0;
  width: 75px;
  height: 37px;
  line-height: 30px;
  margin: 0; }
  @media screen and (max-width: 767px) {
    .product-arrows {
      width: 80px;
      left: 0;
      margin: 0 auto;
      top: -40px;
      margin-bottom: 5px; } }

.product-arrows span a .mdi {
  font-size: 20px;
  line-height: 33px;
  padding: 0 5px 0 7px; }

@media screen and (max-width: 767px) {
  #shopify-section-product-template-1 .product-single {
    margin-top: 15px; }

  .design_5 .product-arrows {
    top: -50px; } }
/*------------------------------#shopify-section-product-template-2--------------------------------*/
#shopify-section-product-template-2 .product-img .pro_img {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 30px; }
  @media screen and (max-width: 991px) {
    #shopify-section-product-template-2 .product-img .pro_img {
      margin-bottom: 15px; } }

#shopify-section-product-template-2 .product-img .pro_img:last-child {
  margin: 0; }

#shopify-section-product-template-2 .product-single i.mdi.mdi-magnify {
  font-size: 24px; }

/*-----------------------------------------*/
.product-images-fixed a.product-Video-btn.popup-video.tip-top {
  position: static;
  z-index: 1;
  left: 20px; }

.product-images-fixed .popup-video > span {
  position: absolute;
  left: 20px;
  z-index: 1;
  top: 5px; }

.product-single__price span.visually-hidden {
  display: none; }

.product-single__variants .selector-wrapper label {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  color: #222222;
  margin: 0 0 8px 0;
  font-family: Lato, Helvetica, sans-serif; }

.selector-wrapper {
  margin-bottom: 10px; }

.product-information-inner .product-single__variants {
  float: left;
  width: 100%; }

.product-information-inner .product-single__variants .selector-wrapper {
  float: left;
  margin-right: 10px;
  width: 130px; }

.design_2 .product-information-inner .product-single__variants .selector-wrapper {
  margin: 5px 10px 5px 0; }

.product-single__variants .selector-wrapper select {
  padding: 10px 26px 10px 10px;
  background-color: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }

.product-single .single-option-selector {
  display: inline-block;
  font-size: 14px;
  margin: 0 0 15px;
  padding: 12px 10px;
  width: 140px;
  background-size: 7px; }

.product-single__addtocart label {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px;
  width: 100%;
  color: #222222;
  font-family: Lato, Helvetica, sans-serif; }

.product-information .qnt_wrap .button:hover {
  background-color: #eeeeee; }

.product-information .add-to-wishlist.pro_btn {
  float: left;
  width: auto;
  margin-right: 15px; }

#AddToCart > span {
  font-weight: 600; }

.product-information-inner .threesixty-video {
  float: left;
  width: 100%;
  margin: 0 0 15px; }

.design_2 .product-information-inner .threesixty-video {
  margin: 15px 0; }

.threesixty-video .product-Video-btn.popup-video.tip-top {
  padding: 2px 15px;
  float: left;
  width: auto;
  position: static; }
  @media screen and (max-width: 991px) {
    .threesixty-video .product-Video-btn.popup-video.tip-top {
      padding: 2px 5px; } }
  @media screen and (max-width: 480px) {
    .threesixty-video .product-Video-btn.popup-video.tip-top {
      padding: 2px 0;
      margin: 5px 0 0 0;
      width: 100%; } }

.design_2 .threesixty-video .product-Video-btn.popup-video.tip-top {
  margin-left: 0;
  padding: 2px 0; }

.product-single__thumbs .owl-pagination, .product-single .tab-pane, .tab-pane {
  display: none; }

.product-single .active.tab-pane, .tab-pane.active {
  display: block; }

.product-single__thumbs {
  padding: 0 50px;
  background: #fff; }

.product-single__thumbs .grid-item {
  float: left;
  width: 100%;
  margin: 5px; }

.product-single__thumbs .slick-list {
  padding: 0 !important; }

.product-single.vertical_left .product-single__thumbs {
  padding: 50px 15px; }

.owl-carousel.product-single__thumbs .owl-buttons div,
.owl-carousel.product-single__thumbs .owl-buttons .owl-prev, .owl-carousel.product-single__thumbs .owl-buttons .owl-next {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-information .add-to-wishlist.pro_btn .show .loading {
  width: auto;
  float: left; }

.product-information .add-to-wishlist .add_to_wishlist:hover {
  background-color: #f5f5f5; }

.product-information .add-to-wishlist.pro_btn .show .loading, .product-information .add-to-wishlist.pro_btn .show .loading a.add_to_wishlist {
  background: none; }

.product-information .add-to-wishlist.pro_btn .show .loading a.add_to_wishlist {
  background: none; }

.product-information .add-to-wishlist.pro_btn:hover, .product-information .add-to-wishlist.pro_btn:active,
.product-information .add-to-wishlist.pro_btn .show .loading a.add_to_wishlist:focus, .product-information .add-to-wishlist.pro_btn:focus,
.product-information .add-to-wishlist.pro_btn .show .loading:focus, .product-information .add-to-wishlist.pro_btn .show .loading a.add_to_wishlist:focus {
  background: none; }

.product-information .add-to-wishlist.pro_btn .show .loading.btn, .product-information .add-to-wishlist.pro_btn .show .loading.btn--secondary, .product-information .add-to-wishlist.pro_btn .show input.loading[type="submit"] {
  padding: 1px 10px; }

.related-products-container {
  float: left;
  width: 100%;
  margin: 40px 0; }
  @media screen and (max-width: 1199px) {
    .related-products-container {
      margin: 20px 0; } }
  @media screen and (max-width: 767px) {
    .related-products-container {
      margin: 15px 0; } }

.product-fixed-wrapper {
  background: #ffffff none repeat scroll 0 0;
  float: left;
  padding: 15px;
  width: 100%; }

div#ProductSection {
  float: left;
  width: 100%;
  position: relative; }

.product-single__description.rte {
  float: left;
  width: 100%;
  margin: 0; }

.product-information .product-single__desc {
  margin: 0;
  padding: 0; }

.product-block {
  background: #ffffff none repeat scroll 0 0;
  float: left;
  padding: 0;
  width: 100%; }

.product-img .pro_img {
  margin-bottom: 20px; }
  @media screen and (max-width: 991px) {
    .product-img .pro_img {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }

.product-img .pro_img .product-image-btn {
  position: absolute;
  right: 20px;
  bottom: 10px; }

.design_3 .product-img .pro_img .product-image-btn {
  right: 15px; }

.design_3 .product-img .pro_img {
  margin-bottom: 30px; }

.design_3 .product-information-inner .grid--uniform.product-single__addtocart {
  float: left;
  width: 100%; }

.product-single__photos .product-image-btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  width: 30px;
  height: 30px;
  line-height: 30px; }

.product-single__photos a.product-lightbox-btn {
  display: none;
  width: 30px;
  height: 30px;
  float: left; }

.design_4 .product-single__photos .product-image-btn {
  right: 15px; }

.design_4 .product-Video-btn.popup-video.tip-top {
  float: right;
  width: auto;
  right: 10px;
  position: absolute;
  top: 10px;
  -webkit-box-shadow: 0px 0 2px #555;
  -moz-box-shadow: 0px 0 2px #555;
  -ms-box-shadow: 0px 0 2px #555;
  -o-box-shadow: 0px 0 2px #555;
  box-shadow: 0px 0 2px #555;
  padding: 5px 8px; }

.horizontal_bottom.design_2 .product-images-fixed .product-single__thumb img {
  height: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.design_3 .product-img {
  float: left;
  position: relative;
  width: 100%; }

.design_3 .product-wrapper-owlslider .pro_img_wrap {
  border: none;
  background: #f7f7f7; }

.design_4 .tt-scroll-content .add_tocart_wrapper {
  padding: 0; }

.design_4 .product-single__description.rte {
  padding: 0; }

.design_4 .tt-scroll .print {
  float: left;
  width: 100%;
  margin: 15px 0 6px 0px; }

.design_4 #shopify-product-reviews .spr-container {
  margin-right: 10px; }

.design_4.product-design-compact .product_tab_wrapper {
  border-top: 1px solid #e5e5e5;
  margin: 30px 0 20px; }

.design_4 .tabs-layout-accordion .tt-tab-wrapper .tt-accordion-title {
  padding: 10px 0 5px 0; }

.design_4 .product-arrows > span {
  position: fixed;
  top: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin: auto;
  z-index: 3; }

.design_4 .product-arrows i {
  font-size: 30px; }
  @media screen and (max-width: 767px) {
    .design_4 .product-arrows i {
      font-size: 24px; } }

.design_4 .product-arrows .right {
  right: 60px;
  left: auto;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .design_4 .product-arrows .right {
      right: 10px; } }

.design_4 .product-arrows .left {
  left: 60px;
  right: auto;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .design_4 .product-arrows .left {
      left: 10px; } }

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

.product-single__addtocart .js-qty {
  margin-bottom: 15px;
  max-width: none;
  width: 125px;
  display: inline-block; }

.product-information .social-sharing {
  display: inline-block;
  width: 100%;
  float: left; }

.product-info .out-of-stock {
  color: red;
  font-weight: 600; }

.product-info .many-in-stock, .product-info .in-stock {
  color: #777777;
  font-weight: 500; }

.product-infor .unavailable {
  color: orchid;
  font-weight: 500; }

.product-info .items-count {
  color: #fa9324; }

.product-single__price label {
  color: #222222;
  display: inline-block;
  min-width: 155px;
  text-transform: capitalize;
  float: none;
  vertical-align: top;
  font: 600 16px/28px Lato, Helvetica, sans-serif; }

.product-single .product-information .add-to-wishlist a, .product-single .product-information a.print {
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
  line-height: 20px; }

ul.tabs {
  float: left;
  list-style: outside none none;
  margin: 0 0 -4px;
  position: relative;
  width: 100%; }

.tabs > li {
  display: inline-block;
  margin-bottom: 0; }

.widget_promo_img #promo-carousel {
  margin: 0; }

.product_tab_wrapper ul.tabs {
  margin-bottom: 15px; }

ul.product-photo-thumbs.product-wrapper-owlslider.owl-carousel {
  padding: 0 40px;
  margin: 20px 0; }

@media screen and (max-width: 400px) {
  .more-view-wrapper ul.product-photo-thumbs.product-wrapper-owlslider.owl-carousel {
    width: 100%;
    margin: 20px auto;
    float: none; } }
.product-single__thumbs .owl-nav .owl-prev, .product-single__thumbs .owl-nav .owl-next,
ul.product-photo-thumbs.owl-carousel .owl-nav div {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.product-single__thumbs .owl-nav .owl-prev, .product-single__thumbs .owl-nav .owl-next,
ul.product-photo-thumbs .owl-nav .owl-buttons .owl-prev, ul.product-photo-thumbs .owl-nav .owl-next {
  bottom: auto;
  top: 41%; }

.product-photo-thumbs li, .product-single__thumbs li {
  padding: 5px;
  display: inline-block;
  width: auto;
  vertical-align: top; }

.product-single__thumbs li {
  padding: 0 5px !important; }

.product-photo-thumbs li img, .product-single__thumbs li img {
  display: inline-block;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.product-single .product-information .add-to-wishlist.pro_btn .add-in-wishlist-js.btn, .product-single .product-information .add-to-wishlist.pro_btn .add-in-wishlist-js.btn--secondary, .product-single .product-information .add-to-wishlist.pro_btn input.add-in-wishlist-js[type="submit"], .product-single .product-information .add-to-wishlist.pro_btn .added-wishlist.btn.add_to_wishlist, .product-single .product-information .add-to-wishlist.pro_btn .added-wishlist.add_to_wishlist.btn--secondary, .product-single .product-information .add-to-wishlist.pro_btn input.added-wishlist.add_to_wishlist[type="submit"] {
  background: none;
  color: inherit;
  padding: 0; }

.product-single .product-information .add-to-wishlist.pro_btn .add-in-wishlist-js.btn:hover, .product-single .product-information .add-to-wishlist.pro_btn .add-in-wishlist-js.btn--secondary:hover, .product-single .product-information .add-to-wishlist.pro_btn input.add-in-wishlist-js[type="submit"]:hover, .product-single .product-information .add-to-wishlist.pro_btn .added-wishlist.btn.add_to_wishlist:hover, .product-single .product-information .add-to-wishlist.pro_btn .added-wishlist.add_to_wishlist.btn--secondary:hover, .product-single .product-information .add-to-wishlist.pro_btn input.added-wishlist.add_to_wishlist[type="submit"]:hover {
  color: #000; }

.product-single__thumbs .owl-nav .owl-next::before,
ul.product-photo-thumbs .owl-nav > .owl-next::before {
  bottom: 0;
  content: "\f142";
  float: right;
  font-family: "Material Design Icons";
  font-size: 18px;
  font-weight: 500;
  height: 18px;
  left: 0;
  line-height: 18px;
  margin: auto;
  position: absolute;
  right: 2px;
  text-align: center;
  top: 0;
  width: 16px; }

.product-single__thumbs .owl-nav .owl-prev, .product-single__thumbs .owl-nav .owl-next,
ul.product-photo-thumbs .owl-nav .owl-prev, ul.product-photo-thumbs .owl-nav > .owl-next {
  border: 1px solid #f6bb25;
  color: white;
  font-size: 0;
  height: 30px;
  position: absolute;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  top: 10px;
  bottom: 0;
  margin: auto;
  background: #f6bb25; }

.review-wrap .spr-badge {
  margin-right: 10px;
  float: left;
  text-transform: capitalize;
  padding-right: 8px;
  border-right: 1px solid #e5e5e5; }

#shopify-product-reviews .spr-summary-actions-newreview::before {
  content: "\f64f";
  position: absolute;
  font-family: "Material Design Icons";
  left: -16px;
  right: auto;
  top: 4px;
  bottom: auto;
  height: 15px;
  width: 15px;
  font-size: 14px;
  line-height: 16px; }
  @media screen and (max-width: 480px) {
    #shopify-product-reviews .spr-summary-actions-newreview::before {
      left: 0; } }

.product-single__description .spr-summary-actions-newreview {
  position: relative; }
  @media screen and (max-width: 480px) {
    .product-single__description .spr-summary-actions-newreview {
      padding: 0 0 0 17px; } }

.product-single__vendor lable {
  margin: 0 5px 0 0; }

.product-information .product-single__price #comparePrice .money {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px; }

a.product-write-review {
  display: inline-block;
  float: left;
  color: #777777;
  cursor: pointer; }

a.product-write-review:hover {
  color: #f6bb25; }

a.product-write-review > i {
  padding: 0 5px 0 0; }

#shopify-product-reviews .spr-header-title {
  font: 600 16px/18px Lato, Helvetica, sans-serif;
  color: #222222; }
  @media screen and (max-width: 480px) {
    #shopify-product-reviews .spr-header-title {
      text-align: left; } }

.product_all_images {
  float: left;
  width: 100%; }

.product_all_images img {
  margin-bottom: 10px; }

.product-single.vertical_left .product-single__thumbs {
  float: left;
  width: 25%;
  padding: 30px 0; }
  @media screen and (max-width: 480px) {
    .product-single.vertical_left .product-single__thumbs {
      width: 35%; } }

.product-single.vertical_left .product-single__thumbs .slick-slide img, .product-single.vertical_right .product-single__thumbs .slick-slide img {
  max-height: 95px;
  max-width: 95px;
  margin: 0 auto;
  float: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 991px) {
    .product-single.vertical_left .product-single__thumbs .slick-slide img, .product-single.vertical_right .product-single__thumbs .slick-slide img {
      width: 100%; } }

.product-single.vertical_left .slick-vertical .slick-prev.slick-arrow, .product-single.vertical_right .slick-vertical .slick-prev.slick-arrow {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: auto; }

.product-single .slick-prev.slick-arrow, .product-single .slick-next.slick-arrow {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #f6bb25;
  font-size: 15px;
  color: #777777;
  background: #f6bb25;
  top: 0; }

.product-single .slick-prev.slick-arrow:hover, .product-single .slick-next.slick-arrow:hover {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #f6bb25;
  font-size: 15px;
  color: white;
  background: #f6bb25; }

.product-single .slick-prev.slick-arrow.slick-disabled, .product-single .slick-next.slick-arrow.slick-disabled {
  opacity: 0.6; }

.product-single .slick-prev.slick-arrow.slick-disabled:hover, .product-single .slick-next.slick-arrow.slick-disabled:hover {
  border: 1px solid #f6bb25;
  background: #f6bb25;
  color: white; }

.product-single .product-single__thumbs.slick-vertical .slick-prev.slick-arrow, .product-single .product-single__thumbs.slick-vertical .slick-next.slick-arrow {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 15px; }

.product-single.vertical_left .slick-vertical .slick-next.slick-arrow, .product-single.vertical_right .slick-vertical .slick-next.slick-arrow {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: auto; }

.horizontal_bottom .product-wrapper-owlslider .product-single__photos, .horizontal_bottom .product-single__thumbs.horizontal_bottom {
  float: left;
  width: 100%;
  position: relative !important; }

.product-single.vertical_left .product-single__photos {
  float: right;
  width: 75%;
  margin-bottom: 0;
  position: relative; }
  @media screen and (max-width: 480px) {
    .product-single.vertical_left .product-single__photos {
      width: 60%; } }

.product-single.vertical_right .product-single__thumbs {
  float: right;
  width: 25%;
  padding: 30px 0; }

.product-single.vertical_right .product-single__photos {
  float: left;
  width: 75%;
  position: relative; }

.product-single__thumbs .owl-nav .owl-prev::before,
ul.product-photo-thumbs .owl-nav .owl-prev::before {
  bottom: 0;
  content: "\f141";
  float: right;
  font-family: "Material Design Icons";
  font-size: 18px;
  font-weight: 500;
  height: 18px;
  left: 0;
  line-height: 18px;
  margin: auto;
  position: absolute;
  right: 2px;
  text-align: center;
  top: 0;
  width: 16px; }

.product-single__addtocart .btn::before, .product-single__addtocart .btn--secondary::before, .product-single__addtocart input[type="submit"]::before {
  content: "\f111";
  font-family: "Material Design Icons";
  font-size: 22px;
  position: absolute;
  width: 44px;
  height: 44px;
  line-height: 44px;
  left: 7px;
  right: auto;
  top: 0; }

.product-single__addtocart .btn:hover::before, .product-single__addtocart .btn--secondary:hover::before, .product-single__addtocart input[type="submit"]:hover::before {
  background-position: -27px -35px; }

img {
  max-width: 100%; }

.owl-nav {
  display: none; }

.brand_slider .owl-nav, .full_gallery_slider .owl-nav, .ourteam_slider .owl-nav, .quick-view .owl-nav {
  display: block;
  margin: 0; }

ul.ourteam_slider.owl-carousel {
  margin-bottom: 0;
  z-index: 0; }

.quick-view .product-photo-thumbs li {
  margin: 0; }

.product-shop .product-item .selector-wrapper {
  float: left;
  width: 140px;
  margin-right: 10px; }

.product-shop .grid--uniform.product-single__addtocart {
  float: left;
  width: 100%; }

.product-single__thumbs .owl-nav .owl-prev, .product-single__thumbs .owl-nav .owl-next, ul.product-photo-thumbs .owl-nav .owl-prev, ul.product-photo-thumbs .owl-nav > .owl-next {
  color: white;
  background: #f6bb25; }

.pagination-custom > li.active, .pagination-custom > li:hover,
.product-single__thumbs .owl-nav .owl-prev:hover, .product-single__thumbs .owl-nav .owl-next:hover, ul.product-photo-thumbs .owl-nav .owl-prev:hover, ul.product-photo-thumbs .owl-nav > .owl-next:hover {
  background: #f6bb25;
  border-color: #f6bb25;
  color: white; }

.pagination-custom > li:hover > a, .pagination-custom > li:hover > span {
  color: white; }

ul.product-photo-thumbs .owl-nav > .owl-next, ul.product-photo-thumbs .owl-nav > .owl-prev,
.product-photo-thumbs .owl-nav .owl-prev, .product-photo-thumbs .owl-nav .owl-next,
.product-photo-thumbs .owl-nav .owl-prev.disabled:hover,
.product-photo-thumbs .owl-nav .owl-next.disabled:hover {
  background: #f6bb25;
  color: white;
  border-color: #f6bb25; }

.product-photo-thumbs .owl-nav .owl-prev.disabled,
.product-photo-thumbs .owl-nav .owl-next.disabled {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6; }

ul.product-photo-thumbs .owl-nav > .owl-next:hover, ul.product-photo-thumbs .owl-nav > .owl-prev:hover,
.product-photo-thumbs .owl-nav .owl-prev:hover, .product-photo-thumbs .owl-nav .owl-next:hover {
  background: #f6bb25;
  color: white;
  border-color: #f6bb25; }

.product-single {
  margin-bottom: 30px;
  position: relative; }
  @media screen and (min-width: 1025px) {
    .product-single {
      margin-bottom: 30px; } }
  @media screen and (max-width: 991px) {
    .product-single {
      padding: 0; } }

.spr-review-reportreview:hover {
  color: #ff0000; }

@media screen and (max-width: 991px) {
  .vertical_left.design_4 .product-wrapper-owlslider {
    width: 100%; }

  .design_4 .product-information {
    width: 100%;
    margin: 0 0 20px 0; } }
@media screen and (max-width: 767px) {
  .product-single.vertical_left.design_1 .product-Video-btn.popup-video.tip-top {
    right: 50px;
    width: auto; }

  .product-single.vertical_right.design_1 .product-Video-btn.popup-video.tip-top {
    width: auto;
    bottom: 20px; }

  .design_1 #productPhoto.image-zoom {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 80%; }

  .horizontal_bottom .product-single__thumbs.horizontal_bottom {
    float: none;
    width: 80%;
    display: inline-block;
    vertical-align: top; } }
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tt-brand_slider .owl-nav {
    display: block; } }
@media screen and (max-width: 480px) {
  .horizontal_bottom .product-single__thumbs.horizontal_bottom {
    width: 100%; }

  .design_1 #productPhoto.image-zoom {
    width: 100%; }

  .horizontal_bottom.design_2 .product-img .pro_img .product-image-btn {
    right: 20px; }

  #shopify-product-reviews .spr-container {
    padding: 15px 10px !important; }

  #shopify-product-reviews .spr-summary .spr-summary-actions {
    float: left;
    width: 100%;
    text-align: left;
    margin: 5px 0 0 0; }

  .spr-review-reportreview {
    float: left !important; } }
/*  product compact layout */
.tabs-layout-accordion .tt-tab-wrapper .tt-accordion-title:after {
  content: "\f140";
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  line-height: 20px;
  width: 20px;
  text-align: center;
  font-size: 12px;
  color: #bbb;
  font-family: "Material Design Icons";
  -webkit-transition: transform .4s ease;
  -moz-transition: transform .4s ease;
  -ms-transition: transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  backface-visibility: hidden;
  perspective: 800px;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 800px; }

.tabs-layout-accordion .tt-tab-wrapper .tt-accordion-title.active:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.tabs-layout-accordion .tt-tab-wrapper {
  border-bottom: 1px solid rgba(119, 119, 119, 0.17); }

.tabs-layout-accordion .tt-tab-wrapper .tt-accordion-title {
  position: relative;
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none; }

.tt-scroll {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  left: 0;
  min-height: 435px;
  overflow: hidden;
  height: 100%; }
  @media screen and (max-width: 1199px) {
    .tt-scroll {
      min-height: 355px; } }
  @media screen and (max-width: 991px) {
    .tt-scroll {
      position: static; } }

.tt-scroll.has-scrollbar {
  height: 100%;
  left: 10px; }

.tt-scroll-pane.active, .tt-scroll-pane.flashed, .tt-scroll:hover > .tt-scroll-pane {
  visibility: visible;
  -webkit-opacity: 0.99;
  -moz-opacity: 0.99;
  -khtml-opacity: 0.99;
  opacity: 0.99; }

.tt-scroll .tt-scroll-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: scroll;
  overflow-x: hidden; }

.tt-scroll > .tt-scroll-pane {
  width: 2px;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 200ms ease-in-out;
  -moz-transition: 200ms ease-in-out;
  -ms-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  visibility: hidden;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.tt-scroll > .tt-scroll-pane > .tt-scroll-slider {
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  margin: 0 0; }

.product-information {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-flex;
  /* Safari */
  -webkit-align-items: center;
  /* Safari 7.0+ */
  display: flex;
  float: right; }
  @media screen and (max-width: 767px) {
    .product-information {
      text-align: left; } }

.product-design-compact .product_tab_wrapper {
  border: none;
  border-top: 2px solid #000;
  padding: 0; }

.panel.tt-Tabs-panel {
  display: none; }

.panel.tt-Tabs-panel.active {
  display: block; }

/**/
.full_gallery_slider .item {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
  -webkit-transition: .4s ease all;
  -moz-transition: .4s ease all;
  -ms-transition: .4s ease all;
  -o-transition: .4s ease all;
  transition: .4s ease all;
  margin: 0 20px;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -ms-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8); }

.full_gallery_slider .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  bottom: auto;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  left: 0;
  right: auto;
  margin: 0;
  height: 100%;
  border: none; }

.full_gallery_slider .owl-nav .owl-prev:hover, .full_gallery_slider .owl-nav .owl-next:hover {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0; }

.full_gallery_slider .owl-nav .owl-next {
  position: absolute;
  top: 0;
  border: none;
  bottom: auto;
  right: 0;
  left: auto;
  margin: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0; }

.full_gallery_slider .owl-dots {
  counter-reset: counter; }

.full_gallery_slider .owl-item img {
  margin: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.design_5.product-single {
  padding: 0; }

.product-single.design_5 .product-information .add-to-wishlist a i, .product-single.design_5 .product-information a.print i {
  float: right;
  margin: 0 0 0 5px; }
  @media screen and (max-width: 767px) {
    .product-single.design_5 .product-information .add-to-wishlist a i, .product-single.design_5 .product-information a.print i {
      float: left;
      margin: 0 5px 0 0; } }

.design_5 .product-information.product_fixed_block {
  margin: 40px 0 0;
  padding: 0; }

.design_5 .product-information .product-left {
  float: left;
  text-align: right;
  border-right: 1px solid #e5e5e5; }
  @media screen and (max-width: 767px) {
    .design_5 .product-information .product-left {
      text-align: left;
      border: none;
      padding: 0; } }

.design_5 .product-information .product-right {
  float: left;
  text-align: left; }
  @media screen and (max-width: 767px) {
    .design_5 .product-information .product-right {
      padding: 0; } }

@media screen and (max-width: 767px) {
  .design_5 .product-single__title {
    text-align: left; } }
.design_5 #shopify-product-reviews .spr-summary, .design_5 #shopify-product-reviews .spr-content {
  text-align: left; }

.design_5 .product-information .whishlist-print {
  float: left;
  width: 100%;
  margin: 0 0 7px; }
  @media screen and (max-width: 767px) {
    .design_5 .product-information .whishlist-print {
      margin: 0; } }

.design_5 .product-Video-btn.popup-video.tip-top {
  position: static;
  float: right;
  width: auto;
  margin: 0 0 5px 10px; }
  @media screen and (max-width: 767px) {
    .design_5 .product-Video-btn.popup-video.tip-top {
      float: left;
      margin: 8px 10px 0 0; } }

.design_5 a.product-write-review, .design_5 .review-wrap .spr-badge {
  float: none;
  display: inline-block; }

.design_5 .col-xs-12.padding_0.cart_wrap, .design_5 ul.tabs, .design_5 .tabs > li {
  float: left;
  text-align: left;
  padding: 0; }

.design_5 .qty-box-set, .design_5 .product-single__addtocart .btn, .design_5 .product-single__addtocart .btn--secondary, .design_5 .product-single__addtocart input[type="submit"] {
  float: none;
  display: inline-block;
  vertical-align: top; }

.design_5 .product-information .add-to-wishlist.pro_btn {
  width: auto;
  float: right;
  margin: 0; }
  @media screen and (max-width: 767px) {
    .design_5 .product-information .add-to-wishlist.pro_btn {
      float: left;
      margin-right: 10px; } }

.design_5 .social-sharing {
  text-align: right;
  float: right;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .design_5 .social-sharing {
      float: left;
      text-align: left; } }

.design_5 .product-information-inner .review-wrap {
  margin: 0; }

.design_5 .product-information .product-single__desc {
  margin: 0 0 12px; }

.design_5 .product-information .flip-countdown .countdown-container {
  margin: 0 auto; }

.design_5 .product-360-button {
  float: right;
  width: auto; }
  @media screen and (max-width: 767px) {
    .design_5 .product-360-button {
      float: left; } }

.design_5 .product-360-button a {
  font-weight: 400;
  float: left;
  width: 100%; }

.design_5 .product-single__addtocart label {
  width: auto;
  padding: 8px 0;
  margin: 0 5px 0 0;
  float: none; }
  @media screen and (max-width: 480px) {
    .design_5 .product-single__addtocart label {
      display: none; } }

.design_5 .product-info > p {
  display: table;
  margin: 12px 0;
  float: none;
  width: auto; }

.design_5 .h2.product-single__price {
  font-size: 18px;
  float: none; }

@media screen and (min-width: 768px) {
  .design_5.product-single .product-Video-btn i.mdi.mdi-video {
    margin: 0 0 0 5px;
    float: right !important; }

  .design_5.product-single .product-360-button a > i {
    float: right;
    margin: 0 0 0 5px; } }
.design_5 .product-information-inner .flip-countdown {
  margin: 5px auto 14px;
  position: static;
  float: right;
  display: table;
  width: auto;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .design_5 .product-information-inner .flip-countdown {
      float: left; } }

.design_5 .product-Video-btn .mdi.mdi-video {
  margin: 0 5px 0 0; }

.design_5 .product-block .print {
  float: right;
  width: auto;
  margin: 0 10px 0 0; }
  @media screen and (max-width: 767px) {
    .design_5 .product-block .print {
      float: left; } }

.design_5 .product-single__header .product-360-button {
  margin: 0; }
  @media screen and (max-width: 767px) {
    .design_5 .product-single__header .product-360-button {
      margin: 8px 0 0; } }

.design_5 .product-single__variants .selector-wrapper {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 140px;
  margin: 0 10px 10px 0; }

.design_5 .product-single__variants {
  float: left;
  width: auto;
  text-align: left; }

.design_5 .product-information-inner .grid--uniform.product-single__addtocart {
  float: left;
  width: 100%; }

.design_5 .product-block .owl-dots .owl-dot.active span, .design_5 .product-block .owl-dots .owl-dot:hover span {
  background: #f6bb25; }

.full_gallery_slider .owl-item .num {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e5e5e5;
  margin: auto;
  width: 85px;
  padding: 10px;
  text-align: center;
  display: none; }
  @media screen and (max-width: 480px) {
    .full_gallery_slider .owl-item .num {
      padding: 5px; } }

.full_gallery_slider .owl-item.center .num {
  display: block; }

@media (max-width: 2000px) {
  .full_gallery_slider .owl-nav .owl-next, .full_gallery_slider .owl-nav .owl-prev {
    width: 400px; } }
@media (max-width: 1600px) {
  .full_gallery_slider .owl-nav .owl-next, .full_gallery_slider .owl-nav .owl-prev {
    width: 320px; } }
@media (max-width: 1400px) {
  .full_gallery_slider .owl-nav .owl-next, .full_gallery_slider .owl-nav .owl-prev {
    width: 300px; } }
@media (max-width: 1200px) {
  .full_gallery_slider .owl-nav .owl-next, .full_gallery_slider .owl-nav .owl-prev {
    width: 250px; } }
@media (max-width: 1000px) {
  .full_gallery_slider .owl-nav .owl-next, .full_gallery_slider .owl-nav .owl-prev {
    width: 200px; } }
@media (max-width: 600px) {
  .full_gallery_slider .owl-nav .owl-next, .full_gallery_slider .owl-nav .owl-prev {
    width: 100px; } }
@media (max-width: 480px) {
  .full_gallery_slider .owl-nav .owl-next, .full_gallery_slider .owl-nav .owl-prev {
    width: 60px; }

  .design_5 .product-information-inner #AddToCartForm .product-single__variants .selector-wrapper {
    float: left;
    margin-right: 2px;
    width: 110px; } }
.full_gallery_slider .center.owl-item img {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.full_gallery_slider .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  -moz-transform: translateZ(0) scale(1, 1);
  -ms-transform: translateZ(0) scale(1, 1);
  -o-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1); }

.owl-carousel.full_gallery_slider .owl-item img {
  display: block;
  max-width: 100%;
  margin: 0 auto; }

.product-single__addtocart .add,
.product-single__addtocart .minus {
  color: #777777;
  font-size: 1.71429em;
  position: relative; }
.product-single__addtocart .js-qty {
  margin-bottom: 15px;
  max-width: none; }
  .product-single__addtocart .js-qty input[type="text"] {
    background-color: white;
    padding: 8px 22px; }
.product-single__addtocart .js--qty-adjuster {
  width: 40px; }

.product-single__desc {
  margin: 20px 0; }
  .product-single__desc h3, .product-single__desc .h3 {
    text-align: left; }

.product-single__header {
  padding: 0; }

.product-single .product-information-inner .fixed-content > .quantity,
.product-single .product-information-inner .fixed-content > .product-actions {
  float: left;
  width: 100%; }

.design_1 .product-single__photos {
  margin-bottom: 20px; }

.design_1 .product-Video-btn .mdi.mdi-video {
  margin: 0 5px 0 0; }

.design_1 .product-single__thumbs .grid-item {
  padding: 0; }

.product-single.design_1 .print_wrap {
  float: left;
  width: auto; }

.product-single .product-information .fixed-content .video-threesixty {
  float: left;
  width: 100%; }

.product-single__photos a,
.product-single__photos img,
.product-single__thumbs a,
.product-single__thumbs img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%; }
.product-single__photos li,
.product-single__thumbs li {
  margin-bottom: 0;
  display: inline-block;
  float: none; }

.product-single__price {
  font-family: Lato; }

.dt-sc-toggle-content {
  display: none; }

.product-categories .cat-item {
  position: relative;
  float: left;
  width: 100%; }

.product-categories .cat-item span.dt-menu-expand {
  position: absolute;
  right: -5px;
  top: 0px;
  font-size: 16px;
  cursor: pointer;
  width: 30px;
  text-align: center;
  color: #777777; }

.product-categories .cat-item:hover span.dt-menu-expand {
  color: #f6bb25; }

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

.product-single__vendor {
  font-style: normal;
  margin-top: 3px;
  margin-bottom: 5px; }

.h2.product-single__price {
  font-size: 18px;
  float: left;
  font-family: Lato;
  margin: 5px 0;
  width: 100%; }

.h2.product-single__price .discount-percentage {
  position: static;
  opacity: 1;
  background: none;
  color: #000; }

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

@media screen and (max-width: 767px) {
  .product-single .product_fixed_block .fixed-content .product-single__title.wvendor {
    margin: 35px 0 0; }

  .product-block.fixed-product-block .fixed-content .product-arrows {
    top: -10px; }

  .product-single.design_1 .product_fixed_block .fixed-content .product-single__title.wvendor {
    margin: 15px 0 0; } }
.product-single__addtocart .js-qty {
  margin-right: 5px;
  float: left; }

.product-single__addtocart .btn, .product-single__addtocart .btn--secondary, .product-single__addtocart input[type="submit"] {
  width: auto;
  float: left;
  padding: 12px 18px 12px 45px;
  line-height: 20px;
  background-color: #f6bb25;
  color: white;
  position: relative;
  letter-spacing: 1px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }

.product-single .product-single__photos .main_image_wrap.image-zoom {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.product-single__addtocart .btn:hover::after, .product-single__addtocart .btn--secondary:hover::after, .product-single__addtocart input[type="submit"]:hover::after, .product-single__addtocart .btn:active::after, .product-single__addtocart .btn--secondary:active::after, .product-single__addtocart input[type="submit"]:active::after, .product-single__addtocart .btn:focus::after, .product-single__addtocart .btn--secondary:focus::after, .product-single__addtocart input[type="submit"]:focus::after {
  background-color: #f6bb25;
  color: white; }

.product-single__title {
  margin: 0 0 10px;
  font: 600 20px/24px Lato, Helvetica, sans-serif;
  text-transform: capitalize;
  color: #222222; }
  @media screen and (max-width: 480px) {
    .product-single__title {
      font-size: 16px; } }

.product-information .add-to-wishlist .tooltip-label {
  font-weight: 400;
  margin: 0 0 0 5px;
  vertical-align: top; }

.product-single .add-to-wishlist i.mdi.mdi-heart {
  font-size: 18px;
  line-height: 20px;
  float: left; }

.product-single .print_wrap i.mdi.mdi-printer, .product-single .video-threesixty i.mdi.mdi-refresh, .product-single .product-Video-btn i.mdi.mdi-video {
  font-size: 20px;
  line-height: 20px;
  float: left;
  margin-right: 5px; }

.product-single .gallery i.mdi.mdi-magnify {
  font-size: 24px; }

.spr-badge-starrating {
  color: #333333; }

.spr-badge-starrating .spr-icon, .spr-badge-starrating {
  padding: 0 1px;
  color: #ffbf34;
  font-size: 12px !important; }

.spr-icon.spr-icon-star-empty {
  color: #5c5c5c; }

.social-sharing a {
  color: #333333;
  display: inline-block;
  font-family: Poppins;
  font-size: 1em;
  padding: 0 10px;
  padding-left: 0;
  vertical-align: top; }
.social-sharing a:hover {
  color: #333333; }

@media screen and (min-width: 1025px) {
  .item-social-sharing {
    margin-top: 0; } }

/*360 veiw*/
.tt-360-veiw .spinner {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  color: #000000;
  display: block;
  font-weight: bolder;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  text-align: center;
  width: 60px; }

.tt-360-veiw {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  cursor: ew-resize;
  cursor: -webkit-grab; }

.tt-360-veiw:active {
  cursor: ew-resize;
  cursor: -webkit-grabbing; }

.tt-360-veiw:after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 50%;
  z-index: 5;
  border-bottom: 5px solid rgba(175, 175, 175, 0.15);
  border-top: 2px solid rgba(175, 175, 175, 0.05);
  border-right: 2px solid rgba(175, 175, 175, 0.1);
  border-left: 2px solid rgba(175, 175, 175, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.tt-360-veiw .threed-title {
  position: relative;
  padding-top: 20px;
  z-index: 40;
  text-align: center; }

.tt-360-veiw .threed-view-images {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0; }

.tt-360-veiw .threed-view-images img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto; }

.tt-360-veiw .threed-view-images img.previous-image {
  visibility: hidden;
  /*
     Do not put here any other styles.
     It causes massive recalc / repaints and image flickering,
     especially on Firefox.
  */ }

.tt-360-veiw .threed-view-images img.current-image {
  visibility: visible;
  /*
     Do not put here any other styles.
     It causes massive recalc / repaints and image flickering,
     especially on Firefox.
  */ }

.tt-360-veiw .spinner {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: block;
  margin: 0 auto;
  color: black;
  font-weight: bolder;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.tt-360-veiw .spinner span {
  line-height: 60px; }

.tt-360-veiw .nav_bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -67.5px;
  z-index: 11;
  background-color: white;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15); }

.tt-360-veiw .nav_bar a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 0px;
  text-align: center;
  text-decoration: none; }

.tt-360-veiw .nav_bar a:hover {
  background-color: #f9f9f9; }

.tt-360-veiw .nav_bar a:after {
  font-size: 28px;
  font-family: "Material Design Icons"; }

.tt-360-veiw .nav_bar a.nav_bar_play:after {
  content: "\f40a"; }

.tt-360-veiw .nav_bar a.nav_bar_previous:after {
  content: "\f4ae"; }

.tt-360-veiw .nav_bar a.nav_bar_stop:after {
  content: "\f3e4"; }

.tt-360-veiw .nav_bar a.nav_bar_next:after {
  content: "\f4ad"; }

.product-360-view-wrapper {
  margin: 100px auto;
  max-width: 800px;
  position: relative; }

.product-360-button {
  display: inline-block;
  float: left;
  margin: 0 0 10px; }

.design_2 .product-360-button {
  margin: 0 10px 10px 0; }

.product-single__header .product-360-button {
  font-weight: normal;
  margin-bottom: 10px; }

.threesixty-video .product-360-button > a {
  padding: 2px 15px 2px 0;
  border-right: 1px solid #e5e5e5; }
  @media screen and (max-width: 991px) {
    .threesixty-video .product-360-button > a {
      padding: 2px 5px 2px 0; } }
  @media screen and (max-width: 480px) {
    .threesixty-video .product-360-button > a {
      border: none; } }

.threesixty-video i {
  font-size: 20px;
  margin: 0 5px 0 0;
  padding: 15px;
  background: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  padding: 7px 10px; }

.threesixty-video span {
  font-size: 14px;
  font-weight: 400; }
  @media screen and (min-width: 991px) and (max-width: 768px) {
    .threesixty-video span {
      font-size: 12px; } }

.product-Video-btn.popup-video.tip-top {
  float: left;
  width: auto;
  margin-left: 15px; }
  @media screen and (max-width: 480px) {
    .product-Video-btn.popup-video.tip-top {
      margin: 0 0 0 5px; } }

/* html */
.tt-360-veiw:-webkit-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px; }

.tt-360-veiw:-moz-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px; }

.discount-percentage {
  color: white;
  font: 600 14px/16px Lato, Helvetica, sans-serif;
  position: absolute;
  left: auto;
  right: -15px;
  top: 18px;
  bottom: auto;
  background: #f6bb25;
  padding: 2px 5px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -khtml-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media screen and (max-width: 767px) {
    .discount-percentage {
      right: 15px;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }
  @media screen and (max-width: 481px) {
    .discount-percentage {
      right: 8px; } }

.product-wrapper:hover .discount-percentage {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  right: 15px; }
  @media screen and (max-width: 481px) {
    .product-wrapper:hover .discount-percentage {
      right: 8px; } }

@media screen and (min-width: 481px) and (max-width: 1199px) {
  .product-short-list .product-wrapper:hover .discount-percentage {
    right: 5px; }

  .product-short-list .style2 .product-wrapper:hover .product-price__sale-label {
    left: 5px; }

  .product-short-list .style2 .product-wrapper:hover .custom_label {
    left: 5px; }

  .product-short-list .style1 .product-wrapper:hover .discount-percentage {
    right: auto; } }
@media screen and (min-width: 481px) and (max-width: 767px) {
  .product-short-list .product-wrapper .discount-percentage {
    right: 5px;
    top: 12px; }

  .product-short-list .style2 .product-wrapper .product-price__sale-label {
    left: 5px;
    top: 30px; }

  .product-short-list .style2 .product-wrapper .custom_label {
    left: 5px;
    top: 10px; } }
.style1.product-layouts .discount-percentage {
  left: -15px;
  right: auto;
  top: auto;
  bottom: 20px;
  background: #f6bb25;
  padding: 3px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media screen and (max-width: 767px) {
    .style1.product-layouts .discount-percentage {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      bottom: 65px;
      left: 10px; } }

.style1.product-layouts .product-wrapper:hover .discount-percentage {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  left: 10px; }

.product-list .style1.product-layouts .discount-percentage {
  bottom: 15px; }

.product-short-list .style1.product-layouts .discount-percentage {
  bottom: 10px; }

.product-short-list .style1.product-layouts .product-wrapper .custom_label {
  top: 5px; }

.product-short-list .style1 .product-wrapper .product-price__sale-label {
  top: 25px; }

.product-single__thumbs img {
  width: auto; }

.product-single__thumbs img:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }

@media screen and (max-width: 480px) {
  #shopify-section-product-template-2 {
    margin: 0; } }
/*============================================================================
  #toggle-accordion
==============================================================================*/
.tt-toggle-frame-set {
  float: left;
  width: 100%;
  margin: 0px;
  padding: 0px; }

.template-page .tt-toggle-frame-set {
  margin-top: 30px; }

.tt-toggle-frame {
  padding-bottom: 20px;
  display: block; }

.tt-toggle-frame h5.tt-toggle-accordion, .tt-toggle-frame .tt-toggle-accordion.h5 {
  font-weight: normal;
  position: relative;
  text-transform: uppercase;
  margin: 0px 0px 0px;
  padding: 0px 0px 0px 20px; }

.tt-toggle-frame h5 a, .tt-toggle-frame .h5 a {
  display: block;
  text-transform: uppercase;
  color: #5c5c5c; }

.tt-toggle-frame h5 a:before, .tt-toggle-frame .h5 a:before, .tt-toggle-frame h5 a:after, .tt-toggle-frame .h5 a:after {
  position: absolute;
  text-decoration: inherit; }

.tt-toggle-frame-set .tt-toggle-frame h5.tt-toggle-accordion:before, .tt-toggle-frame-set .tt-toggle-frame .tt-toggle-accordion.h5:before, .tt-toggle-frame-set .tt-toggle-frame h5.tt-toggle:before, .tt-toggle-frame-set .tt-toggle-frame .tt-toggle.h5:before {
  content: "\f140";
  font-family: "Material Design Icons";
  top: 0px;
  left: 0px;
  position: absolute;
  font-weight: normal; }

.tt-toggle-frame-set .tt-toggle-frame h5.tt-toggle-accordion:after, .tt-toggle-frame-set .tt-toggle-frame .tt-toggle-accordion.h5:after, .tt-toggle-frame-set .tt-toggle-frame h5.tt-toggle:after, .tt-toggle-frame-set .tt-toggle-frame .tt-toggle.h5:after {
  content: "\f140";
  font-family: "Material Design Icons";
  top: 4px;
  left: 0px;
  display: inline-block;
  float: left;
  position: absolute; }

.tt-toggle-frame-set .tt-toggle-frame h5.active:before, .tt-toggle-frame-set .tt-toggle-frame .active.h5:before, .tt-toggle-frame-set .tt-toggle-frame h5.active:after, .tt-toggle-frame-set .tt-toggle-frame .active.h5:after, .tt-toggle-frame-set h5.tt-toggle.active:before, .tt-toggle-frame-set .tt-toggle.active.h5:before {
  content: ""; }

.tt-toggle-frame .tt-toggle-content {
  padding: 5px 20px 20px 22px;
  margin: 0px 0px 0px 0px;
  background: #f4f4f4; }

.tt-toggle-frame .tt-toggle-accordion.active, .tt-toggle-frame .tt-toggle.active {
  background: #f4f4f4;
  margin-bottom: 0px;
  padding: 20px 10px 5px 20px; }

.tt-toggle-accordion.active a:before, .tt-toggle-accordion.active a:after, .tt-toggle-frame .tt-toggle.active a:before, .tt-toggle-frame .tt-toggle.active a:after, .tt-toggle-frame-set .tt-toggle-frame h5.tt-toggle.active:before, .tt-toggle-frame-set .tt-toggle-frame .tt-toggle.active.h5:before {
  content: ""; }

.tt-toggle-frame-set h5.tt-toggle-accordion:before, .tt-toggle-frame-set .tt-toggle-accordion.h5:before, h5.tt-toggle:before, .tt-toggle.h5:before {
  content: "\f140";
  font-family: "Material Design Icons"; }

h5.tt-toggle-accordion.active:before, .tt-toggle-accordion.active.h5:before, .tt-toggle-frame-set h5.tt-toggle.active:before, .tt-toggle-frame-set .tt-toggle.active.h5:before {
  content: "\f143";
  font-family: "Material Design Icons"; }

h5.tt-toggle-accordion.active, .tt-toggle-accordion.active.h5 {
  background: #fff;
  color: #000; }

h5.tt-toggle-accordion.active a, .tt-toggle-accordion.active.h5 a {
  color: #000; }

.course h5.tt-toggle-accordion:before, .course .tt-toggle-accordion.h5:before {
  content: "?"; }

.course h5.tt-toggle-accordion.active:before, .course .tt-toggle-accordion.active.h5:before {
  content: "?"; }

.tt-toggle-frame h5.tt-toggle-accordion:before, .tt-toggle-frame .tt-toggle-accordion.h5:before {
  content: ''; }

.tt-toggle-frame h5.tt-toggle-accordion, .tt-toggle-frame .tt-toggle-accordion.h5 {
  line-height: inherit; }

h5.tt-toggle-accordion, .tt-toggle-accordion.h5, .tt-toggle-frame h5.tt-toggle, .tt-toggle-frame .tt-toggle.h5, h5.tt-toggle, .tt-toggle.h5 {
  padding: 15px 0px 15px 42px;
  line-height: 30px;
  position: relative;
  font-size: 16px;
  margin: -1px 0 -1px;
  border: 1px solid #e5e5e5; }

.tt-toggle-frame h5.tt-toggle, .tt-toggle-frame .tt-toggle.h5 {
  padding: 0px 0px 0px 20px;
  margin-bottom: 0px; }

.tt-toggle-frame h5.ttc-toggle-accordion a, .tt-toggle-frame .ttc-toggle-accordion.h5 a, .tt-toggle-frame h5.tt-toggle a, .tt-toggle-frame .tt-toggle.h5 a {
  font-weight: normal; }

h5.tt-toggle-accordion a, .tt-toggle-accordion.h5 a {
  color: #5c5c5c;
  font-weight: bold;
  display: block; }

h5.tt-toggle a, .tt-toggle.h5 a {
  color: #5c5c5c;
  font-size: 16px;
  font-weight: bold;
  display: block; }

.tt-toggle-frame h5.tt-toggle-accordion a, .tt-toggle-frame .tt-toggle-accordion.h5 a {
  font-weight: normal; }

h5.tt-toggle-accordion:before, .tt-toggle-accordion.h5:before, h5.tt-toggle:before, .tt-toggle.h5:before {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -khtml-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  top: 15px;
  left: 3px;
  z-index: 1; }

.tt-toggle-frame h5.tt-toggle-accordion:before, .tt-toggle-frame .tt-toggle-accordion.h5:before, .tt-toggle-frame h5.tt-toggle:before, .tt-toggle-frame .tt-toggle.h5:before {
  background: none;
  display: inherit;
  width: auto;
  height: auto;
  text-align: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  position: static; }

h5.tt-toggle-accordion.active:before, .tt-toggle-accordion.active.h5:before, h5.tt-toggle.active:before, .tt-toggle.active.h5:before {
  line-height: 25px; }

.tt-toggle-frame h5.tt-toggle-accordion.active:before, .tt-toggle-frame .tt-toggle-accordion.active.h5:before, .tt-toggle-frame h5.tt-toggle.active:before, .tt-toggle-frame .tt-toggle.active.h5:before {
  border: 0px; }

.tt-toggle-content {
  padding-left: 40px;
  padding-bottom: 20px;
  padding-top: 20px;
  clear: both;
  display: none;
  border: 1px solid #e5e5e5; }

#shopify-section-faq .tt-toggle-accordion {
  cursor: pointer; }

.faq-title {
  color: black !important;
  float: left;
  width: 100%;
  padding: 10px 0;
  line-height: 22px;
  font-size: 18px !important;
  font-family: Lato, Helvetica, Sans-serif; }
  @media screen and (max-width: 480px) {
    .faq-title {
      font-size: 16px !important; } }

.faq-img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

/*****************/
/*============================================================================
  #Pricing table
==============================================================================*/
.tt-pricing_wrapper {
  float: left;
  width: 100%; }

.tt-pricing_inner {
  background: #f5f5f5 none repeat scroll 0 0;
  float: left;
  padding: 25px;
  width: 100%; }

.tt-pricing_heading {
  font-size: 30px;
  margin: 0 0 20px;
  text-transform: capitalize; }

.tt-pricing_top_inner {
  border-bottom: 3px solid #cfcfcf;
  display: inline-block;
  padding: 10px 0; }

.tt-pricing_top_inner sup.currency {
  font-size: 30px;
  font-weight: 500;
  line-height: 32px;
  position: static; }

.tt-pricing_top .tt-pricing_price {
  display: inline;
  font-size: 30px;
  font-weight: 500; }

.tt-pricing_top .tt-pricing_per {
  display: inline;
  font-size: 14px;
  line-height: 17px; }

.tt-pricing_inner .subtitle {
  color: #a4a4a4; }

.tt-pricing_bottom {
  float: left;
  width: 100%; }

.tt-pricing_button {
  float: left;
  margin: 25px 0 0;
  text-transform: capitalize;
  width: 100%; }

.tt-pricing_button a#tt-pricing-btn {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: white;
  display: inline-block;
  padding: 10px;
  background: #f6bb25; }

.tt-pricing_button a#tt-pricing-btn:hover {
  background: #f6bb25; }

.tt-pricing_bottom ul li {
  list-style: none; }

.pricing-table {
  margin-top: 20px;
  float: left;
  width: 100%; }

.tt-pricing-table-wrap {
  margin-left: -10px;
  margin-right: -10px; }

.tt-pricing_top {
  display: inline-block;
  float: left;
  margin-bottom: 15px;
  position: relative;
  width: 100%; }

.selected .tt-pricing_inner {
  background: #efefef none repeat scroll 0 0; }

/*============================================================================
  #Our team
==============================================================================*/
.about_content {
  display: flex; }

.ourteam_slider .owl-nav {
  display: none; }

.about_description {
  padding: 150px 0;
  float: left;
  width: 100%; }
  @media screen and (max-width: 991px) {
    .about_description {
      padding: 10px 0; } }

#shopify-section-about-us-team {
  float: left;
  width: 100%;
  text-align: center; }
  @media screen and (max-width: 991px) {
    #shopify-section-about-us-team {
      margin: 0; } }

.aboutus-wrap.ourteam_wrap {
  float: left;
  width: 100%;
  position: relative;
  margin: 70px 0 40px; }
  @media screen and (max-width: 1199px) {
    .aboutus-wrap.ourteam_wrap {
      margin: 20px 0 40px; } }
  @media screen and (max-width: 767px) {
    .aboutus-wrap.ourteam_wrap {
      margin: 10px 0 40px; } }
  @media screen and (max-width: 480px) {
    .aboutus-wrap.ourteam_wrap {
      text-align: center; } }

.aboutus-wrap .customNavigation {
  margin: 0; }

.ourteam_wrap .teammember-item .teammember-content .ourteam-image::before {
  background-color: #eeeeee;
  content: "";
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  border-radius: 8px; }

.ourteam_wrap ul li.teammember-item, .ourteam_wrap ul li.teammember-item ul li {
  list-style: none;
  display: inline-block; }

.teammember-inner .teammember-social-profile > li {
  margin: 0;
  padding: 0 7px; }

.teammember-inner .teammember-social-profile {
  margin: 0; }

.ourteam_wrap .teammember-item .teammember-content {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden; }

.teammember-item .ourteam-image-wrap {
  position: relative; }

.teammember-item {
  padding: 0 15px;
  margin: 20px 0 30px; }
  @media screen and (max-width: 767px) {
    .teammember-item {
      margin: 0 0 20px; } }

.ourteam_wrap .tt_description {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 15px; }

.ourteam_wrap .teammember-item .teammember-content .ourteam-image {
  position: relative;
  -webkit-transition: 300ms ease-in-out;
  -moz-transition: 300ms ease-in-out;
  -ms-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  float: left;
  width: 100%; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta {
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  padding: 20px 0;
  position: absolute;
  text-align: center;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: 300ms ease-in-out;
  -moz-transition: 300ms ease-in-out;
  -ms-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  width: 100%;
  z-index: 2;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -khtml-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px; }
  @media screen and (max-width: 767px) {
    .ourteam_wrap .teammember-item .teammember-content .teammember-meta {
      -webkit-transform: scaleY(1);
      -moz-transform: scaleY(1);
      -ms-transform: scaleY(1);
      -o-transform: scaleY(1);
      transform: scaleY(1); } }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
  -webkit-transition: 300ms ease-in-out;
  -moz-transition: 300ms ease-in-out;
  -ms-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-position {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: capitalize; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-social-profile {
  margin-bottom: 0;
  margin-top: 5px;
  padding-left: 0;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -ms-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-social-profile li {
  display: inline-block;
  font-size: 16px;
  margin: 0 5px;
  padding: 0;
  -webkit-transition: 300ms ease-in-out;
  -moz-transition: 300ms ease-in-out;
  -ms-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-social-profile li a {
  background-color: #ffffff;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  width: 30px; }

.ourteam_wrap .teammember-item .teammember-content:hover .teammember-meta {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -khtml-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px; }

.ourteam_wrap .owl-carousel:hover .owl-buttons div {
  display: none; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-social-profile li.facebook:hover a {
  background: #4c76be;
  color: #fff; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-social-profile li.twitter:hover a {
  background: #00c7ff;
  color: #fff; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-social-profile li.googleplus:hover a {
  background: #ea4c89;
  color: #fff; }

.ourteam_wrap .teammember-item .teammember-content .teammember-meta .teammember-social-profile li.instagram:hover a {
  background: #c8232c;
  color: #fff; }

/*------------ about-us-2 -------------*/
#ttabout .About_us.img {
  padding: 20px 0 0; }
  @media screen and (max-width: 991px) {
    #ttabout .About_us.img {
      padding: 0; } }

#ttabout img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.ttabout1 .ttabout {
  text-align: center; }
  @media screen and (max-width: 480px) {
    .ttabout1 .ttabout {
      width: 100%; } }

.ttabout1.col-sm-12.col-xs-12 .ttabout-content {
  padding: 30px 0 60px; }

.ttabout1 .ttabout-content {
  padding: 30px 0;
  float: left;
  text-align: center; }

.ttabout1 .ttabout-content .ttabout-title {
  font-size: 24px;
  color: #222222;
  font-weight: 600;
  margin: 0 0 20px;
  font-family: Lato, Helvetica, Sans-serif; }
  @media screen and (max-width: 767px) {
    .ttabout1 .ttabout-content .ttabout-title {
      font-size: 18px; } }

/**/
/*============================================================================
  #404 page
==============================================================================*/
h1.text-center.heading-404, .text-center.heading-404.h1 {
  font-size: 115px;
  margin: 0; }

.spr-form-message-error {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.error-404 h4, .error-404 .h4 {
  font-size: 50px; }

.error-404 .search-bar {
  max-width: 100%;
  width: 80%;
  float: none;
  margin: 0 auto; }

.error-404 p.text-center {
  font-size: 20px;
  margin-bottom: 35px; }

/*============================================================================
  #Blogs and Comments
==============================================================================*/
.blog_latest_new_home .text-center {
  padding: 30px 0 0; }

#blog_slider .ttblog_image_holder a.article__grid-image {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.blog_latest_new_home .grid.grid--blog, .blog_latest_new_home .grid--blog.grid--rev, .blog_latest_new_home .grid--blog.grid--full {
  text-align: center;
  margin: 0 0 10px; }

#blog_slider .article__grid__inner .ttblog_image_holder > a::before, .blog-section .tt-blog-content .ttblog_image_holder > a::before {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }
  @media screen and (max-width: 767px) {
    #blog_slider .article__grid__inner .ttblog_image_holder > a::before, .blog-section .tt-blog-content .ttblog_image_holder > a::before {
      background: rgba(0, 0, 0, 0.3);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

#blog_slider .article__grid__inner:hover .ttblog_image_holder > a::before, .blog-section .tt-blog-content:hover .ttblog_image_holder > a::before {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  background: rgba(0, 0, 0, 0.5); }

#blog_slider .tt-blog-content .blog_image_holder .bloglinks, .content-wrapper .tt-blog-content span.bloglinks {
  bottom: 0;
  height: 42px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px; }

#blog_slider .tt-blog-content .blog_image_holder .bloglinks a, .content-wrapper .tt-blog-content span.bloglinks a {
  border: 2px solid #fff;
  float: left;
  width: 40px;
  padding: 9px 10px;
  height: 40px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s; }
  @media screen and (max-width: 767px) {
    #blog_slider .tt-blog-content .blog_image_holder .bloglinks a, .content-wrapper .tt-blog-content span.bloglinks a {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

#blog_slider .tt-blog-content .blog_image_holder .bloglinks a i, .content-wrapper .tt-blog-content span.bloglinks a i {
  float: left;
  font-size: 18px;
  line-height: 20px;
  font-weight: normal; }

#blog_slider .tt-blog-content:hover .blog_image_holder .bloglinks a, .content-wrapper .tt-blog-content:hover span.bloglinks a {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  color: #fff; }

#blog_slider .tt-blog-content .blog-content-wrap {
  padding: 0; }

#blog_slider .tt-blog-content .article__grid-meta.article__grid-meta--has-image {
  float: left;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

#blog_slider .article__grid-meta .h3.article__title a {
  color: #333;
  white-space: nowrap; }

#blog_slider .article__grid-meta .h3.article__title a:hover {
  color: #000; }

#blog_slider .article__grid-meta .rte.article__grid-excerpt {
  line-height: 22px;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 400;
  float: left;
  width: 100%; }
  @media (max-width: 1500px) {
    #blog_slider .article__grid-meta .rte.article__grid-excerpt {
      margin: 0 0 10px; } }

.design_1 #blog_slider .article__grid-meta .rte.article__grid-excerpt {
  font-family: Poppins, sans-serif;
  font-size: 14px; }

.design_1 #blog_slider .tt-blog-content .blog-content-wrap span.article__comment {
  display: none; }

.design_1 #blog_slider .tt-blog-content .blog-content-wrap span.article__date.left {
  width: 100%;
  margin: 0 0 10px; }

.design_1 #blog_slider .tt-blog-content .blog-content-wrap span.article__date.left {
  float: left;
  width: 100%;
  margin: 0 0 10px; }

#blog_slider .tt-blog-content .read-more:after {
  content: "\f142";
  font-family: "Material Design Icons";
  vertical-align: middle;
  font-size: 16px;
  float: none;
  line-height: 20px; }

#blog_slider .blog-content-wrap .list--inline.article__meta-buttons {
  float: left;
  width: 100%;
  margin: 0; }

#blog_slider .blog-content-wrap .list--inline > li {
  float: left;
  width: 100%;
  margin: 0; }

#blog_slider .article__grid-meta .list--inline a.read-more {
  float: none;
  width: auto; }

#blog_slider .blog-content-wrap .article__date i.mdi.mdi-calendar {
  font-size: 16px;
  line-height: 18px;
  padding: 2px 6px 0 0;
  float: left;
  width: auto; }

#blog_slider.grid-blog-slider .article__grid-image img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.design_1 #blog_slider.grid-blog-slider .article__grid-image img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

#blog_slider .tt-blog-content .article__title {
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  float: left;
  margin: 0;
  letter-spacing: 1px; }

#blog_slider .tt-blog-content .article__title > a {
  color: #222222;
  font: italic 600 18px/20px Lato; }
  @media screen and (max-width: 767px) {
    #blog_slider .tt-blog-content .article__title > a {
      font-size: 16px; } }

/*-------------- blog-design-1 --------------*/
.design_1 #blog_slider .tt-blog-content .article__title > a {
  font-size: 18px;
  line-height: 24px; }

.design_1 #blog_slider .tt-blog-content .blog-content-wrap {
  text-align: left;
  padding: 10px 0 0 20px;
  position: relative;
  width: 50%; }
  @media screen and (max-width: 1300px) {
    .design_1 #blog_slider .tt-blog-content .blog-content-wrap {
      padding: 5px 0 0 20px; } }
  @media screen and (max-width: 1200px) {
    .design_1 #blog_slider .tt-blog-content .blog-content-wrap {
      padding: 10px 0 0 15px; } }
  @media screen and (max-width: 1199px) {
    .design_1 #blog_slider .tt-blog-content .blog-content-wrap {
      padding: 10px 5px;
      float: left;
      width: 100%; } }

.design_1 #blog_slider .article__grid__inner.tt-blog-content {
  float: left;
  width: 100%;
  text-align: left;
  overflow: hidden;
  position: relative;
  padding: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 767px) {
    .design_1 #blog_slider .article__grid__inner.tt-blog-content {
      margin: 0; } }

.design_1 #blog_slider .ttblog_image_holder a.article__grid-image {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.design_1 #blog_slider .grid__item {
  padding: 0 15px; }

.design_1 #blog_slider .article__grid__inner .ttblog_image_holder.blog_image_holder {
  float: left;
  width: 50%;
  position: relative; }
  @media screen and (max-width: 1199px) {
    .design_1 #blog_slider .article__grid__inner .ttblog_image_holder.blog_image_holder {
      width: 100%; } }

.design_1 #blog_slider .tt-blog-content .article__title {
  padding: 0 0 10px; }

.design_1 #blog_slider.grid-blog-slider .tt-blog-content:hover .article__date {
  left: -40%; }
  @media screen and (max-width: 767px) {
    .design_1 #blog_slider.grid-blog-slider .tt-blog-content:hover .article__date {
      left: 0; } }

.design_1 #blog_slider .blog-content-wrap span.article__comment.right,
.design_2 #blog_slider .blog-content-wrap span.article__comment.right {
  display: none; }

/*-------------- blog-design-2 -------------------------*/
.design_2 #blog_slider .tt-blog-content .blog-content-wrap {
  float: left;
  width: 100%;
  text-align: left;
  padding: 5px 15px 14px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -khtml-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px; }

.design_2 #blog_slider .ttblog_image_holder a.article__grid-image {
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -khtml-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0; }

.design_2 #blog_slider .tt-blog-content .blog-content-wrap .article__comment {
  display: none; }

.design_2 #blog_slider .article__grid__inner.tt-blog-content {
  float: left;
  width: 100%;
  text-align: left;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    .design_2 #blog_slider .article__grid__inner.tt-blog-content {
      margin: 0; } }

.design_2 #blog_slider .grid__item {
  padding: 0 15px; }

.design_2 #blog_slider .article__grid__inner .ttblog_image_holder.blog_image_holder {
  float: left;
  width: 100%;
  position: relative;
  padding: 0; }

.design_2 #blog_slider .tt-blog-content .article__title {
  padding: 0 0 5px;
  font-size: 18px;
  line-height: 28px; }

.design_2 #blog_slider.grid-blog-slider .tt-blog-content .article__date {
  float: left;
  padding: 0 0 10px;
  font-size: 16px;
  width: 100%; }

.design_2 #blog_slider .blog-content-wrap .article__date i.mdi.mdi-calendar {
  font-size: 20px;
  line-height: 22px; }

.design_2 #blog_slider .tt-blog-content .blog-content-wrap .article__meta-buttons {
  position: relative;
  padding: 0;
  float: left;
  width: auto; }

.design_2 #blog_slider .article__grid-meta .rte.article__grid-excerpt {
  margin: 0 0 5px; }

.design_2 #blog_slider .tt-blog-content .blog-content-wrap .article__meta-buttons a.read-more {
  color: #f6bb25;
  font-weight: 500;
  padding: 5px 0;
  text-transform: capitalize;
  float: left; }

.design_2 #blog_slider .tt-blog-content .blog-content-wrap .article__meta-buttons a.read-more:hover {
  color: #f6bb25; }

.lightbox .lb-outerContainer .lb-container .lb-nav a.lb-prev, .lightbox .lb-outerContainer .lb-container .lb-nav a.lb-next {
  height: 100%;
  padding: 9px 0;
  cursor: pointer;
  width: 40px !important;
  height: 40px !important;
  display: block;
  line-height: 22px;
  border-radius: 50px;
  background: #fff; }

.lightbox .lb-outerContainer .lb-container {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.lightbox .lb-outerContainer .lb-container .lb-image {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

/*------------------------------------------------------*/
/*-------------- blog-design-3 -------------------------*/
.design_3 #blog_slider .article__grid__inner .ttblog_image_holder.blog_image_holder {
  float: left;
  width: 100%;
  position: relative; }

.design_3 #blog_slider .article__grid__inner.tt-blog-content {
  float: left;
  width: 100%;
  text-align: left;
  padding: 0 15px;
  margin: 0 0 30px; }

.design_3 #blog_slider .tt-blog-content .article__title {
  margin: 0 0 10px; }

.design_3 .article__grid-meta.article__grid-meta--has-image {
  -webkit-box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: -20px; }
  @media screen and (max-width: 1199px) {
    .design_3 .article__grid-meta.article__grid-meta--has-image {
      padding: 15px; } }

.design_3 #blog_slider .tt-blog-content .blog-content-wrap {
  padding: 0 20px;
  float: left;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .design_3 #blog_slider .tt-blog-content .blog-content-wrap {
      padding: 0 10px; } }

.design_3 #blog_slider .article__grid-meta .list--inline a.read-more {
  float: none;
  display: inline-block;
  vertical-align: top;
  color: #f6bb25; }

.design_3 #blog_slider .article__grid-meta .list--inline a.read-more:hover {
  color: #f6bb25; }

.design_3 #blog_slider .tt-blog-content .article__grid-meta.article__grid-meta--has-image {
  position: relative; }

.design_3 #blog_slider .tt-blog-content .blog-content-wrap .article__comment {
  display: none; }

/*--------------------- blog inner content -------------------*/
#shopify-section-blogleft_inner_content .tt-blog-content .tt-blog-description {
  float: left;
  width: 100%; }

#shopify-section-blogleft_inner_content .tt-blog-description h4.article__title, #shopify-section-blogleft_inner_content .tt-blog-description .article__title.h4 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 12px;
  float: left;
  width: 100%; }
  @media screen and (max-width: 1199px) {
    #shopify-section-blogleft_inner_content .tt-blog-description h4.article__title, #shopify-section-blogleft_inner_content .tt-blog-description .article__title.h4 {
      font-size: 14px; } }

#shopify-section-blogleft_inner_content .tt-blog-description h4.article__title > a, #shopify-section-blogleft_inner_content .tt-blog-description .article__title.h4 > a {
  color: #333;
  font-family: Lato, Helvetica, sans-serif; }

#shopify-section-blogleft_inner_content .tt-blog-description .tt-social-share i.mdi {
  font-size: 18px;
  line-height: 30px; }

#shopify-section-blogleft_inner_content .article .tt-blog-description .blog-tag {
  margin: 0 0 10px; }

#shopify-section-blogleft_inner_content .article .tt-blog-description .tt-social-share {
  float: left;
  width: 100%;
  margin: 3px 0 15px; }

#shopify-section-blogleft_inner_content .tt-blog-content .tt-social-share > div {
  float: left;
  width: 30px;
  height: 30px;
  margin: 0 5px 0 0; }

#shopify-section-blogleft_inner_content .article .ttblog_image_holder.blog_image_holder {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 0 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }

#shopify-section-blogleft_inner_content .article .blogs-sub-title {
  float: left;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -45px;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  padding: 10px 15px; }
  @media screen and (max-width: 767px) {
    #shopify-section-blogleft_inner_content .article .blogs-sub-title {
      bottom: 0; } }
  @media screen and (max-width: 480px) {
    #shopify-section-blogleft_inner_content .article .blogs-sub-title {
      padding: 5px 10px; } }

#shopify-section-blogleft_inner_content .article:hover .blogs-sub-title {
  bottom: 0; }

#shopify-section-blogleft_inner_content .article .blogs-sub-title p {
  margin: 0;
  color: #fff; }

#shopify-section-blogleft_inner_content .tt-blog-content .tt-blog-description .blog-btn a.btn, #shopify-section-blogleft_inner_content .tt-blog-content .tt-blog-description .blog-btn a.btn--secondary {
  background: no-repeat;
  color: #777777;
  padding: 0; }

#shopify-section-blogleft_inner_content .tt-blog-content .tt-blog-description .blog-btn a.btn:hover, #shopify-section-blogleft_inner_content .tt-blog-content .tt-blog-description .blog-btn a.btn--secondary:hover {
  color: #f6bb25; }

#shopify-section-blogleft_inner_content .tt-blog-content .tt-blog-description .blog-btn a::after {
  display: none; }

#shopify-section-blogleft_inner_content .tt-blog-content .blog-btn i.mdi.mdi-chevron-right {
  vertical-align: middle; }

#shopify-section-blogleft_inner_content .tt-blog-content .blog_image_holder img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.grid__item .article .blog-tag {
  margin: 0 0 10px; }

/*-------------------- blog_list ----------------*/
.blog_list.grid__item {
  padding: 0; }

.blog_list .article.tt-blog-content {
  float: left;
  width: 100%;
  margin: 0 0 30px; }

.blog_list .tt-blog-content .blog_image_holder {
  position: relative;
  float: left;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0; }

.blog_list .ttblog_image_holder a.article__grid-image {
  float: left;
  width: 100%;
  position: relative; }

.blog_list .ttblog_image_holder a.article__grid-image img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.blog_list.grid__item.blog_list_item p.blog-date {
  position: absolute;
  right: 15px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  color: #222222;
  line-height: 20px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -khtml-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px; }
  @media screen and (max-width: 480px) {
    .blog_list.grid__item.blog_list_item p.blog-date {
      padding: 5px 10px;
      bottom: 0; } }

.blog_list.grid__item.blog_list_item p.blog-date .mdi.mdi-calendar {
  vertical-align: middle; }

.blog_list.grid__item.blog_list_item .tt-blog-description .tt-social-share {
  width: 100%;
  float: left;
  margin: 5px 0 0; }

.blog_list .tt-blog-description .tt-social-share > div {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: top; }

.blog_list .tt-blog-description .tt-social-share i.mdi {
  font-size: 18px;
  line-height: 30px; }

.blog_list.grid__item.blog_list_item .tt-blog-description .blog-btn {
  float: left;
  width: auto;
  margin: 20px 0 0; }

.blog_list.grid__item.blog_list_item .tt-blog-description .blog-btn .btn, .blog_list.grid__item.blog_list_item .tt-blog-description .blog-btn .btn--secondary, .blog_list.grid__item.blog_list_item .tt-blog-description .blog-btn input[type="submit"] {
  line-height: 20px; }

.blog_list.grid__item.blog_list_item .blog-tag {
  float: left;
  width: 100%;
  margin: 0 0 7px; }

.blog_list.grid__item.blog_list_item .comments-count {
  float: right;
  width: auto;
  padding: 0;
  margin: 30px 0 0; }

.blog_list.grid__item.blog_list_item .blog_title_wrap {
  width: auto;
  float: left; }

.blog_list.grid__item.blog_list_item .blog_descrition {
  margin: 0;
  padding: 0; }

.blog_list.grid__item.blog_list_item .blog_descrition > p {
  margin: 0 0 10px 0; }

.blog_list .blog-btn i {
  margin-left: 5px;
  vertical-align: middle; }

.blog_list .tt-blog-content .article__title {
  font-size: 18px;
  line-height: 20px; }

.blog_list .tt-blog-content .article__title a {
  color: #333;
  font-family: Lato, Helvetica, sans-serif; }

@media screen and (max-width: 767px) {
  .blog_list .article.tt-blog-content .ttblog_image_holder {
    width: 100%;
    margin: 0 0 15px; }

  .blog_list .article.tt-blog-content .tt-blog-description {
    float: left;
    width: 100%; } }
/*-------------------- blog masonry ----------------*/
.blog_masonry_left .article.tt-blog-content {
  float: left;
  width: 100%;
  padding: 10px;
  -webkit-box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 30px;
  background: #fff; }

/*----------------- blog single post -----------------*/
.content_wrap article.grid-item.blog-post-single {
  padding: 0; }

.blog-post-single a.blog-post__full-image {
  float: left;
  width: 100%;
  margin: 0 0 20px; }

.blog-post-single a.blog-post__full-image img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.blog-post-single .blog-meta {
  float: left;
  width: auto; }

.blog-post-single .section-header.text-left h1, .blog-post-single .section-header.text-left .h1 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  text-transform: capitalize;
  color: #222222;
  float: left;
  width: 100%;
  margin: 0 0 20px;
  font-family: Lato, Helvetica, sans-serif; }

.blog-post-single .blog-meta .article_date {
  font-size: 14px;
  line-height: 18px;
  color: #333;
  border-right: 1px solid #e5e5e5;
  padding-right: 15px;
  float: left;
  width: auto; }

.blog-post-single .blog-meta a.blog__name {
  float: left;
  width: auto;
  font-size: 14px;
  line-height: 18px;
  color: #333; }

.blog-post-single > .rte {
  float: left;
  width: 100%;
  margin: 12px 0 22px;
  border-top: 1px solid #e5e5e5;
  padding: 10px 0 0; }

.blog-post-single .text-left.item-social-sharing {
  float: left;
  width: 100%;
  margin: 0 0 30px; }

.blog-post-single .item-social-sharing h2.h4, .blog-post-single .item-social-sharing .h4.h2 {
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #333;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  display: none; }

.blog-post-single .item-social-sharing .tt-social-share {
  float: left;
  width: 100%; }

.blog-post-single .tt-social-share > div {
  float: left;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0; }

.blog-post-single .tt-social-share > div > a, .blog-design-4 .tt-blog-content .tt-social-share > div > a {
  float: left;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

.blog-post-single .tt-social-share > div > a:hover, .blog-design-4 .tt-blog-content .tt-social-share > div > a:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px); }

.blog-post-single .tt-social-share > div i.mdi {
  font-size: 18px;
  line-height: 30px; }

.blog-post-single .tt-social-share > div.facebook > a, .blog-design-4 .tt-blog-content .tt-social-share > div.facebook > a {
  background: #3b5998; }

.blog-post-single .tt-social-share > div.twitter > a, .blog-design-4 .tt-blog-content .tt-social-share > div.twitter > a {
  background: #00aced; }

.blog-post-single .tt-social-share > div.google_plus > a, .blog-design-4 .tt-blog-content .tt-social-share > div.google_plus > a {
  background: #d34836; }

.blog-post-single .tt-social-share > div.pinterest > a, .blog-design-4 .tt-blog-content .tt-social-share > div.pinterest > a {
  background: #c8232c; }

.blog-post-single .tt-social-share > div.linkedin > a, .blog-design-4 .tt-blog-content .tt-social-share > div.linkedin > a {
  background: #0077B5; }

.blog-post-single .paginatoin_custom.blog_nav {
  float: left;
  width: 100%; }

.blog-design-4 .sidebar .widget.widget_categories ul {
  margin: 0; }

.blog-post-single hr.hr--clear.hr--small {
  display: none; }

.blog-post-single .paginatoin_custom .blog_nav_img, .blog-post-single .paginatoin_custom .blog_nav_title {
  display: none; }

.blog-post-single .paginatoin_custom a {
  float: left;
  width: auto;
  padding: 10px 20px;
  background: #f6bb25;
  color: white;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  font-family: Lato;
  font-size: 16px; }

.blog-post-single .paginatoin_custom a:hover {
  background: #f6bb25;
  color: white; }

.sidebar .recent_article ul li {
  margin: 0 0 20px; }

.sidebar .recent_article ul li:last-child {
  margin: 0; }

.sidebar .recent_article .artical-image {
  padding: 0; }
  @media screen and (min-width: 380px) and (max-width: 991px) {
    .sidebar .recent_article .artical-image {
      width: auto; } }

.sidebar .recent_article .article-detail {
  padding-right: 0; }

.sidebar .recent_article .artical-image img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.sidebar .recent_article .article-detail h5.article__title, .sidebar .recent_article .article-detail .article__title.h5 {
  font: 400 16px/18px Lato, Helvetica, sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }

.sidebar .recent_article .article-detail .article_date {
  line-height: 16px; }

.blog-post-single .comments-count {
  float: left;
  width: auto;
  border-left: 1px solid #e5e5e5;
  padding-left: 15px;
  line-height: 18px;
  color: #333; }
  @media screen and (max-width: 480px) {
    .blog-post-single .comments-count {
      border: none;
      padding: 0;
      margin: 10px 0 0 0;
      width: 100%; } }

.blog-post-single .meta.text-center {
  float: left;
  width: auto;
  border-left: 1px solid #e5e5e5;
  margin: 0 0 0 10px;
  color: #000; }
  @media screen and (max-width: 480px) {
    .blog-post-single .meta.text-center {
      border: none;
      padding: 0;
      margin: 10px 0 0 0;
      float: left; } }

.blog-post-single .comment .blog-meta .text-center.meta {
  border: none;
  margin: 0; }

.blog-post-single .comments-count i.mdi {
  margin-right: 5px; }

.blog-post-single ul {
  float: left;
  width: 100%;
  margin: 0 0 30px; }
  @media screen and (max-width: 991px) {
    .blog-post-single ul {
      margin: 0 0 15px; } }

.blog-post-single ul > li {
  float: left;
  width: 100%;
  margin: 0; }

.collection_wrapper .blog-post-single ul > li {
  float: left;
  width: 100%;
  margin: 0 0 30px; }
  @media screen and (max-width: 991px) {
    .collection_wrapper .blog-post-single ul > li {
      margin: 0 0 10px; } }

.collection_wrapper .blog-post-single ul > li .comment .rte {
  margin: 0 0 10px; }

.collection_wrapper .blog-post-single ul > li .comment .rte > p {
  margin: 0 0 10px 0; }

.blog-post-single h2.h3, .blog-post-single .h3.h2 {
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #222222;
  font-family: Lato, Helvetica, sans-serif; }

.content-wrapper .tt-blog-content .blogs-sub-title .comments-count > span {
  display: none; }

#shopify-section-article-template {
  margin: 0 0 30px; }

#shopify-section-article-template .content_wrap .sidebar .text-left {
  float: left;
  width: 100%; }
  @media screen and (max-width: 991px) {
    #shopify-section-article-template .content_wrap .sidebar .text-left {
      margin: 10px 0 0; } }

#shopify-section-article-template .sidebar .comments {
  float: left;
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 15px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

#shopify-section-article-template .sidebar .comments h2.h3, #shopify-section-article-template .sidebar .comments .h3.h2 {
  text-align: left;
  text-transform: capitalize;
  color: #222222;
  margin: 0 0 15px;
  font: 600 18px/20px Lato, Helvetica, Sans-serif; }

#shopify-section-article-template .sidebar .comments .grid-item.large--one-half {
  float: left;
  width: 100%; }

#shopify-section-article-template .sidebar .comments input.btn.text-center:hover, #shopify-section-article-template .sidebar .comments input.text-center.btn--secondary:hover, #shopify-section-article-template .sidebar .comments input.text-center[type="submit"]:hover, #shopify-section-article-template .sidebar .comments input.btn.text-center:active, #shopify-section-article-template .sidebar .comments input.text-center.btn--secondary:active, #shopify-section-article-template .sidebar .comments input.text-center[type="submit"]:active, #shopify-section-article-template .sidebar .comments input.btn.text-center:focus, #shopify-section-article-template .sidebar .comments input.text-center.btn--secondary:focus, #shopify-section-article-template .sidebar .comments input.text-center[type="submit"]:focus {
  background: #f6bb25;
  color: white; }

@media screen and (max-width: 991px) {
  .sidebar .sidebar__inner .widget.recent_article > ul {
    padding: 15px;
    float: left;
    width: 100%; }

  .sidebar .sidebar__inner .widget.recent_article {
    margin: 0 0 10px; }

  .sidebar .sidebar__inner .widget.widget_categories {
    margin: 0; }

  .sidebar .sidebar__inner .widget.widget_categories ul {
    padding: 0 15px; } }
/*============================================================================
  #Search Results
==============================================================================*/
.site-header button.btn.search-submit.icon-fallback-text, .site-header button.search-submit.icon-fallback-text.btn--secondary {
  padding: 5px 10px;
  line-height: 25px; }

.full-search-wrapper .search-inner input[type="search"] {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0; }

.full-search-wrapper button.btn.search-submit.icon-fallback-text, .full-search-wrapper button.search-submit.icon-fallback-text.btn--secondary {
  background: no-repeat; }

.full-search-wrapper .search-results li.ac_over {
  background: none; }

.template-search .container .input-group.search-bar {
  margin: 0 0 30px 0;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.template-search .search-bar input.input-group-field {
  float: left;
  width: 100%;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -khtml-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px; }

.header_style_3 .template-search .search-bar input.input-group-field {
  width: 88%;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -khtml-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px; }
  @media screen and (max-width: 1450px) {
    .header_style_3 .template-search .search-bar input.input-group-field {
      width: 84%; } }
  @media screen and (max-width: 1199px) {
    .header_style_3 .template-search .search-bar input.input-group-field {
      width: 80%; } }
  @media screen and (max-width: 991px) {
    .header_style_3 .template-search .search-bar input.input-group-field {
      width: 76%; } }
  @media screen and (max-width: 685px) {
    .header_style_3 .template-search .search-bar input.input-group-field {
      width: 68%; } }
  @media screen and (max-width: 535px) {
    .header_style_3 .template-search .search-bar input.input-group-field {
      width: 52%; } }
  @media screen and (max-width: 390px) {
    .header_style_3 .template-search .search-bar input.input-group-field {
      width: 36%; } }

.template-search .search-bar .collections-selector {
  float: left;
  width: auto; }

.template-search .search-bar .collections-selector select#collection-option {
  border: none;
  padding: 9px 25px 9px 15px;
  font-size: 14px;
  background-color: #fff;
  letter-spacing: 1px;
  margin: 0; }

.template-search .search-bar span button {
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0; }

@media screen and (min-width: 1200px) {
  .template-search .search-products .grid-item.large--one-quarter {
    clear: none;
    width: 25%; }

  .template-search .search-products .grid-item.large--one-quarter:nth-child(4n+1) {
    clear: both; } }
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .template-search .search-products .grid-item.large--one-quarter {
    width: 33.33%;
    clear: none; }

  .template-search .search-products .grid-item.large--one-quarter:nth-child(3n+1) {
    clear: both; } }
@media screen and (min-width: 481px) and (max-width: 767px) {
  .template-search .search-products .grid-item.large--one-quarter {
    width: 50%;
    clear: none; }

  .template-search .search-products .grid-item.large--one-quarter:nth-child(2n+1) {
    clear: both; } }
.header_style_3 .template-search .search-bar span button {
  border-left: 1px solid #e5e5e5; }

#search .search-results {
  overflow: auto !important;
  max-height: 400px; }

.search-results .name-price {
  float: left;
  width: 70%;
  padding: 0 5px; }

.header_3 .search-results .name-price {
  width: 65%; }

form.search-bar .btn:hover .icon.icon-search, form.search-bar .btn--secondary:hover .icon.icon-search, form.search-bar input[type="submit"]:hover .icon.icon-search {
  color: #f6bb25; }

form.search-bar .btn .icon.icon-search, form.search-bar .btn--secondary .icon.icon-search, form.search-bar input[type="submit"] .icon.icon-search {
  color: #777777; }

.full-search-wrapper .search-results .name-price {
  width: 100%;
  padding: 15px 0; }

.full-search-wrapper .search-results, .full-search-wrapper .search-results .thumbnail {
  max-width: 100%;
  margin: 0; }

.full-search-wrapper .search-inner .search-results {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  float: left;
  margin: 30px 0 0;
  width: 100%; }

@media screen and (max-width: 991px) {
  .search-results .name-price {
    width: 65%; } }
/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  font-family: Poppins;
  font-size: 1em;
  padding: 15px 19.8px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  float: left;
  width: 100%; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: #e5e5e5; }

.errors ul {
  list-style: disc inside; }

.form-success {
  color: #0a942a;
  background-color: #ecfef0;
  border-color: #0a942a;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.form-error,
.errors {
  color: #dc0000;
  background-color: #fff6f6;
  border-color: #dc0000;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart-wrapper .product_title .product_img {
  float: none;
  display: inline-block;
  vertical-align: top; }

.cart-wrapper .product_title .product_img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.cart-wrapper .product_title .product_img:hover img {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }

.cart-wrapper .text-center .qty-box-set {
  float: none;
  display: inline-block;
  vertical-align: top;
  margin: 0; }

table.shop_table.cart_table {
  text-transform: capitalize;
  background: #fff; }

.cart-wrapper thead {
  background: #f5f5f5; }

.cart-wrapper .cart__remove a:hover i {
  color: #fff; }

.cart-wrapper .cart__remove a i {
  line-height: 21px; }

.cart-wrapper .cart__subtotal .money {
  font-size: 22px; }

.cart-wrapper .cart__row .h6 {
  margin: 0;
  color: #222222; }

.cart_table thead th span, .shop_table.cart_table th {
  color: #222;
  font: 600 16px/18px Lato, Helvetica, sans-serif; }

.cart_table span.money {
  color: #111111;
  font-family: Lato, Helvetica, sans-serif;
  font-size: 16px; }

.cart-wrapper .cart__row .grid .grid-item, .cart-wrapper .cart__row .grid--rev .grid-item, .cart-wrapper .cart__row .grid--full .grid-item {
  padding: 0; }

.cart-wrapper .cart__row .grid-item label {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px 0; }

.cart-wrapper .cart__row button {
  padding: 10px 20px;
  background: #f6bb25;
  color: white; }

.cart-wrapper .cart__row button:hover::after, .cart-wrapper .cart__row button:focus::after, .cart-wrapper .cart__row button:active::after {
  background: #f6bb25;
  color: white; }

.cart-wrapper .cart__row #update {
  margin: 0 10px 0 0; }
  @media screen and (max-width: 480px) {
    .cart-wrapper .cart__row #update {
      margin: 0 1px 0 0; } }

@media screen and (min-width: 1025px) {
  .template-cart .cart-wrapper {
    max-width: 100%;
    margin: 0 auto;
    float: left;
    width: 100%; } }
.cart__row {
  position: relative;
  padding: 30px 0; }
  @media screen and (max-width: 480px) {
    .cart__row {
      margin: 30px 0;
      padding: 0;
      margin: 15px 0; }
      .cart__row:first-of-type {
        margin-top: 0; } }
  .cart__row .js-qty {
    margin: 0 auto; }
  .cart__row input[name="goto_pp"] {
    padding: 10px 0px 0px; }
  .cart__row .amazon-payments-pay-button {
    margin: 0;
    vertial-align: top; }

.cart__instructions {
  margin-bottom: 30px; }

.cart__image {
  display: block; }
  .cart__image img {
    display: block; }

.cart__subtotal {
  display: inline;
  font-family: Lato;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 0 10px; }

.cart__mini-labels {
  display: block;
  font-family: Poppins;
  font-size: 1em;
  margin: 15px 0 0; }
  @media screen and (min-width: 1025px) {
    .cart__mini-labels {
      margin-top: 30px; } }

.cart__product {
  line-height: 1.85714em;
  margin: 0; }

.site-header__cart .no-items #ToggleDown p {
  margin: 0 0 5px 0; }

.cart__remove {
  font-family: Poppins;
  font-size: 1em;
  margin: 0 0 15px; }
  @media screen and (min-width: 1025px) {
    .cart__remove {
      margin-bottom: 0; } }

.cart-item__discount {
  display: block; }

.cart__additional_checkout_buttons > *:not(script) {
  padding: 10px 0 0 10px;
  vertical-align: top;
  line-height: 1; }
  .cart__additional_checkout_buttons > *:not(script):first-child, .cart__additional_checkout_buttons > *:not(script):empty {
    padding-left: 0px; }

.cart--no-cookies .cart--continue-message {
  display: none; }

.cart--no-cookies .cart--empty-message {
  display: none; }

.cart--cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cart--cookie-message {
    display: block; }

/*============================================================================
  #Customer Account Page
==============================================================================*/
.customer-orders {
  overflow: auto; }

.template-customers-addresses #address_form_new, .template-customers-addresses .edit-address {
  margin: 30px 0; }

.addresses .address-btn > p > a {
  font-weight: 600;
  color: #ff0000; }

#address_form_new .grid-item.one-half.first, .edit-address .grid-item.one-half.first {
  padding-left: 0; }

#address_form_new .grid-item.one-half.last, .edit-address .grid-item.one-half.last {
  padding-right: 0; }

#address_form_new label, .edit-address label {
  font-size: 14px;
  font-weight: 600;
  font-family: Lato, Helvetica, sans-serif; }

#address_form_new .grid-item.left, .edit-address .grid-item.left {
  padding-left: 0; }
  @media screen and (max-width: 1024px) {
    #address_form_new .grid-item.left, .edit-address .grid-item.left {
      padding: 0; } }

#address_form_new .grid-item.right, .edit-address .grid-item.right {
  padding-right: 0; }
  @media screen and (max-width: 1024px) {
    #address_form_new .grid-item.right, .edit-address .grid-item.right {
      padding: 0; } }

#address_form_new #address_default_address_new.btn, #address_form_new #address_default_address_new.btn--secondary, #address_form_new input#address_default_address_new[type="submit"], .edit-address .btn.update, .edit-address .update.btn--secondary, .edit-address input.update[type="submit"] {
  float: right;
  margin: 0 0 30px 0; }

#address_form_new a, .edit-address a {
  color: white;
  float: left; }

#address_form_new .btn:hover a, #address_form_new .btn--secondary:hover a, #address_form_new input[type="submit"]:hover a, .edit-address .btn:hover a, .edit-address .btn--secondary:hover a, .edit-address input[type="submit"]:hover a {
  color: white; }

#address_form_new #address_province_container_new {
  padding: 0; }

.template-customers-addresses .container .btn:hover, .template-customers-addresses .container .btn--secondary:hover, .template-customers-addresses .container input[type="submit"]:hover,
.template-customers-addresses .container .btn--secondary:hover,
.template-customers-addresses .container input[type="submit"]:hover {
  color: white;
  background: #f6bb25; }

.template-customers-account .grid-item.customer-orders.two-thirds,
.template-customers-order .grid-item.two-thirds {
  padding-left: 0;
  overflow: auto; }

.template-customers-account .grid-item.one-third,
.template-customers-order .grid-item.one-third {
  padding-right: 0; }
  @media screen and (max-width: 1024px) {
    .template-customers-account .grid-item.one-third,
    .template-customers-order .grid-item.one-third {
      padding: 0; } }

.template-customers-account .grid-item h2.h4, .template-customers-account .grid-item .h4.h2,
.template-customers-order .grid-item h2.h4,
.template-customers-order .grid-item .h4.h2 {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5px;
  color: #777777; }

@media screen and (max-width: 1024px) {
  .template-customers-order .grid-item.two-thirds {
    width: 100%;
    padding: 0; }

  .template-customers-order .grid-item.one-third {
    width: 100%;
    padding: 0; } }
.shopify-challenge__container .g-recaptcha {
  float: left;
  width: 100%; }

.shopify-challenge__container .shopify-challenge__button:hover {
  background: #f6bb25;
  color: white; }

.template-customers-account .grid-item h2.h4, .template-customers-account .grid-item .h4.h2 {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5px;
  color: #777777; }

.template-customers-account .grid, .template-customers-account .grid--rev, .template-customers-account .grid--full {
  float: left;
  width: 100%;
  margin: 20px 0; }
  @media screen and (max-width: 480px) {
    .template-customers-account .grid, .template-customers-account .grid--rev, .template-customers-account .grid--full {
      margin: 12px 0; } }

.template-customers-activate_account label {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px; }

/*============================================================================
  Ajaxify.scss.liquid overrides
  - Make the drawer come from the right
==============================================================================*/
.ajaxify-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  font-family: Lato;
  width: 85%;
  overflow: hidden;
  -webkit-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -moz-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -ms-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -o-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  @media screen and (min-width: 1025px) {
    .ajaxify-drawer {
      width: 50%; } }
  .ajaxify-drawer .ajaxifyCart--content {
    background-color: transparent;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; }
  .supports-csstransforms .ajaxify-drawer {
    -webkit-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -ms-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -o-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  .page-move--cart .ajaxify-drawer, .page-move--nav .ajaxify-drawer {
    position: fixed;
    overflow: auto; }

/*================ Ajaxify color overrides ================*/
.ajaxify-drawer {
  color: #777777; }
  .ajaxify-drawer a {
    color: #919191;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .ajaxify-drawer a:hover {
      color: #aaaaaa; }
  .ajaxify-drawer h1, .ajaxify-drawer .h1 {
    font-size: 1.71429em; }
    @media screen and (min-width: 1025px) {
      .ajaxify-drawer h1, .ajaxify-drawer .h1 {
        margin-bottom: 30px; } }
  .ajaxify-drawer h1, .ajaxify-drawer .h1, .ajaxify-drawer h2, .ajaxify-drawer .h2, .ajaxify-drawer h3, .ajaxify-drawer .h3, .ajaxify-drawer h4, .ajaxify-drawer .h4, .ajaxify-drawer h5, .ajaxify-drawer .h5, .ajaxify-drawer h6, .ajaxify-drawer .h6,
  .ajaxify-drawer input[type="text"] {
    color: #777777; }
  .ajaxify-drawer label,
  .ajaxify-drawer .cart__mini-labels {
    color: #aaaaaa; }
  .ajaxify-drawer label {
    margin-bottom: 7.5px; }
  .ajaxify-drawer textarea {
    background-color: white;
    border-color: #d9d9d9;
    color: #777777; }
  .ajaxify-drawer .cart__product a {
    color: #444444; }
    .ajaxify-drawer .cart__product a:hover {
      color: #fbe19f; }
  .ajaxify-drawer .cart__row,
  .ajaxify-drawer .ajaxifyCart--num,
  .ajaxify-drawer .ajaxifyCart--add,
  .ajaxify-drawer .ajaxifyCart--minus {
    border-color: #d9d9d9; }
  .ajaxify-drawer .js--qty-adjuster:hover,
  .ajaxify-drawer .ajaxifyCart--qty-adjuster:hover,
  .ajaxify-drawer .js--qty-adjuster:active,
  .ajaxify-drawer .ajaxifyCart--qty-adjuster:active {
    background-color: #bfbfbf; }

.ajaxifyCart--add .add,
.ajaxifyCart--add .minus,
.ajaxifyCart--minus .add,
.ajaxifyCart--minus .minus {
  color: #222222; }
.js--qty-adjuster:hover .ajaxifyCart--add,
.ajaxifyCart--add .ajaxifyCart--qty-adjuster:hover, .js--qty-adjuster:hover
.ajaxifyCart--minus,
.ajaxifyCart--minus .ajaxifyCart--qty-adjuster:hover {
  color: red; }

/*============================================================================
  #Password Page
==============================================================================*/
.template-password {
  height: 100vh;
  text-align: center;
  padding: 0; }

#recover_password .tt-innerpagetitle {
  font-size: 18px; }

#recover_password .text-center {
  margin-top: 10px;
  float: left;
  width: 100%; }

#recover_password .title {
  color: #000; }

#recover_password .text-center p {
  width: auto;
  float: none;
  display: inline-block;
  vertical-align: top; }

#recover_password .text-center > a {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: auto;
  line-height: 30px;
  font-size: 16px;
  padding: 4px 20px;
  background: #f6bb25;
  font-family: Lato, Helvetica, sans-serif;
  color: white;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#recover_password .text-center > a:hover {
  background: #f6bb25;
  color: white; }

.password-page__wrapper {
  display: table;
  height: 100%;
  width: 100%;
  background-color: white;
  padding-top: 150px;
  background-image: url("//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/password-page-background.jpg?v=12987344696580752000");
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff; }
  .password-page__wrapper a {
    color: inherit; }
    .password-page__wrapper a:hover {
      color: inherit; }
  .password-page__wrapper .social-sharing a {
    color: #ffffff; }
  .password-page__wrapper .social-sharing a:hover {
    color: #ffffff; }
  .password-page__wrapper h1, .password-page__wrapper .h1, .password-page__wrapper h2, .password-page__wrapper .h2, .password-page__wrapper h3, .password-page__wrapper .h3, .password-page__wrapper h4, .password-page__wrapper .h4, .password-page__wrapper h5, .password-page__wrapper .h5, .password-page__wrapper h6, .password-page__wrapper .h6,
  .password-page__wrapper .h1, .password-page__wrapper .h2, .password-page__wrapper .h3, .password-page__wrapper .h4, .password-page__wrapper .h5, .password-page__wrapper .h6 {
    color: #222222; }
  .password-page__wrapper .input-group-btn .icon {
    color: inherit; }

.password-header-section {
  display: table-row; }

.password-page__header {
  display: table-cell;
  height: 1px; }

.password-page__header__inner {
  padding: 15px 30px; }

.password-page__logo {
  margin-top: 75px; }
  .password-page__logo .logo {
    max-width: 100%; }

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

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

.password-page__hero {
  font-family: Poppins;
  font-size: 2.71429em;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: optimizeLegibility; }
  @media screen and (min-width: 481px) {
    .password-page__hero {
      font-size: 4.28571em; } }
  @media screen and (min-width: 1025px) {
    .password-page__hero {
      font-size: 4.57143em; } }

.password-page__message {
  font-style: italic;
  font-size: 120%;
  line-height: 1.6; }
  .password-page__message img {
    max-width: 100%; }

.password-page__message,
.password-page__login-form,
.password-page__signup-form {
  max-width: 500px;
  margin: 0 auto; }

.password-page__login-form {
  text-align: center;
  padding: 30px; }

.password-page__signup-form .input-group-field {
  background-color: transparent;
  color: #ffffff; }

@media screen and (min-width: 480px) {
  .password-page__login-form,
  .password-page__signup-form {
    padding: 0 30px; } }
.password-page__login-form .input-group,
.password-page__signup-form .input-group {
  width: 100%; }
.password-page__login-form .errors ul,
.password-page__signup-form .errors ul {
  list-style-type: none;
  margin-left: 0; }

.storefront-password-form {
  margin-bottom: 15px; }

.password-page__social-sharing {
  margin-top: 30px; }
  .password-page__social-sharing .social-sharing {
    padding-top: 0; }

.password-login,
.admin-login {
  margin-top: 15px; }
  .password-login a:hover,
  .admin-login a:hover {
    color: inherit; }

.password-login {
  font-family: Poppins;
  font-size: 0.7em;
  line-height: 9.8px; }

.lock-icon-svg {
  width: 9.8px;
  height: 9.8px;
  display: inline-block;
  vertical-align: baseline;
  /* Hiding the SVG logo in IE8 */ }
  .lock-icon-svg path {
    fill: currentColor; }
  .lt-ie9 .lock-icon-svg {
    display: none; }

.admin-login {
  font-size: 95%; }

.template-customers-login .login, .template-customers-register .register {
  text-align: center; }

.template-customers-register .register .errors {
  text-align: left; }

.login-page form#customer_login, .register-page form#create_customer {
  margin: 0;
  float: left;
  width: 100%; }

.login-page div#recover_password {
  text-align: left; }

.login-page .grid .grid-item, .login-page .grid--rev .grid-item, .login-page .grid--full .grid-item, .login-page .grid--rev .grid-item, .login-page .grid--full .grid-item {
  padding: 0;
  text-align: left; }

.login-page form .text-center > p {
  margin: 0; }

@media screen and (min-width: 992px) {
  .login-page form > input, .register-page form > input {
    min-width: 550px; } }
#customer_login .text-center .btn, #customer_login .text-center .btn--secondary, #customer_login .text-center input[type="submit"] {
  padding: 10px 25px;
  letter-spacing: 1px;
  background: #f6bb25;
  color: white; }
  @media screen and (max-width: 480px) {
    #customer_login .text-center .btn, #customer_login .text-center .btn--secondary, #customer_login .text-center input[type="submit"] {
      margin: 10px 0 0; } }

.template-customers-login .login .login-page, .register .register-page {
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #eee;
  padding: 30px 25px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 991px) {
    .template-customers-login .login .login-page, .register .register-page {
      width: 100%; } }
  @media screen and (max-width: 480px) {
    .template-customers-login .login .login-page, .register .register-page {
      padding: 20px 15px; } }

#customer_login .text-center .btn:hover, #customer_login .text-center .btn--secondary:hover, #customer_login .text-center input[type="submit"]:hover, #customer_login .text-center .btn:focus, #customer_login .text-center .btn--secondary:focus, #customer_login .text-center input[type="submit"]:focus, #customer_login .text-center .btn:active, #customer_login .text-center .btn--secondary:active, #customer_login .text-center input[type="submit"]:active {
  background: #f6bb25;
  color: white; }

.template-customers-register .footer-bottom .text-center a {
  float: none; }

.template-customers-register .text-center .btn, .template-customers-register .text-center .btn--secondary, .template-customers-register .text-center input[type="submit"] {
  padding: 10px 25px;
  background: #f6bb25;
  color: white;
  margin: 20px 0; }

.template-customers-register .text-center .btn:hover, .template-customers-register .text-center .btn--secondary:hover, .template-customers-register .text-center input[type="submit"]:hover, .template-customers-register .text-center .btn:focus, .template-customers-register .text-center .btn--secondary:focus, .template-customers-register .text-center input[type="submit"]:focus, .template-customers-register .text-center .btn:active, .template-customers-register .text-center .btn--secondary:active, .template-customers-register .text-center input[type="submit"]:active {
  background: #f6bb25;
  color: white; }

.template-customers-register .text-center .mdi.mdi-chevron-left {
  font-size: 13px; }

.password-page__footer {
  display: table-row;
  height: 1px; }

.password-page__footer_inner {
  display: table-cell;
  vertical-align: bottom;
  padding: 30px;
  line-height: 21px;
  font-size: 95%; }

.shopify-link {
  color: inherit; }
  .shopify-link:hover {
    color: inherit; }

.shopify-logo-svg {
  width: 72px;
  height: 21px;
  display: inline-block;
  line-height: 0;
  vertical-align: top;
  /* Hiding the SVG logo in IE8, we show the word 'Shopify' instead */ }
  .shopify-logo-svg path {
    fill: currentColor; }
  .shopify-logo-svg .create_account_wrap {
    padding-right: 0; }
  .lt-ie9 .shopify-logo-svg {
    display: none; }

.modern .shopify-name,
.modern .hidden-label {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

@media screen and (max-width: 480px) {
  #customer_login .grid .grid-item.one-half, #customer_login .grid--rev .grid-item.one-half, #customer_login .grid--full .grid-item.one-half {
    float: left;
    width: 100%;
    text-align: center !important; }

  #customer_login .grid .grid-item.one-half:first-child > p, #customer_login .grid--rev .grid-item.one-half:first-child > p, #customer_login .grid--full .grid-item.one-half:first-child > p {
    margin: 0 0 3px 0; } }
/*============================================================================
  #Demo Styles - for empty store state
==============================================================================*/
.demo-image {
  background: url("//cdn.shopify.com/s/files/1/0383/9765/t/1/assets/blankslate-producticon.png?4") no-repeat center center #eeeeee;
  display: block;
  text-align: center;
  padding: 100px 0;
  color: #aaa;
  font-size: 1em; }

/*============================================================================
  #FlexSlider
    - jQuery FlexSlider v2.2.2 | http://www.woothemes.com/flexslider/
    - Contributing author: Tyler Smith (@mbmufffin)
==============================================================================*/
.flexslider {
  padding: 0;
  width: 100%; }
  @media screen and (max-width: 1199px) {
    .flexslider {
      margin: 0; } }
  @media screen and (max-width: 991px) {
    .flexslider {
      margin: 0; } }

.flexslider .slider-desc {
  font-family: Dancing Script; }

.flexslider .slider-title {
  font-family: Poppins; }

.flexslider .slider-button {
  font-family: Lato; }

.flexslider .slider-desc {
  font: 400 72px/82px Dancing Script, Helvetica, sans-serif; }
  @media screen and (max-width: 1700px) {
    .flexslider .slider-desc {
      font-size: 62px;
      line-height: 72px; } }
  @media screen and (max-width: 1500px) {
    .flexslider .slider-desc {
      font-size: 52px;
      line-height: 62px;
      padding: 0 0 20px; } }
  @media screen and (max-width: 1199px) {
    .flexslider .slider-desc {
      font-size: 34px;
      line-height: 38px;
      padding: 0 0 10px; } }
  @media screen and (max-width: 767px) {
    .flexslider .slider-desc {
      font-size: 38px;
      line-height: 48px; } }
  @media screen and (max-width: 991px) {
    .flexslider .slider-desc {
      font-size: 48px;
      line-height: 58px; } }
  @media screen and (max-width: 544px) {
    .flexslider .slider-desc {
      font-size: 36px;
      line-height: 40px; } }
  @media screen and (max-width: 481px) {
    .flexslider .slider-desc {
      font-size: 26px;
      line-height: 30px; } }
  @media screen and (max-width: 360px) {
    .flexslider .slider-desc {
      font-size: 22px;
      line-height: 26px; } }

.flexslider li {
  margin: 0; }

.flexslider .slides > li {
  display: none;
  /* Hide the slides before the JS is loaded. Avoids image jumping */
  margin: 0;
  position: relative;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }

.flexslider .slides img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  width: 100%; }

.slides {
  *zoom: 1; }
  .slides:after {
    content: "";
    display: table;
    clear: both; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/*================ No JS Fallback ================*/
.no-js .slides > li:first-child {
  display: block; }

.flexslider {
  position: relative;
  zoom: 1; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

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

/*================ Direction Nav ================*/
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 100%; }

.flex-direction-nav .flex-next::before {
  content: "\f142";
  font-size: 30px;
  color: #9f9f9f;
  line-height: 30px;
  padding: 0;
  font-family: "Material Design Icons";
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 1200px) {
    .flex-direction-nav .flex-next::before {
      font-size: 28px;
      line-height: 30px; } }

.flex-direction-nav .flex-prev::before {
  content: "\f141";
  font-size: 30px;
  color: #9f9f9f;
  line-height: 30px;
  padding: 0;
  font-family: "Material Design Icons";
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 1200px) {
    .flex-direction-nav .flex-prev::before {
      font-size: 28px;
      line-height: 30px; } }

.flex-direction-nav .flex-disabled {
  -webkit-opacity: 0 !important;
  -moz-opacity: 0 !important;
  -khtml-opacity: 0 !important;
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-direction-nav a {
  position: absolute;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  /*================ Hide SVG arrows in oldIE ================*/ }
  .lte-ie9 .flex-direction-nav a {
    display: none; }
  .flex-direction-nav a.flex-prev {
    background-position: center left; }
  .flex-direction-nav a.flex-next {
    background-position: center right; }

/*================ Control Nav ================*/
.flex-direction-nav {
  margin: auto;
  padding: 0;
  list-style: none;
  float: left;
  width: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  height: 60px;
  z-index: 1; }
  @media screen and (max-width: 1200px) {
    .flex-direction-nav {
      height: 40px; } }

.flex-direction-nav li {
  display: inline-block;
  vertical-align: top; }

.flex-direction-nav a.flex-prev,
.flex-direction-nav a.flex-next {
  float: left;
  width: 60px;
  font-size: 0;
  height: 60px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 14px; }
  @media screen and (max-width: 1200px) {
    .flex-direction-nav a.flex-prev,
    .flex-direction-nav a.flex-next {
      height: 40px;
      width: 40px;
      padding: 5px; } }

.flex-direction-nav a.flex-prev {
  left: 0;
  right: auto; }
  @media screen and (max-width: 767px) {
    .flex-direction-nav a.flex-prev {
      left: 10px; } }
  @media screen and (max-width: 480px) {
    .flex-direction-nav a.flex-prev {
      left: 0; } }

.flex-direction-nav a.flex-next {
  left: auto;
  right: 0; }
  @media screen and (max-width: 767px) {
    .flex-direction-nav a.flex-next {
      right: 10px; } }
  @media screen and (max-width: 480px) {
    .flex-direction-nav a.flex-next {
      right: 0; } }

.flex-direction-nav a {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .flex-direction-nav a {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.flexslider:hover .flex-direction-nav a {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.flexslider:hover .flex-direction-nav a.flex-prev {
  left: 40px; }
  @media screen and (max-width: 480px) {
    .flexslider:hover .flex-direction-nav a.flex-prev {
      left: 0; } }

.flexslider:hover .flex-direction-nav a.flex-next {
  right: 40px; }
  @media screen and (max-width: 480px) {
    .flexslider:hover .flex-direction-nav a.flex-next {
      right: 0; } }

.flex-control-nav {
  position: absolute;
  bottom: 100px;
  right: 50px;
  left: auto;
  width: auto;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
  display: none; }
  @media screen and (max-width: 1199px) {
    .flex-control-nav {
      bottom: 70px; } }
  @media screen and (max-width: 767px) {
    .flex-control-nav {
      bottom: 50px;
      right: 15px; } }
  @media screen and (max-width: 481px) {
    .flex-control-nav {
      display: none; } }
  .flex-control-nav li {
    margin: 5px 6px 10px 6px;
    display: block;
    zoom: 1;
    *display: inline;
    vertical-align: middle; }

.flex-control-paging li a {
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  font: 500 24px/26px Lato, Helvetica, Sans-serif;
  color: #f6bb25;
  position: relative; }
  @media screen and (max-width: 480px) {
    .flex-control-paging li a {
      font-size: 16px;
      line-height: 20px; } }
  .flex-control-paging li a.flex-active {
    cursor: default;
    font-size: 30px;
    font-weight: 700;
    color: #f6bb25; }
    @media screen and (max-width: 480px) {
      .flex-control-paging li a.flex-active {
        font-size: 20px; } }

.flex-control-paging li a::before {
  content: '';
  position: absolute;
  left: auto;
  right: 20px;
  height: 2px;
  width: 30px;
  top: 15px;
  bottom: auto;
  background: #f6bb25;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out; }

.flex-control-paging li a.flex-active::before {
  width: 45px;
  background: #f6bb25; }

.flex-control-paging li a.flex-active {
  color: #f6bb25; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.flex-control-thumbs .flex-active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 480px) {
  .flex-direction-nav a {
    background: none;
    border: none !important; } }

@media screen and (max-width: 480px) {
  .flex-direction-nav a:hover {
    background: none;
    border: none; } }

.flex-direction-nav .flex-next::hover::before, .flex-direction-nav .flex-prev::hover::before {
  color: black; }

@media screen and (max-width: 480px) {
  .flex-direction-nav .flex-next::before, .flex-direction-nav .flex-prev::before {
    color: #777; } }
/*========================== testimonial =====================*/
.tt-testimonial-wrap {
  float: left;
  width: 100%; }

.parallex.tt-testimonial-wrap {
  height: 330px; }
  @media screen and (max-width: 1199px) {
    .parallex.tt-testimonial-wrap {
      height: 300px; } }
  @media screen and (max-width: 991px) {
    .parallex.tt-testimonial-wrap {
      height: 350px; } }
  @media screen and (max-width: 767px) {
    .parallex.tt-testimonial-wrap {
      height: 100%; } }

.tt-testimonial-wrap .container-bg {
  float: left;
  width: 100%; }

.grid__item.testimonials_wrap {
  float: left;
  width: 100%;
  padding: 85px 0 65px 80px;
  text-align: center; }
  @media screen and (max-width: 1199px) {
    .grid__item.testimonials_wrap {
      padding: 72px 0 65px 60px; } }
  @media screen and (max-width: 991px) {
    .grid__item.testimonials_wrap {
      padding: 34px 10px; } }
  @media screen and (max-width: 544px) {
    .grid__item.testimonials_wrap {
      padding: 22px 10px; } }
  @media screen and (max-width: 481px) {
    .grid__item.testimonials_wrap {
      padding: 20px 0; } }

.tt-testimonial-wrap .grid__item.small-grid__item {
  float: none;
  display: inline-block;
  vertical-align: top; }

.tt-testimonial-wrap .authorimg {
  float: left;
  margin: 0;
  border: 6px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1); }
  @media screen and (max-width: 991px) {
    .tt-testimonial-wrap .authorimg {
      float: none;
      display: inline-block;
      vertical-align: top; } }

.tt-testimonial-wrap .testimonial-img {
  float: left;
  padding: 30px 15px;
  text-align: center;
  position: relative; }
  @media screen and (max-width: 1199px) {
    .tt-testimonial-wrap .testimonial-img {
      padding: 0 15px; } }
  @media screen and (max-width: 991px) {
    .tt-testimonial-wrap .testimonial-img {
      width: 100%; } }
  @media screen and (max-width: 767px) {
    .tt-testimonial-wrap .testimonial-img {
      float: none;
      display: inline-block;
      vertical-align: top; } }

@media screen and (min-width: 992px) {
  .tt-testimonial-wrap .testimonial-img::after {
    bottom: 0;
    content: "\f756";
    left: auto;
    margin: auto;
    position: absolute;
    right: -15px;
    top: auto;
    font-family: "Material Design Icons";
    font-size: 26px;
    top: 0;
    height: 25px;
    line-height: 26px; }

  .tt-testimonial-wrap .testimonial-img::before {
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    bottom: 0;
    content: "";
    height: 50px;
    left: auto;
    margin: auto;
    position: absolute;
    right: -27px;
    top: 0;
    width: 50px;
    background: #fff; } }
.tt-testimonial-wrap .authorimg img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%; }

.tt-testimonial-wrap .testimonial-img .user-detail {
  float: left;
  width: auto;
  margin: 20px 0 0 20px;
  text-align: left; }
  @media screen and (max-width: 1199px) {
    .tt-testimonial-wrap .testimonial-img .user-detail {
      width: 100%;
      margin: 20px 0 0; } }
  @media screen and (max-width: 991px) {
    .tt-testimonial-wrap .testimonial-img .user-detail {
      text-align: center; } }

.tt-testimonial-wrap .testimonial-user-title {
  text-transform: capitalize; }

.tt-testimonial-wrap .testimonial-user-title h4, .tt-testimonial-wrap .testimonial-user-title .h4 {
  font: italic 700 18px/20px Lato, Helvetica, sans-serif;
  margin: 0 0 5px; }
  @media screen and (max-width: 481px) {
    .tt-testimonial-wrap .testimonial-user-title h4, .tt-testimonial-wrap .testimonial-user-title .h4 {
      margin: 5px 0; } }

.testimonial-user-desc {
  font: italic 400 14px/18px Poppins, Helvetica, sans-serif;
  text-transform: capitalize; }
  @media screen and (max-width: 480px) {
    .testimonial-user-desc {
      font-size: 14px;
      line-height: 18px; } }

.tt-testimonial-wrap .testimonial-content .testimonial-desc {
  margin: 10px 0; }
  @media screen and (max-width: 480px) {
    .tt-testimonial-wrap .testimonial-content .testimonial-desc {
      margin: 15px 0; } }

.tt-testimonial-wrap .testimonial-content .testimonial-desc > p {
  position: relative;
  font: italic 400 14px/24px Poppins, Helvetica, sans-serif;
  text-transform: capitalize; }
  @media screen and (max-width: 767px) {
    .tt-testimonial-wrap .testimonial-content .testimonial-desc > p {
      text-align: center; } }

.tt-testimonial-wrap .testimonial-detail {
  float: left;
  padding: 30px 0 30px 60px;
  text-align: left; }
  @media screen and (max-width: 1199px) {
    .tt-testimonial-wrap .testimonial-detail {
      padding: 10px 0 10px 60px; } }
  @media screen and (max-width: 991px) {
    .tt-testimonial-wrap .testimonial-detail {
      text-align: center;
      width: 100%;
      padding: 10px 0; } }
  @media screen and (max-width: 480px) {
    .tt-testimonial-wrap .testimonial-detail {
      padding: 10px 0; } }

.tt-testimonial-wrap .testimonial-detail .testimonial-content {
  float: left;
  width: 100%;
  text-align: left; }
  @media screen and (max-width: 991px) {
    .tt-testimonial-wrap .testimonial-detail .testimonial-content {
      text-align: center; } }

.testimonials_wrap .owl-dots {
  float: left;
  width: 100%;
  position: relative; }

.testimonials_wrap .owl-dot {
  display: inline-block;
  float: none;
  vertical-align: top;
  background: none;
  padding: 0;
  border: none; }

.testimonials_wrap .owl-dots .owl-dot span {
  background: #888;
  cursor: pointer;
  display: inline-block;
  float: none;
  height: 10px;
  margin: 0 5px;
  width: 10px;
  vertical-align: middle;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.testimonials_wrap .owl-dots .owl-dot:hover span {
  background: #f6bb25; }

.testimonials_wrap .owl-dots .owl-dot.active span {
  background: #f6bb25;
  height: 14px;
  width: 14px; }

/*================ Custom Flexslider Styles ================*/
.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.slide-link {
  display: block; }
  .slide-link img {
    display: block; }

* {
  outline: none; }

/*------------footer newsletter------------*/
div#shopify-section-footer-model-3 .Newsletter-wrapper {
  margin-top: 30px; }

#shopify-section-footer-model-3 .footer-column.block_newsletter .form-vertical .errors li {
  margin: 0; }

.template-index .main-content div#shopify-section-footer-model-3, .template-index div#shopify-section-footer-model-3 .Newsletter-wrapper {
  margin: 0; }

.block_newsletter .tt-title {
  line-height: 43px;
  margin: 0;
  padding: 0 0 0 50px;
  text-align: left; }

.block_newsletter form .input-group input, .block_newsletter form .input-group .input-group-btn .btn, .block_newsletter form .input-group .input-group-btn .btn--secondary, .block_newsletter form .input-group .input-group-btn input[type="submit"] {
  height: 42px;
  padding: 10px 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.block_content .input-group-btn .subscribe {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize; }
  @media screen and (max-width: 480px) {
    .block_content .input-group-btn .subscribe {
      display: none; } }

.block_newsletter form input[type="email"] {
  background: #ffffff;
  color: #666;
  padding: 10px 140px 10px 15px;
  width: 100%;
  letter-spacing: 1px;
  height: 50px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }
  @media screen and (max-width: 1200px) {
    .block_newsletter form input[type="email"] {
      padding: 10px 128px 10px 15px; } }
  @media screen and (max-width: 480px) {
    .block_newsletter form input[type="email"] {
      padding: 10px 60px 10px 15px; } }

.block_newsletter form input[type="email"]::-webkit-input-placeholder {
  color: #666666 !important; }

#shopify-section-footer-model-3 .footer-section {
  padding: 0; }

#shopify-section-footer-model-3 .block_content {
  float: none;
  width: 70%;
  display: inline-block;
  vertical-align: top; }
  @media screen and (max-width: 1199px) {
    #shopify-section-footer-model-3 .block_content {
      width: 100%; } }
  @media screen and (max-width: 991px) {
    #shopify-section-footer-model-3 .block_content {
      width: 70%; } }
  @media screen and (max-width: 481px) {
    #shopify-section-footer-model-3 .block_content {
      width: 100%; } }

.block_newsletter .news-title::before {
  content: "\f501";
  font-family: "Material Design Icons";
  height: 50px;
  left: 0;
  position: absolute;
  top: 0;
  width: 50px;
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  font-style: normal; }
  @media screen and (max-width: 480px) {
    .block_newsletter .news-title::before {
      right: 0;
      margin: 0 auto; } }

.block_newsletter .tt-content .news-title {
  font: 700 32px/40px Poppins, sans-serif; }
  @media screen and (max-width: 480px) {
    .block_newsletter .tt-content .news-title {
      font-size: 20px; } }

.footer-top .inline-list.social-icons {
  float: right; }

.footer-top .social-icons li a {
  text-align: center; }

.block_newsletter .icon-fallback-text .icon {
  display: none; }
  @media screen and (max-width: 480px) {
    .block_newsletter .icon-fallback-text .icon {
      display: block; } }

.Newsletter-wrapper .block_newsletter .tt-content .tt-desc {
  font-family: Lato; }

.Newsletter-wrapper .block_content {
  margin: 20px 0 0; }
  @media screen and (max-width: 767px) {
    .Newsletter-wrapper .block_content {
      margin: 10px 0 0; } }

@media screen and (max-width: 991px) {
  .block_newsletter .tt-content {
    width: 100%;
    float: left;
    padding: 0 0 10px; }

  #shopify-section-footer-model-2 .block_newsletter .tt-content {
    padding: 0; }

  .block_newsletter .block_content {
    width: auto;
    float: none;
    display: inline-block;
    vertical-align: top; }

  .block_newsletter {
    text-align: center; }

  #shopify-section-footer-model-3 .block_newsletter {
    width: 100%; }

  .block_newsletter .tt-content .news-title {
    width: auto;
    float: none;
    display: inline-block;
    vertical-align: top; } }
.footer-bottom {
  float: left;
  width: 100%;
  padding: 10px 0; }

.footer-model-1 .input-group-btn:last-child > .btn, .footer-model-1 .input-group-btn:last-child > .btn--secondary, .footer-model-1 .input-group-btn:last-child > input[type="submit"] {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0; }

@media screen and (max-width: 991px) {
  .footer-model-1 h5.widget-title.toggle, .footer-model-1 .widget-title.toggle.h5 {
    width: 100%;
    font-size: 18px; } }
/**/
/*============================================================================
#Magnific Popup
- http://dimsemenov.com/plugins/magnific-popup/
==============================================================================*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  -webkit-opacity: 0.65;
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  opacity: 0.65;
  filter: alpha(opacity=65); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  -webkit-opacity: 0.65;
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -ms-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -ms-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: 0.75;
    -moz-transform: 0.75;
    -ms-transform: 0.75;
    -o-transform: 0.75;
    transform: 0.75; }

  .mfp-arrow-left {
    -webkit-transform: 0.75;
    -moz-transform: 0.75;
    -ms-transform: 0.75;
    -o-transform: 0.75;
    transform: 0.75; }

  .mfp-arrow-right {
    -webkit-transform: 100%;
    -moz-transform: 100%;
    -ms-transform: 100%;
    -o-transform: 100%;
    transform: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/*======================== Magnific Popup custom styles ===================== */
.mfp-close {
  color: inherit; }

.template-product.mfp-zoom-out-cur .mfp-image-holder .mfp-content {
  width: 34%; }

/**/
.ajax-success-modal .success-message p {
  display: inline-block;
  width: 100%;
  margin: 0; }

.ajax-success-modal .success-message {
  padding: 0;
  display: inline-block;
  vertical-align: top; }
  @media screen and (max-width: 767px) {
    .ajax-success-modal .success-message {
      margin: 5px 0;
      width: 100%; } }

.success-message i {
  margin-right: 5px;
  font-size: 20px;
  line-height: 20px;
  vertical-align: middle; }

.ajax-success-modal .close-modal {
  top: 10px;
  right: 10px; }

.ajax-content-section {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: auto; }

.modal {
  display: none; }

.close-modal {
  float: right;
  bottom: 0;
  position: absolute;
  right: 0; }

.modal.fade .modal-dialog {
  -webkit-transition: transform .3s ease-out;
  -moz-transition: transform .3s ease-out;
  -ms-transition: transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -moz-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%); }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-dialog {
  position: relative;
  margin: 10px auto; }

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  -ms-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  -o-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5); }

.modal-dialog {
  position: relative;
  margin: 10px auto;
  vertical-align: middle;
  display: inline-block; }

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px; }

/* quick view */
.quickview-template,
.quick-view {
  bottom: 0;
  display: none;
  left: 0;
  outline: 0 none;
  overflow-x: auto;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
  display: none; }

.quickview-template .content,
._quick-view-content {
  display: none; }

.quick-view .product-shop {
  float: right; }

.quick-view .product-img-box {
  margin: 0;
  float: left; }

.quick-view .product-img-box .image-wrapper {
  width: 311px;
  height: 311px;
  overflow: hidden;
  position: relative; }

.quick-view .product-img-box .image {
  width: 311px;
  height: 311px;
  overflow: hidden;
  position: relative; }

.quick-view .product-img-box .image img {
  display: block;
  position: relative;
  max-width: 110%; }

.quick-view .product-img-box .thumbnails {
  padding: 20px 0 0 40px;
  position: relative; }

.quick-view .product-img-box .thumbnails .jcarousel-next-horizontal {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  float: left;
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s; }

.quick-view .product-img-box .thumbnails .jcarousel-next-horizontal:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.quick-view .product-img-box .thumbnails .jcarousel-prev-horizontal {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  float: left;
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s; }

.quick-view .product-img-box .thumbnails .jcarousel-prev-horizontal:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.quick-view .product-img-box .thumbnails ul {
  float: left;
  text-align: center;
  width: 240px;
  list-style: none;
  padding-left: 0; }

.quick-view .product-img-box .thumbnails ul li a:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.quick-view .product-img-box .thumbnails ul li .active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.quick-view .product-img-box .thumbnails ul li a img {
  max-width: 110%; }

.quick-view .product-img-box .thumbnails ul {
  width: 266px; }

.quick-view .product-shop p.custom {
  margin: 0; }

.quick-view .product-shop .prices {
  float: left;
  width: 100%; }

.quick-view .product-shop .prices:first-child {
  margin-top: 0; }

.quick-view .product-shop .addthis {
  margin-bottom: 0; }

.quick-view .product-shop .product-title > a {
  font: 600 18px/26px Lato, Helvetica, sans-serif;
  text-transform: capitalize;
  color: #222222; }

.product-infor {
  display: inline-block;
  margin-top: 15px;
  text-transform: capitalize;
  float: left;
  width: 100%; }

.quick-view .product-shop .product-inventory > label {
  font: 400 16px/18px Lato, Helvetica, sans-serif;
  margin: 0 5px 0 0;
  color: #222222; }

.quick-view .product-shop .prices .compare-price .money {
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  color: #555;
  font-family: Lato; }

@media screen and (max-width: 991px) {
  .quick-view .product-photo-thumbs.product-wrapper-owlslider {
    width: 75%;
    float: none;
    text-align: center;
    display: inline-block; } }
.more-view-wrapper .product-photo-thumbs {
  visibility: hidden; }

page-wrapper .main-content {
  margin: 0 0 30px; }

/* quick view */
.quickview-template {
  bottom: 0;
  left: 0;
  outline: 0 none;
  overflow-x: auto;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
  display: none; }

.quick-view {
  bottom: 0;
  left: 0;
  outline: 0 none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
  display: none; }

.quick-view .product-detail-section p.dt-sc-button {
  margin: 20px 0 0px 0; }

.quick-view .product-shop.summary .details {
  float: left;
  width: 100%; }

.quick-view .product-detail-section p.dt-sc-button {
  margin: 20px 0 0px 0;
  float: left; }

.quick-view .product-detail-section p.product-description {
  margin-bottom: 5px;
  float: left;
  width: 100%;
  padding: 15px 0; }

.product-wrapper-owlslider {
  margin-bottom: 20px; }

@media screen and (max-width: 767px) {
  .product-single {
    text-align: center; }

  .product-single .product-wrapper-owlslider {
    width: 80%;
    float: none;
    text-align: center;
    display: inline-block; } }
@media screen and (max-width: 480px) {
  .product-single .product-wrapper-owlslider {
    width: 100%; } }
.product-wrapper.sidebar-product {
  border: none;
  margin: 0;
  text-align: left; }

.product-list .product-desc {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px;
  float: left;
  width: 100%; }

.quick-view .product-shop.summary select {
  width: 100%;
  padding: 12px 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }

.quick-view.open-in {
  background: rgba(0, 0, 0, 0.8);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: 0%;
  -moz-transform: 0%;
  -ms-transform: 0%;
  -o-transform: 0%;
  transform: 0%;
  -webkit-transition: transform .4s,opacity .4s;
  -moz-transition: transform .4s,opacity .4s;
  -ms-transition: transform .4s,opacity .4s;
  -o-transition: transform .4s,opacity .4s;
  transition: transform .4s,opacity .4s; }

._quick-view-content {
  display: none; }

#fancybox-close,
.search-close, #popupBoxClose {
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/close.png?139) no-repeat;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  position: absolute;
  top: 0px;
  right: 0px; }

.quick-view .close-window:hover::before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.quick-view .close-window::before {
  position: absolute;
  content: "\f156";
  font-family: "Material Design Icons";
  right: 5px;
  left: auto;
  top: 5px;
  height: 24px;
  width: 24px;
  font-size: 24px;
  line-height: 24px;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }

.quick-view .product-shop .prices label,
.ajax-success-modal .ajax-right label {
  font-weight: 400;
  font: 400 16px/18px Lato, Helvetica, Sans-serif;
  color: #222222; }

.quick-view .product-photo-thumbs li a {
  float: left;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.quick-view .product-photo-thumbs li a:hover {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); }

.quick-view .owl-prev::after, .quick-view .owl-next::after {
  display: none; }

.quick-view.open-in .product-img.images .quickview-featured-image img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

@media screen and (max-width: 991px) {
  .quick-view .product-img.images {
    width: 80%;
    float: none;
    display: inline-block;
    vertical-align: top; }
  .quick-view .product-shop {
    width: 100%; }

  .quick-view .content {
    padding: 50px 20px;
    text-align: center; } }
  @media screen and (max-width: 991px) and (max-width: 480px) {
    .quick-view .product-img.images {
      width: 100%; } }

  @media screen and (max-width: 991px) and (max-width: 767px) {
    .quick-view .content {
      width: 80%; } }
  @media screen and (max-width: 991px) and (max-width: 480px) {
    .quick-view .content {
      width: 90%;
      padding: 50px 0;
      margin: 30px auto; } }

/**/
/* modal-newsletter  */
#newsletterModal .modal-header {
  border: none;
  position: absolute;
  right: 0;
  z-index: 3;
  padding: 0;
  height: 26px;
  width: 26px; }

#newsletterModal .modal-header .close {
  position: absolute;
  right: 5px;
  top: 0;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  font-size: 22px;
  height: 26px;
  width: 26px;
  line-height: 26px;
  text-align: center; }

#newsletterModal form.subscribe-form {
  width: 100%;
  display: inline-block;
  padding: 0 20px;
  margin: 0; }
  @media screen and (max-width: 480px) {
    #newsletterModal form.subscribe-form {
      padding: 0 10px; } }

.modal-bg-image {
  width: 50%;
  display: inline-block;
  float: left; }
  @media screen and (max-width: 480px) {
    .modal-bg-image {
      width: 100%; } }

.modal-content .modal-block {
  width: 50%;
  display: inline-block;
  float: right; }
  @media screen and (max-width: 480px) {
    .modal-content .modal-block {
      width: 100%; } }

#newsletterModal .modal-md {
  margin: 0 auto;
  max-width: 816px !important;
  display: inline-block;
  border: none;
  vertical-align: middle; }

#newsletterModal .modal-content.modal-md {
  padding: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

#newsletterModal .modal-content .modal-bg-image img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px; }

.modal-header i.mdi.mdi-close {
  float: left;
  width: 100%;
  text-align: center;
  line-height: 24px;
  font-size: 22px; }

.modal-header .close {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out 0ms;
  -moz-transition: all 0.5s ease-in-out 0ms;
  -ms-transition: all 0.5s ease-in-out 0ms;
  -o-transition: all 0.5s ease-in-out 0ms;
  transition: all 0.5s ease-in-out 0ms;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6; }

.modal-header .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.modal {
  text-align: center; }

.modal-newsletter {
  padding: 76px 0;
  position: relative;
  z-index: 2;
  float: left; }
  @media screen and (max-width: 767px) {
    .modal-newsletter {
      padding: 20px 10px; } }
  @media screen and (max-width: 480px) {
    .modal-newsletter {
      padding: 30px 5px; } }

.modal-newsletter .checkbox-group {
  display: inline-block;
  position: relative; }

.modal-newsletter .checkbox-group input[type=checkbox] {
  display: none; }

.modal-newsletter .checkbox-group label .check:before, .checkbox-group label .check:before {
  content: "\f12c";
  color: #000;
  font-size: 12px;
  line-height: 12px;
  font-family: 'Material Design Icons';
  font-style: normal;
  font-weight: 400; }

.modal-newsletter .checkbox-group .box {
  margin-top: 0;
  display: inline-block; }

.modal-newsletter .checkbox-group .check {
  top: 5px; }

.modal-newsletter .title {
  text-transform: capitalize;
  font: italic 700 30px/40px Lato, Sans-serif;
  color: #000;
  position: relative;
  padding: 0px 0 10px; }

.modal-newsletter .title::after {
  background: #ccc;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 50px; }

.modal-newsletter .modal-title {
  font-size: 20px;
  line-height: 1.1em;
  margin: 30px 0 18px; }
  @media screen and (max-width: 767px) {
    .modal-newsletter .modal-title {
      margin: 15px 0; } }

.modal-newsletter p {
  padding-bottom: 7px; }

.modal-newsletter .row-subscibe {
  font-size: 0;
  line-height: 0;
  padding: 10px 0 30px; }
  @media screen and (max-width: 767px) {
    .modal-newsletter .row-subscibe {
      padding: 12px 0 15px 0; } }

.modal-newsletter .row-subscibe input {
  height: 45px;
  border: 1px solid #e5e5e5;
  padding: 2.3% 2.5%;
  font-size: 14px;
  line-height: 1.2em;
  color: #666;
  background: #f5f5f5;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 1px; }
  @media screen and (max-width: 767px) {
    .modal-newsletter .row-subscibe input {
      height: 38px; } }

.modal-newsletter .row-subscibe button {
  font-size: 16px;
  height: 40px;
  background: #f6bb25;
  color: white;
  padding: 5px 20px;
  letter-spacing: 1px; }
  @media screen and (max-width: 767px) {
    .modal-newsletter .row-subscibe button {
      height: 33px; } }

.modal-newsletter .row-subscibe button:hover,
.modal-newsletter .row-subscibe button:active,
.modal-newsletter .row-subscibe button:focus {
  color: white; }

.modal-newsletter .checkbox-group label {
  font-size: 12px;
  padding-left: 5px;
  text-transform: capitalize; }

.modal-newsletter p {
  margin-bottom: 0px; }

.modal-newsletter .checkbox-group .box {
  margin-top: 0;
  display: inline-block;
  top: 2px;
  bottom: auto; }

input[type=checkbox]:checked ~ label .check, .sidebar-tag label.active .check {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.modal-newsletter .checkbox-group .check {
  top: 2px; }

.checkbox-group {
  position: relative; }

.checkbox-group.form-group-top input[type="checkbox"] {
  display: none; }

.checkbox-group input[type="checkbox"] + label, .checkbox-group input[type="radio"] + label {
  margin-left: 15px; }

.checkbox-group input[type="checkbox"] + label:hover, .checkbox-group.active input[type="checkbox"] + label {
  color: #000; }

.checkbox-group input[type="checkbox"] + label, .checkbox-group input[type="radio"] + label {
  font-size: 14px;
  color: #777777; }

.checkbox-group input[type="checkbox"] + label:hover, .checkbox-group input[type="radio"] + label:hover {
  color: #f6bb25; }

.checkbox-group label:hover .box {
  background: #f5f5f5; }

.checkbox-group label .check {
  top: -1px;
  left: 1px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0); }

.checkbox-group label span {
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s; }

.checkbox-group label .box {
  border-width: 1px;
  border-style: solid;
  border-color: #e5e5e5;
  background: #ffffff;
  height: 15px;
  width: 15px;
  z-index: 1;
  margin-top: 2px;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s; }

.checkbox-group label span {
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s; }

@media screen and (max-width: 767px) {
  #newsletterModal .modal-newsletter .row-subscibe input {
    width: 100%;
    padding: 2.3% 3%; }

  #newsletterModal .modal-newsletter .row-subscibe button {
    position: relative;
    right: auto; }

  #newsletterModal .modal-newsletter .logo {
    max-height: 75px; } }
@media screen and (max-width: 480px) {
  #newsletterModal .modal-newsletter .logo {
    max-height: 59px; } }
.modal-md {
  margin: 0 auto;
  max-width: 816px !important; }

.modal-dialog {
  margin: 30px auto;
  width: 620px; }

@media screen and (max-width: 767px) {
  #newsletterModal .modal-md {
    width: 450px; } }
@media screen and (max-width: 480px) {
  #newsletterModal .modal-md {
    width: 280px; }

  #newsletterModal > .modal-md {
    margin: 70px auto; } }
/*--------------------instagram-------------------- */
.instagram-wrapper {
  padding: 0px;
  float: left;
  width: 100%;
  position: relative; }

.instagram-wrapper h3, .instagram-wrapper .h3 {
  margin-bottom: 40px; }

#instafeed a img {
  margin-right: 5px;
  margin-bottom: 0px; }

.instagram-wrapper #instafeed a {
  width: 10%;
  float: left; }

.tt-instagram .item {
  float: left;
  width: 16.666%;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0; }
  @media screen and (max-width: 1024px) {
    .tt-instagram .item {
      width: 50%; } }
  @media screen and (max-width: 480px) {
    .tt-instagram .item {
      width: 100%; } }

.tt-instagram .info span i {
  display: inline-block;
  margin-right: 3px;
  font-size: 18px;
  line-height: 20px; }

.tt-instagram img {
  display: block; }

.tt-instagram .item .info {
  float: left;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2; }

.tt-instagram .info span.likes {
  position: absolute;
  right: 60px;
  bottom: 10px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .tt-instagram .info span.likes {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.tt-instagram .info span.comments {
  position: absolute;
  right: 20px;
  bottom: 10px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }
  @media screen and (max-width: 767px) {
    .tt-instagram .info span.comments {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.tt-instagram .info:hover span.likes, .tt-instagram .info:hover span.comments {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.tt-instagram .info span.zoom_icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  float: none;
  height: 45px;
  line-height: 45px;
  width: 45px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  border: 2px solid #fff;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }
  @media screen and (max-width: 767px) {
    .tt-instagram .info span.zoom_icon {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

.tt-instagram .info span.zoom_icon:hover {
  background: #000 none repeat scroll 0 0;
  border-color: #000; }

.tt-instagram .info:hover span.zoom_icon {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.tt-instagram .info span.zoom_icon i {
  margin: 0 2px;
  padding: 10px; }

.tt-instagram .info span a {
  display: inline-block;
  width: 100%;
  vertical-align: middle; }

.tt-instagram .item:hover .instaitem > a img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.tt-instagram .item .instaitem > a img {
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }

.tt-instagram .item .instaitem > a::after {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  margin: auto;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1; }

.tt-instagram .item:hover .instaitem > a::after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.slick-slide img {
  display: inline-block;
  max-width: 100%;
  float: left;
  width: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.slick-slide .instaitem img {
  width: 100%;
  height: auto; }

.instaitem {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden; }

.tt-instagram.clearfix {
  display: inline-block;
  width: 100%;
  float: left; }

.tt-instagram button.slick-prev.slick-arrow, .tt-instagram button.slick-next.slick-arrow {
  display: none !important; }

@media screen and (max-width: 767px) {
  .tt-instagram .info {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; } }
/****************************************/
/*************** layout css **************/
.collection_sidebar {
  float: left;
  width: 100%;
  text-align: left; }

.qty-box-set .qnt_wrap .button:hover {
  background: #eeeeee none repeat scroll 0 0; }

/****************************************/
@-webkit-keyframes fixedmenu {
  0% {
    top: -100%; }

  100% {
    top: 0; } }

@-moz-keyframes fixedmenu {
  0% {
    top: -100%; }

  100% {
    top: 0; } }

@keyframes fixedmenu {
  0% {
    top: -100%; }

  100% {
    top: 0; } }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0; }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }

  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0; }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }

  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@-webkit-keyframes fade_out {
  0% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible; }

  100% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden; } }

@-moz-keyframes fade_out {
  0% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible; }

  100% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden; } }

@keyframes fade_out {
  0% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible; }

  100% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden; } }

@-webkit-keyframes fade_in {
  0% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden; }

  100% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible; } }

@-moz-keyframes fade_in {
  0% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden; }

  100% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible; } }

@keyframes fade_in {
  0% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden; }

  100% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible; } }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

@-webkit-keyframes zoomIn {
  from {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  50% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; } }

@keyframes zoomIn {
  from {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  50% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

/*------------- services ------------*/
svg {
  height: 45px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -44px;
  width: 240px;
  z-index: 2; }
  @media screen and (max-width: 480px) {
    svg {
      top: -22px; } }

svg:not(:root) {
  overflow: hidden; }

.ttcmsservices {
  float: left;
  width: 100%;
  position: relative; }

.ttcmsservices .service {
  float: left;
  width: 100%;
  position: relative;
  cursor: pointer; }

@media screen and (min-width: 992px) {
  .shopify-section.service .ttcmsservices .services-content .service-block.owl-carousel.owl-drag .owl-item:first-child .service,
  .shopify-section.service .ttcmsservices .services-content .service-block.owl-carousel.owl-drag .owl-item:last-child .service {
    margin: 80% 0 0; } }
.services {
  float: left;
  width: 100%;
  position: relative;
  padding: 50px 0 0;
  margin: 0 0 160px;
  text-align: center; }
  @media screen and (max-width: 480px) {
    .services {
      padding: 30px 0 150px;
      margin: 0 0 80px; } }
  @media screen and (max-width: 320px) {
    .services {
      padding: 30px 0 80px; } }

.parallex.tt-service-wrap {
  height: 650px; }
  @media screen and (max-width: 1199px) {
    .parallex.tt-service-wrap {
      height: 550px; } }
  @media screen and (max-width: 480px) {
    .parallex.tt-service-wrap {
      height: 100%; } }

.services .services-content {
  float: left;
  width: 100%;
  margin: 10px 0 0;
  padding: 0 15px; }

.services .services-content .service-content {
  float: left;
  width: 100%;
  margin: 25px 0 0;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .services .services-content .service-content {
      margin: 20px 0 0; } }

.services .services-content .service-content .services-title {
  font: italic 700 22px/26px Lato, sans-serif;
  margin: 0 0 10px;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media screen and (max-width: 1199px) {
    .services .services-content .service-content .services-title {
      font-size: 18px;
      line-height: 22px; } }
  @media screen and (max-width: 991px) {
    .services .services-content .service-content .services-title {
      font-size: 20px;
      line-height: 22px; } }
  @media screen and (max-width: 480px) {
    .services .services-content .service-content .services-title {
      margin: 0 0 15px;
      font-size: 20px;
      line-height: 22px; } }

.services::after {
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/service-bg-img.png?v=13559195791723325943) no-repeat center bottom/contain;
  content: "";
  position: absolute;
  float: left;
  width: 100%;
  top: auto;
  bottom: -26%;
  left: 0;
  right: 0;
  margin: auto;
  height: 400px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media screen and (max-width: 1199px) {
    .services::after {
      bottom: -35%; } }
  @media screen and (max-width: 480px) {
    .services::after {
      height: 300px;
      background-size: 70%;
      bottom: -18%; } }

.services:hover::after {
  bottom: -23%; }
  @media screen and (max-width: 1200px) {
    .services:hover::after {
      bottom: -23%; } }
  @media screen and (max-width: 1199px) {
    .services:hover::after {
      bottom: -33%; } }
  @media screen and (max-width: 480px) {
    .services:hover::after {
      bottom: -16%; } }

.services .services-content .service-content .service-desc {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font: 400 16px/24px Lato, helvetica, sans-serif;
  padding: 0 30px; }
  @media screen and (max-width: 1199px) {
    .services .services-content .service-content .service-desc {
      padding: 0 15px; } }

.services .services-content .service-img {
  float: left;
  width: 100%;
  text-align: center; }

.services .services-content .service .service-img img {
  z-index: 1;
  position: relative;
  margin: 40px 0;
  float: none;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.services .services-content .service:hover .service-img img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.services .services-content .service .service-bg-img img {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 150px;
  width: 150px;
  background-size: contain; }

@media screen and (max-width: 767px) {
  .services .services-content .service {
    margin-bottom: 30px; } }
@media screen and (max-width: 480px) {
  .services .services-content .service {
    width: 100%; } }
/*--------- category-collection block ------------*/
.sidebar .widget ul li ul.children li {
  margin: 0; }

.sidebar .widget ul li.product-wrapper {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

/*----------------------------ttcollection-cms---------------------*/
.template-index .main-content .shopify-section.category-feature {
  margin: -90px 0 45px; }
  @media screen and (max-width: 1400px) {
    .template-index .main-content .shopify-section.category-feature {
      margin: -50px 0 45px; } }
  @media screen and (max-width: 767px) {
    .template-index .main-content .shopify-section.category-feature {
      margin: -30px 0 25px; } }
  @media screen and (max-width: 480px) {
    .template-index .main-content .shopify-section.category-feature {
      margin: -20px 0 15px; } }

.category-feature .collection_cat_item {
  padding: 0;
  float: left;
  width: 100%;
  text-align: center; }

.collection_cat_item .cat_content {
  float: left;
  width: 100%;
  padding: 0; }

.tt-collection-slider-wrap .collection_cms_slider .collection_cat_item a {
  float: left;
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden; }

.collection_cat_item .cat_content .collection_img img {
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  width: 100%; }

.collection_cat_item:hover .cat_content .collection_img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.collection_cat_item {
  text-align: center;
  cursor: pointer; }

.tt-collection-slider-wrap {
  float: left;
  width: 100%;
  position: relative; }

.collection_cms_slider_wrap .customNavigation {
  margin-top: 20px;
  display: none !important; }

.collection_slider_wrap {
  float: left;
  width: 100%; }

.collection_img {
  float: none;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  position: relative; }

.cat_content .collection_img::before {
  border: 8px solid rgba(0, 0, 0, 0.2);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  z-index: 1; }

.cat_content:hover .collection_img::before {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.collection_cat_item:hover .cat_content .collection_img {
  overflow: hidden; }

.category-feature .collection_title {
  text-align: center;
  font: 700 30px/34px Lato;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 20px 0 10px;
  float: none;
  display: inline-block;
  vertical-align: top;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 0 10px; }
  @media screen and (max-width: 1199px) {
    .category-feature .collection_title {
      font-size: 26px;
      line-height: 30px; } }

.collection_slider_wrap .desc::after {
  content: '';
  position: absolute;
  top: -10px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  background: #fff;
  height: 1px;
  width: 30px; }

.tt-collection-content .collection-detail {
  text-align: center;
  float: left;
  width: 100%;
  padding: 0 15px;
  display: none; }
  @media screen and (max-width: 991px) {
    .tt-collection-content .collection-detail {
      padding: 0; } }

.tt-collection-content .collection-detail span {
  font-size: 14px;
  line-height: 16px; }

.collection_slider_wrap .desc {
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  text-transform: capitalize;
  float: left;
  width: 100%;
  font-family: Lato;
  position: relative; }

.tt-collection-content {
  float: left;
  width: 100%;
  position: absolute;
  top: 30px;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1; }
  @media screen and (max-width: 480px) {
    .tt-collection-content {
      top: 15px; } }

.tt-collection-slider-wrap-inner {
  position: relative; }

/*---------------- mega-menu ---------------*/
@media screen and (min-width: 992px) {
  #tt-megamenu {
    float: left;
    width: 100%; }

  #tt-megamenu {
    float: left;
    width: auto; }

  .tt-mega-menu #tt-megamenu .tt-mega_menu {
    display: block !important; }

  #tt-megamenu li.tt_menu_item:hover .tt_sub_menu_wrap {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; }

  #tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: center top 0;
    visibility: hidden;
    display: block !important; } }
#tt-megamenu ul.tt_menus_ul {
  float: left;
  width: 100%; }

#tt-megamenu h5.toggle_menu, #tt-megamenu .toggle_menu.h5 {
  padding: 15px 15px 15px 65px;
  margin: 0 0 35px 10px;
  background: #f6bb25;
  color: white;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  font-family: Lato; }
  @media screen and (max-width: 991px) {
    #tt-megamenu h5.toggle_menu, #tt-megamenu .toggle_menu.h5 {
      padding: 12px 0;
      margin: 0;
      border-bottom: none;
      line-height: 22px;
      background: none; } }

.tt-mega-menu #tt-megamenu .tt-mega_menu {
  float: left;
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0; }
  @media screen and (max-width: 991px) {
    .tt-mega-menu #tt-megamenu .tt-mega_menu {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      z-index: 9;
      margin: 0;
      padding: 10px 0;
      text-align: center;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -khtml-border-radius: 10px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #e5e5e5; } }

#tt-megamenu .toggle_menu i.mdi-menu {
  float: right;
  width: auto;
  background: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  color: #f6bb25;
  font-size: 22px;
  height: 30px;
  left: 20px;
  line-height: 30px;
  position: absolute;
  right: auto;
  top: 12px;
  width: 30px;
  text-align: center;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s; }
  @media screen and (max-width: 991px) {
    #tt-megamenu .toggle_menu i.mdi-menu {
      background: none;
      left: auto;
      right: 20px;
      top: 8px; } }

@media (min-width: 992px) and (max-width: 1300px) {
  #tt-megamenu h5.toggle_menu, #tt-megamenu .toggle_menu.h5 {
    padding: 15px 5px 15px 50px; }

  #tt-megamenu .toggle_menu i.mdi-menu {
    left: 15px; } }
#tt-megamenu:hover .toggle_menu i.mdi-menu {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

#tt-megamenu .tt-mega_menu li.tt_menu_item {
  float: left;
  width: 100%;
  margin: 0;
  position: relative; }
  @media screen and (max-width: 991px) {
    #tt-megamenu .tt-mega_menu li.tt_menu_item {
      display: block !important;
      text-align: left; } }

#tt-megamenu .tt-mega_menu .tt_menus_ul > li > a, #tt-megamenu .tt-mega_menu .tt_menus_ul > li span.categories {
  float: left;
  width: 100%;
  padding: 8px 12px;
  font: 700 18px/26px Lato, Helvetica, sans-serif;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media screen and (max-width: 991px) {
    #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a, #tt-megamenu .tt-mega_menu .tt_menus_ul > li span.categories {
      padding: 5px 20px;
      text-align: left;
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      font-family: Poppins; } }

@media screen and (min-width: 992px) {
  #tt-megamenu .tt-mega_menu .tt_menus_ul > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(0.5, 1);
    -moz-transform: scale(0.5, 1);
    -ms-transform: scale(0.5, 1);
    -o-transform: scale(0.5, 1);
    transform: scale(0.5, 1); }

  #tt-megamenu .tt-mega_menu .tt_menus_ul > li:hover > a::before {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1); }

  #tt-megamenu .tt-mega_menu .tt_menus_ul > li:hover > a, #tt-megamenu .tt-mega_menu .tt_menus_ul > li:hover span.categories {
    color: #fff; } }
#tt-megamenu .tt-mega_menu li.tt_menu_item .level-top.left.mega-menu-link {
  width: 100%; }

#tt-megamenu .tt-mega_menu .tt_menus_ul > li i.mdi {
  float: right;
  width: auto; }
  @media screen and (max-width: 991px) {
    #tt-megamenu .tt-mega_menu .tt_menus_ul > li i.mdi {
      color: #777777; } }

#tt-megamenu .tt-mega_menu .tt_menus_ul > li:last-child > a::before {
  border: none; }

#tt-megamenu .tt-mega_menu .tt_menus_ul li.tt_mm_hassub > a::after {
  content: "\f140";
  height: 20px;
  width: 20px;
  font-size: 16px;
  line-height: 20px;
  font-family: "Material Design Icons";
  text-align: center; }
  @media screen and (max-width: 991px) {
    #tt-megamenu .tt-mega_menu .tt_menus_ul li.tt_mm_hassub > a::after {
      display: none; } }

#tt-megamenu .tt-mega_menu .tt_menus_ul li.tt_mm_hassub:hover > a::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg); }

#tt-megamenu .tt-mega_menu .tt_menus_ul .more_menu li.tt_mm_hassub > a::after {
  right: 15px;
  position: absolute;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

#tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
  float: left;
  width: 100%;
  position: absolute;
  right: auto;
  left: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  z-index: 3;
  padding: 20px;
  top: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }
  @media screen and (max-width: 991px) {
    #tt-megamenu li.tt_menu_item .tt_sub_menu_wrap {
      position: static;
      width: 100% !important;
      padding: 0 25px;
      border: none;
      display: none; } }

#tt-megamenu li.tt_menu_item .tt_sub_menu_wrap.disable, #tt-megamenu li.tt_menu_item:hover .tt_sub_menu_wrap.disable {
  display: none !important; }

#tt-megamenu .tt_menus_ul .tt_sub_menu_wrap .tt_sub_menu {
  float: left;
  padding: 0 10px;
  text-align: left; }
  @media screen and (max-width: 480px) {
    #tt-megamenu .tt_menus_ul .tt_sub_menu_wrap .tt_sub_menu {
      width: 100% !important; } }

#tt-megamenu .tt_menus_ul .tt_sub_menu_wrap .tt_sub_menu img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px; }

#tt-megamenu .tt_sub_menu_wrap h4.sub_mn_title, #tt-megamenu .tt_sub_menu_wrap .sub_mn_title.h4 {
  float: left;
  width: 100%;
  font: 700 14px/26px Lato, Helevtica, sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  margin: 0 0 10px; }

#tt-megamenu .more_menu .tt_sub_menu_wrap .tt_sub_menu .sub_mn_title {
  font-weight: 400;
  text-transform: capitalize;
  border: none;
  margin: 0;
  padding: 0; }

#tt-megamenu .tt_sub_menu_wrap h4.sub_mn_title > a, #tt-megamenu .tt_sub_menu_wrap .sub_mn_title.h4 > a {
  color: #222222; }

#tt-megamenu .tt_sub_menu_wrap .tt_sub_menu_linklist > li {
  float: left;
  width: 100%;
  margin: 0; }

#tt-megamenu li.tt_menu_item span.tt_mn_sub_heading {
  float: left;
  width: auto;
  padding: 2px 8px;
  font-size: 12px;
  line-height: 14px;
  position: absolute;
  top: -8px;
  margin: 0 8px;
  font-weight: 500;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }
  @media screen and (max-width: 991px) {
    #tt-megamenu li.tt_menu_item span.tt_mn_sub_heading {
      top: 2px; } }

#tt-megamenu .tt_sub_menu_wrap .tt_sub_menu > a {
  float: left;
  width: 100%;
  -webkit-box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 10px; }
  @media screen and (max-width: 480px) {
    #tt-megamenu .tt_sub_menu_wrap .tt_sub_menu > a {
      width: auto; } }

#tt-megamenu .tt_sub_menu_wrap .tt_sub_menu > a:hover {
  -webkit-box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.1); }

#tt-megamenu .list_products_menu .product-wrapper .thumbs .product-price--sold-out.grid-view-item--sold-out a.grid-view-item__link {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5; }

#tt-megamenu .list_products_menu .product-wrapper .thumbs .grid-view-item {
  padding: 0;
  width: 100%; }

#tt-megamenu .list_products_menu .product-wrapper .thumbs .product_info {
  float: left;
  width: 100%;
  padding: 10px; }

#tt-megamenu .list_products_menu .product-wrapper .thumbs .product_info .grid-view-item__meta {
  float: left;
  width: 100%; }

#tt-megamenu .list_products_menu .product-wrapper .product-thumb .fade_img img.image_thumb_swap {
  margin: 0 auto; }

#tt-megamenu .list_products_menu .product-wrapper .thumbs .grid-view-item__title > a {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: capitalize;
  color: #777777;
  float: left;
  width: 100%;
  padding: 0 0 5px; }

#tt-megamenu .list_products_menu .product-wrapper:hover .thumbs .grid-view-item__title > a {
  color: #f6bb25; }

.list_products_menu .product-wrapper .thumbs .product_info .h4.grid-view-item__title {
  margin: 0;
  float: left;
  width: 100%; }

#tt-megamenu .list_products_menu .product-wrapper {
  padding: 0 0 10px 0;
  width: auto;
  animation: none;
  margin: 0; }

#tt-megamenu .list_products_menu .product-wrapper .product-price__price {
  font-size: 16px;
  line-height: 18px; }

#tt-megamenu .list_products_menu .product-wrapper .discount-percentage {
  font-size: 14px;
  line-height: 16px; }

#tt-megamenu .tt-mega_menu .tt_sub_menu_wrap .list_products_menu {
  float: left;
  width: 100%;
  margin: 10px 0 0; }

#tt-megamenu .list_products_menu .list_product_menu_content.owl-loaded.owl-drag {
  display: block;
  position: relative; }

#tt-megamenu .list_products_menu .list_product_menu_content.owl-loaded.owl-drag .owl-stage-outer {
  position: relative;
  overflow: hidden; }

#tt-megamenu .list_products_menu .list_product_menu_content.owl-loaded.owl-drag .owl-stage-outer .owl-item {
  float: left;
  position: relative;
  padding: 0 15px; }

#tt-megamenu .list_products_menu .list_product_menu_content.owl-loaded.owl-drag .owl-stage-outer .owl-stage {
  position: relative; }

#tt-megamenu .list_products_menu .list_product_menu_content .owl-nav {
  display: block; }

#tt-megamenu .list_products_menu .list_product_menu_content .owl-nav > div {
  float: left;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0; }
  @media screen and (max-width: 767px) {
    #tt-megamenu .list_products_menu .list_product_menu_content .owl-nav > div {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; } }

#tt-megamenu .list_products_menu:hover .list_product_menu_content .owl-nav > div {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  border: none; }

#tt-megamenu .list_products_menu .list_product_menu_content .owl-nav .owl-prev::before {
  content: "\f141";
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 30px;
  width: 30px;
  font-family: "Material Design Icons";
  font-size: 28px;
  line-height: 30px;
  color: #777777; }

#tt-megamenu .list_products_menu .list_product_menu_content .owl-nav .owl-next::before {
  content: "\f142";
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 30px;
  width: 30px;
  font-family: "Material Design Icons";
  font-size: 28px;
  line-height: 30px;
  color: #777777; }

#tt-megamenu .list_products_menu .list_product_menu_content .owl-nav:hover .owl-prev::before, #tt-megamenu .list_products_menu .list_product_menu_content .owl-nav:hover .owl-next::before {
  color: #f6bb25; }

#tt-megamenu .list_products_menu .list_product_menu_content .owl-nav .owl-prev {
  left: -15px; }

#tt-megamenu .list_products_menu .list_product_menu_content .owl-nav .owl-next {
  right: -15px; }

.template-index .sidebar div#shopify-section-TT-mega_menu {
  margin: 0; }

.menu-bar.fixed #shopify-section-TT-mega_menu {
  float: left;
  width: 20%;
  padding: 8px 0;
  position: relative; }

.menu-bar.fixed #shopify-section-TT-mega_menu .toggle_menu,
.sticky_header.fixed #tt-megamenu h5.toggle_menu,
.sticky_header.fixed #tt-megamenu .toggle_menu.h5 {
  margin: 0 0 10px; }

.site-header .sticky_header.fixed #cart {
  margin: 4px 0;
  padding: 0 0 0 20px; }

.menu-bar.fixed .left-sidebar-menu .left-toggle.active .tt-mega_menu {
  display: block !important; }

.fixed #shopify-section-TT-mega_menu #tt-megamenu {
  margin: 0; }

#tt-megamenu .tt_menu_item ul.tt_sub_menu_linklist {
  float: left;
  width: 100%;
  margin: 0; }

#tt-megamenu .tt_sub_menu_wrap .tt_sub_menu_linklist > li > a {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 3px 0; }

@media screen and (max-width: 991px) {
  #tt-megamenu .tt-mega_menu li.tt_menu_item.left_more_menu {
    display: none !important; }

  .ttresponsive_menu .tt-mega-menu {
    margin: 0 !important;
    padding: 0 70px 0 0;
    width: 100%; }

  .ttresponsive_menu-wrap .header-right {
    position: absolute;
    left: auto;
    right: 0; }

  .tt-mega-menu #tt-megamenu .tt-mega_menu ul.tt_menus_ul {
    float: left;
    width: 100%;
    margin: 0; }

  .header_2 .tt-mega-menu #tt-megamenu .tt-mega_menu ul.tt_menus_ul,
  .header_3 .tt-mega-menu #tt-megamenu .tt-mega_menu ul.tt_menus_ul {
    border-bottom: 1px solid #e5e5e5; } }
/*---------------------about-us-------------------*/
#ttcmsabout {
  float: left;
  width: 100%; }
  @media screen and (max-width: 767px) {
    #ttcmsabout {
      text-align: center; } }

#ttcmsabout .ttcmsabout.ttaboutimg {
  float: left;
  position: relative; }
  @media screen and (max-width: 767px) {
    #ttcmsabout .ttcmsabout.ttaboutimg {
      width: 100%; } }

#ttcmsabout .ttcmsabout.ttaboutbanner {
  float: left;
  position: relative;
  text-align: center; }

#ttcmsabout .ttcmsabout.ttaboutbanner .ttcmsabout-content {
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 110px 0; }
  @media screen and (max-width: 1199px) {
    #ttcmsabout .ttcmsabout.ttaboutbanner .ttcmsabout-content {
      padding: 55px 0; } }
  @media screen and (max-width: 991px) {
    #ttcmsabout .ttcmsabout.ttaboutbanner .ttcmsabout-content {
      padding: 15px 0; } }

#ttcmsabout .ttcmsabout .ttimg .ttabout-img {
  float: left;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
  position: relative; }
  @media screen and (max-width: 767px) {
    #ttcmsabout .ttcmsabout .ttimg .ttabout-img {
      float: none;
      display: inline-block;
      vertical-align: top; } }

#ttcmsabout .ttcmsabout .ttimg .ttabout-img a img {
  -webkit-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -ms-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9); }

#ttcmsabout .ttcmsabout .ttimg:hover .ttabout-img a img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-title {
  font: 700 50px/54px Lato, Helvetica, sans-serif;
  margin: 20px 0;
  position: relative;
  padding: 0 0 15px;
  text-transform: capitalize; }
  @media screen and (max-width: 1199px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-title {
      font-size: 40px;
      line-height: 48px; } }
  @media screen and (max-width: 991px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-title {
      font-size: 30px;
      line-height: 38px;
      margin: 10px 0; } }
  @media screen and (max-width: 767px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-title {
      font-size: 40px;
      line-height: 48px; } }
  @media screen and (max-width: 320px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-title {
      font-size: 36px;
      line-height: 46px; } }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-title::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: -5px;
  right: 0;
  left: 0;
  margin: auto;
  height: 2px;
  width: 50px; }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-subtitle {
  font: italic 600 40px/46px Dancing Script, Helvetica, sans-serif;
  margin: 20px 0;
  text-transform: capitalize; }
  @media screen and (max-width: 1199px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-subtitle {
      font-size: 36px;
      line-height: 42px; } }
  @media screen and (max-width: 991px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-subtitle {
      font-size: 28px;
      line-height: 32px;
      margin: 10px 0; } }
  @media screen and (max-width: 767px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-subtitle {
      font-size: 36px;
      line-height: 42px; } }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-desc {
  font: 400 16px/30px Poppins, Helvetica, sans-serif;
  margin: 20px 0; }
  @media screen and (max-width: 1199px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-desc {
      font-size: 14px;
      line-height: 24px; } }
  @media screen and (max-width: 767px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-desc {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: 70%; } }
  @media screen and (max-width: 481px) {
    #ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-desc {
      width: 100%; } }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-btn {
  float: left;
  width: 100%;
  text-align: center;
  position: relative; }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-btn a {
  font: 400 14px/16px Poppins, Helvetica, sans-serif;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 13px 28px;
  width: auto;
  margin: 10px 0;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  z-index: 1; }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-btn a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: scale(0.5, 1);
  -moz-transform: scale(0.5, 1);
  -ms-transform: scale(0.5, 1);
  -o-transform: scale(0.5, 1);
  transform: scale(0.5, 1); }

#ttcmsabout .ttcmsabout .ttcmsabout-content .ttcmsabout-btn a:hover::after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

@media screen and (max-width: 767px) {
  #ttcmsabout .ttcmsabout.ttaboutdesc {
    float: left;
    width: 100%; }

  #ttcmsabout .ttcmsabout.ttaboutbanner {
    float: none;
    width: auto;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0; } }
@media screen and (max-width: 480px) {
  #ttcmsabout .ttcmsabout.ttaboutdesc .image1.ttimg {
    float: none;
    width: auto;
    display: inline-block;
    vertical-align: top;
    padding: 0; } }
/*----------------------------- parallax-------------------------- */
.ttcmsparallax {
  float: left;
  width: 100%; }

.ttcmsparallax .parallex {
  background-position: 50% 0;
  background-repeat: repeat;
  float: left;
  height: 650px;
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden; }
  @media screen and (max-width: 1200px) {
    .ttcmsparallax .parallex {
      height: 600px; } }
  @media screen and (max-width: 991px) {
    .ttcmsparallax .parallex {
      height: 500px; } }
  @media screen and (max-width: 767px) {
    .ttcmsparallax .parallex {
      height: 350px; } }

.ttcmsparallax .parallex .content-wrap .parallex-content {
  float: right;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s;
  padding: 142px 0; }
  @media screen and (max-width: 1200px) {
    .ttcmsparallax .parallex .content-wrap .parallex-content {
      padding: 132px 0; } }
  @media screen and (max-width: 991px) {
    .ttcmsparallax .parallex .content-wrap .parallex-content {
      padding: 114px 0; } }
  @media screen and (max-width: 767px) {
    .ttcmsparallax .parallex .content-wrap .parallex-content {
      padding: 74px 0;
      width: 100%; } }
  @media screen and (max-width: 481px) {
    .ttcmsparallax .parallex .content-wrap .parallex-content {
      padding: 49px 0; } }
  @media screen and (max-width: 320px) {
    .ttcmsparallax .parallex .content-wrap .parallex-content {
      padding: 57px 0; } }

.ttcmsparallax .parallex .content-wrap {
  width: 100%;
  text-align: center;
  float: right; }
  @media screen and (max-width: 767px) {
    .ttcmsparallax .parallex .content-wrap {
      width: 100%; } }

.ttcmsparallax .parallex .title {
  font: 700 82px/84px Lato, sans-serif;
  padding: 20px 0 35px;
  text-transform: capitalize; }
  @media screen and (max-width: 1200px) {
    .ttcmsparallax .parallex .title {
      font-size: 76px;
      line-height: 80px; } }
  @media screen and (max-width: 991px) {
    .ttcmsparallax .parallex .title {
      padding: 20px 0;
      font-size: 55px;
      line-height: 58px; } }
  @media screen and (max-width: 320px) {
    .ttcmsparallax .parallex .title {
      font-size: 45px;
      line-height: 50px; } }

.ttcmsparallax .parallex .subtitle {
  font: 600 60px/64px Poppins, sans-serif;
  padding: 25px 0 0;
  text-transform: capitalize; }
  @media screen and (max-width: 991px) {
    .ttcmsparallax .parallex .subtitle {
      font-size: 50px;
      line-height: 52px; } }
  @media screen and (max-width: 767px) {
    .ttcmsparallax .parallex .subtitle {
      font-size: 42px;
      line-height: 46px;
      padding: 20px 0 0; } }
  @media screen and (max-width: 481px) {
    .ttcmsparallax .parallex .subtitle {
      padding: 10px 0 0; } }

.ttcmsparallax .parallex .button a {
  padding: 12px 25px;
  text-transform: capitalize;
  font: 400 14px/16px Poppins, sans-serif;
  display: inline-block;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }

.ttcmsparallax .parallex .button {
  display: inline-block;
  width: 100%;
  text-align: center;
  float: left;
  position: relative; }

/*--------------------------- tt cms offer---------------------------*/
.ttcmsoffer {
  float: left;
  width: 100%;
  position: relative; }

.ttcmsoffer .ttcmsoffermain.container {
  padding: 0 150px; }
  @media (max-width: 1379px) {
    .ttcmsoffer .ttcmsoffermain.container {
      padding: 0 50px; } }
  @media screen and (max-width: 991px) {
    .ttcmsoffer .ttcmsoffermain.container {
      padding: 0; } }

.ttcmsoffer .ttcmsofferinner {
  float: left;
  position: relative;
  width: 100%;
  background: #f5f3f4 url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/pattern.jpg?139) repeat scroll 0 0; }

.ttcmsoffer .ttcmsofferinner .ttbanner-imgs {
  float: left;
  width: 100%;
  overflow: hidden; }

.ttcmsoffer .ttcmsofferinner .ttbanner-imgs a {
  display: block;
  overflow: hidden;
  position: relative; }

.ttcmsoffer .ttcmsofferinner .ttbanner-imgs a::after {
  background: rgba(0, 0, 0, 0.03);
  content: "";
  height: 0;
  padding: 0;
  position: absolute;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -ms-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  width: 0;
  bottom: 0;
  right: 0; }

.ttcmsoffer .ttcmsofferinner .ttbanner-imgs a::before {
  background: rgba(0, 0, 0, 0.03) none repeat scroll 0 0;
  content: " ";
  height: 0;
  padding: 0;
  position: absolute;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -ms-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  width: 0;
  left: 0;
  top: 0; }

.ttcmsoffer .ttcmsofferinner .ttbanner-imgs a:hover::after,
.ttcmsoffer .ttcmsofferinner .ttbanner-imgs a:hover::before {
  height: 100%;
  width: 100%; }

.ttcmsoffer .banner_right .ttoffercontent {
  float: left;
  margin: 270px 0;
  padding: 0 40px 0 210px; }
  @media screen and (max-width: 1600px) {
    .ttcmsoffer .banner_right .ttoffercontent {
      margin: 180px 0 0;
      padding: 0 40px 0 140px; } }
  @media screen and (max-width: 1200px) {
    .ttcmsoffer .banner_right .ttoffercontent {
      margin: 80px 0 0;
      padding: 0 40px 0 50px; } }
  @media screen and (max-width: 991px) {
    .ttcmsoffer .banner_right .ttoffercontent {
      padding: 0 0 0 40px; } }
  @media screen and (max-width: 767px) {
    .ttcmsoffer .banner_right .ttoffercontent {
      margin: 35px 0;
      padding: 0 15px;
      float: left;
      width: 100%;
      text-align: center; } }

.ttcmsoffer .banner_right .ttofferbanner {
  float: right;
  padding: 0 0 0 15px; }
  @media screen and (max-width: 767px) {
    .ttcmsoffer .banner_right .ttofferbanner {
      padding: 0 15px;
      float: left;
      width: 100%; } }

.ttcmsoffer .ttcmsoffer-subtitle {
  font: 500 14px/16px Dancing Script, sans-serif;
  margin: 0 0 25px;
  float: left;
  width: 100%;
  text-transform: uppercase; }
  @media screen and (max-width: 767px) {
    .ttcmsoffer .ttcmsoffer-subtitle {
      margin: 0 0 15px; } }

.ttcmsoffer .ttcmsoffer-title {
  float: left;
  font: 700 68px/70px Dancing Script, sans-serif;
  letter-spacing: 1px;
  margin: 0 0 25px;
  width: 100%; }
  @media (max-width: 1400px) {
    .ttcmsoffer .ttcmsoffer-title {
      font-size: 36px;
      line-height: 40px; } }
  @media screen and (max-width: 1199px) {
    .ttcmsoffer .ttcmsoffer-title {
      font-size: 28px;
      line-height: 30px; } }
  @media screen and (max-width: 991px) {
    .ttcmsoffer .ttcmsoffer-title {
      font-size: 24px;
      line-height: 28px; } }

.ttcmsoffer .ttcmsoffer-desc {
  float: left;
  font: italic 400 18px/24px Lato, sans-serif;
  letter-spacing: 1px;
  margin: 0 0 50px;
  padding: 0 0 0 15px;
  width: 100%;
  position: relative; }
  @media screen and (max-width: 1200px) {
    .ttcmsoffer .ttcmsoffer-desc {
      font-size: 16px;
      line-height: 20px; } }
  @media screen and (max-width: 991px) {
    .ttcmsoffer .ttcmsoffer-desc {
      font-size: 14px;
      line-height: 18px;
      margin: 0 0 30px; } }
  @media screen and (max-width: 767px) {
    .ttcmsoffer .ttcmsoffer-desc {
      padding: 0; } }

.ttcmsoffer .ttcmsoffer-desc::after {
  background: #666;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: auto;
  top: 0;
  width: 3px; }
  @media screen and (max-width: 767px) {
    .ttcmsoffer .ttcmsoffer-desc::after {
      display: none; } }

.ttcmsoffer .ttcmsoffer-btn {
  float: left;
  width: 50%;
  position: relative;
  padding: 90px 0 0;
  text-align: center; }
  @media screen and (max-width: 991px) {
    .ttcmsoffer .ttcmsoffer-btn {
      padding: 40px 0 0; } }
  @media screen and (max-width: 767px) {
    .ttcmsoffer .ttcmsoffer-btn {
      width: 100%; } }

.ttcmsoffer .ttcmsoffer-btn::after {
  background: #d3d3d3;
  bottom: auto;
  content: "";
  height: 40%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 2px; }
  @media screen and (max-width: 991px) {
    .ttcmsoffer .ttcmsoffer-btn::after {
      height: 30%; } }

.ttcmsoffer .ttcmsoffer-btn > a {
  font: 400 14px/18px Lato, sans-serif;
  letter-spacing: 1px;
  position: relative;
  float: none;
  display: inline-block;
  vertical-align: top;
  width: auto;
  padding: 12px 20px;
  text-transform: capitalize; }

/*---- ------------------------bottom-banner------------------------ ----*/
.ttbottombanner {
  float: left;
  width: 100%; }

.ttbottombanner .bottombanner .banner_img > a {
  display: block;
  position: relative;
  float: left;
  width: 100%; }

.ttbottombanner .banner_img .bottombanner-content {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  align-items: center; }

.ttbottombanner .bottombanner-img {
  float: left;
  width: 100%;
  position: relative; }

.ttbottombanner .bottombanner-img .banner_img {
  float: left;
  width: 100%; }

.ttbottombanner .bottombanner-img .banner_img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }

.ttbottombanner .banner_img .bottombanner-content .banner-text {
  text-align: center;
  float: left;
  width: 100%; }

.ttbottombanner .banner_img .bottombanner-content .bottombanner-subtitle {
  font: 400 20px/24px Poppins;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-transform: capitalize; }
  @media screen and (max-width: 991px) {
    .ttbottombanner .banner_img .bottombanner-content .bottombanner-subtitle {
      font-size: 16px;
      line-height: 18px; } }
  @media screen and (max-width: 360px) {
    .ttbottombanner .banner_img .bottombanner-content .bottombanner-subtitle {
      display: none; } }

.ttbottombanner .banner_img .bottombanner-content .bottombanner-title {
  font: 700 42px/48px Lato;
  text-transform: capitalize;
  margin: 0 0 10px;
  letter-spacing: 1px; }
  @media screen and (max-width: 1199px) {
    .ttbottombanner .banner_img .bottombanner-content .bottombanner-title {
      font-size: 28px;
      line-height: 30px; } }
  @media screen and (max-width: 991px) {
    .ttbottombanner .banner_img .bottombanner-content .bottombanner-title {
      font-size: 28px;
      line-height: 30px;
      margin: 0 0 5px; } }
  @media screen and (max-width: 481px) {
    .ttbottombanner .banner_img .bottombanner-content .bottombanner-title {
      font-size: 24px;
      line-height: 26px; } }
  @media screen and (max-width: 480px) {
    .ttbottombanner .banner_img .bottombanner-content .bottombanner-title {
      margin: 0 0 2px;
      float: left;
      width: 100%; } }
  @media screen and (max-width: 360px) {
    .ttbottombanner .banner_img .bottombanner-content .bottombanner-title {
      font-size: 16px;
      line-height: 18px; } }

.ttbottombanner .banner_img::before {
  background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 50%;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  position: absolute;
  right: 51%;
  top: 0; }

.ttbottombanner .banner_img::after {
  background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
  bottom: 50%;
  content: "";
  left: 0;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 50%; }

.ttbottombanner .banner_img:hover::before {
  left: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  right: 0;
  -webkit-transition: all 900ms ease-in-out 0s;
  -moz-transition: all 900ms ease-in-out 0s;
  -ms-transition: all 900ms ease-in-out 0s;
  -o-transition: all 900ms ease-in-out 0s;
  transition: all 900ms ease-in-out 0s; }

.ttbottombanner .banner_img:hover::after {
  bottom: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  top: 0;
  -webkit-transition: all 900ms ease-in-out 0s;
  -moz-transition: all 900ms ease-in-out 0s;
  -ms-transition: all 900ms ease-in-out 0s;
  -o-transition: all 900ms ease-in-out 0s;
  transition: all 900ms ease-in-out 0s; }

/*------------------- ttbanner -------------------*/
.ttcmsbanner {
  float: left;
  width: 100%;
  position: relative; }

@media screen and (max-width: 767px) {
  .ttcmsbanner .ttbanner {
    width: 100%;
    text-align: center;
    margin: 0 0 15px; } }

.ttcmsbanner .ttbanner .ttbanner-img {
  float: left;
  width: 100%;
  position: relative;
  cursor: pointer; }
  @media screen and (max-width: 767px) {
    .ttcmsbanner .ttbanner .ttbanner-img {
      float: none;
      width: auto;
      display: inline-block;
      vertical-align: top; } }

.ttcmsbanner .ttbanner .ttbanner-img .banner_img {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px; }
  @media screen and (max-width: 767px) {
    .ttcmsbanner .ttbanner .ttbanner-img .banner_img {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }

.ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content {
  float: left;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  bottom: 0;
  right: auto;
  z-index: 1;
  width: 50%;
  margin: auto;
  display: flex;
  align-items: center; }
  @media screen and (max-width: 991px) {
    .ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content {
      width: 60%; } }

.ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content .ttbanner-block {
  float: left;
  width: 100%;
  text-align: center; }

.ttcmsbanner .ttbanner .ttbanner .ttbanner-img .banner_img a::before {
  background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 700ms ease 0s;
  -moz-transition: all 700ms ease 0s;
  -ms-transition: all 700ms ease 0s;
  -o-transition: all 700ms ease 0s;
  transition: all 700ms ease 0s;
  z-index: 1; }

.ttcmsbanner .ttbanner .ttbanner .ttbanner-img .banner_img a::after {
  background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 700ms ease 0s;
  -moz-transition: all 700ms ease 0s;
  -ms-transition: all 700ms ease 0s;
  -o-transition: all 700ms ease 0s;
  transition: all 700ms ease 0s; }

.ttcmsbanner .ttbanner .ttbanner .ttbanner-img:hover .banner_img a::before {
  left: 50%;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  right: 50%; }

.ttcmsbanner .ttbanner .ttbanner .ttbanner-img:hover .banner_img a::after {
  bottom: 50%;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  top: 50%; }

.ttcmsbanner .ttbanner .ttbanner-img .banner_img img {
  -webkit-transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -ms-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s; }

.ttcmsbanner .ttbanner .ttbanner-img:hover .banner_img img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); }

.ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-title {
  text-transform: capitalize;
  font: 700 36px/38px Lato;
  letter-spacing: 1px;
  margin: 0 0 15px; }
  @media screen and (max-width: 1199px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-title {
      font-size: 34px;
      line-height: 36px; } }
  @media screen and (max-width: 991px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-title {
      font-size: 24px;
      line-height: 26px;
      margin: 0 0 8px; } }
  @media screen and (max-width: 767px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-title {
      font-size: 36px;
      line-height: 38px; } }
  @media screen and (max-width: 480px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-title {
      font-size: 24px;
      line-height: 26px; } }

.ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-subtitle {
  text-transform: capitalize;
  font: 600 34px/36px Dancing Script, Helvetica, sans-serif;
  margin: 0 0 12px; }
  @media screen and (max-width: 1199px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-subtitle {
      font-size: 30px;
      line-height: 32px; } }
  @media screen and (max-width: 991px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-subtitle {
      font-size: 24px;
      line-height: 26px;
      margin: 0 0 8px; } }
  @media screen and (max-width: 767px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-subtitle {
      font-size: 34px;
      line-height: 36px; } }
  @media screen and (max-width: 480px) {
    .ttcmsbanner .ttbanner-img .ttbanner-content .ttbaaner-subtitle {
      font-size: 20px;
      line-height: 22px; } }

.ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content .ttbanner-block > a {
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding: 10px 28px;
  text-transform: capitalize;
  font: 500 16px/20px Lato, Helvetica, sans-serif;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }
  @media screen and (max-width: 991px) {
    .ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content .ttbanner-block > a {
      padding: 8px 25px; } }
  @media screen and (max-width: 481px) {
    .ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content .ttbanner-block > a {
      padding: 4px 18px;
      font-size: 12px; } }

.ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content .ttbanner-block > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0.5, 1);
  -moz-transform: scale(0.5, 1);
  -ms-transform: scale(0.5, 1);
  -o-transform: scale(0.5, 1);
  transform: scale(0.5, 1);
  transform: scale(0.5, 1); }

.ttcmsbanner .ttbanner .ttbanner-img .ttbanner-content .ttbanner-block > a:hover::after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

@media screen and (max-width: 767px) {
  .ttcmsbanner .ttbanner:last-child {
    margin: 0; } }
/*------------ Category-slider---------------*/
.template-index .main-content .shopify-section.slider {
  margin-top: 0; }

.category-slider {
  float: left;
  width: 100%;
  position: relative; }

.shopify-section.slider .category-slider {
  float: left;
  width: 100%;
  position: relative;
  padding: 50px 0 0; }
  @media screen and (max-width: 1199px) {
    .shopify-section.slider .category-slider {
      padding: 25px 0 0; } }
  @media screen and (max-width: 480px) {
    .shopify-section.slider .category-slider {
      padding: 20px 0 0; } }

.shopify-section.slider .TTcatProduct-Tab {
  float: left;
  width: 100%;
  position: relative;
  text-align: center; }

@media screen and (min-width: 992px) {
  .shopify-section.slider .TTcatProduct-Tab .owl-stage-outer .owl-stage .owl-item {
    width: 33.33%; } }
@media screen and (min-width: 550px) and (max-width: 1199px) {
  .shopify-section.slider .TTcatProduct-Tab .owl-stage-outer .owl-stage .owl-item {
    width: 50%; } }
.shopify-section.slider .nav-tabs {
  border-bottom: none; }
  @media screen and (max-width: 767px) {
    .shopify-section.slider .nav-tabs {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: 80%;
      margin: 0 auto 20px;
      padding: 0; } }
  @media screen and (max-width: 480px) {
    .shopify-section.slider .nav-tabs {
      width: 100%; } }

.shopify-section.slider .TTProduct-Tab-container {
  float: left;
  padding-right: 0; }
  @media screen and (max-width: 767px) {
    .shopify-section.slider .TTProduct-Tab-container {
      width: 100%;
      padding: 0; } }

.shopify-section.slider .nav-tabs > li > a {
  border-radius: 5px;
  padding: 15px;
  position: relative;
  background: #faf7f2;
  color: #111;
  border: none;
  text-align: center;
  text-transform: capitalize;
  font: 700 18px/20px Lato, Sans-serif; }

.shopify-section.slider .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  border: medium none;
  border-bottom-color: none;
  color: white; }

.shopify-section.slider .nav-tabs > li > a:hover, .shopify-section.slider .nav-tabs > li > a:focus {
  color: white; }

.shopify-section.slider .nav-tabs > li {
  float: left;
  width: 100%;
  margin: 0 0 10px; }

@media screen and (min-width: 768px) {
  .shopify-section.slider .categoryslider-content {
    float: left;
    width: 100%;
    display: flex;
    align-items: center; } }
@media screen and (min-width: 481px) {
  .shopify-section.slider .nav-tabs > li.active > a::after {
    color: #f6bb25; }

  .shopify-section.slider .nav-tabs > li > a:hover::after, .shopify-section.slider .nav-tabs > li > a:focus::after {
    color: #f6bb25; }

  .shopify-section.slider .nav-tabs > li > a::after {
    color: #f7f7f7;
    content: "\f35f";
    font-family: "Material design Icons";
    font-size: 42px;
    left: auto;
    position: absolute;
    right: -25px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    line-height: 42px;
    font-style: normal; } }
/*------------  Contact Information----*/
.header_2 .wrapper-wrap .nav-menu-wrap .contact-info,
.header_3 .nav-menu-wrap .contact-info,
.header_3 .nav-menu-wrap .delivery-service {
  float: left;
  padding: 0;
  margin: 34px 0;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap .nav-menu-wrap .contact-info,
    .header_3 .nav-menu-wrap .contact-info,
    .header_3 .nav-menu-wrap .delivery-service {
      width: 100%;
      margin: 5px 0;
      text-align: center;
      display: none; } }

.header_2 .wrapper-wrap .nav-menu-wrap .menu_toggle_wrap .contact-info,
.header_3 .nav-menu-wrap .menu_toggle_wrap .contact-info,
.header_3 .nav-menu-wrap .menu_toggle_wrap .delivery-service {
  display: block;
  width: 100%;
  margin: 5px 0;
  text-align: center; }

.header_2 .wrapper-wrap.logo_left .nav-menu-wrap .contact-info,
.header_2 .wrapper-wrap.icon_left .nav-menu-wrap .contact-info {
  float: right;
  margin: 34px 15px; }

.header_2 .wrapper-wrap.logo_right .nav-menu-wrap .contact-info {
  float: left;
  margin: 34px 15px; }

.header_2 .wrapper-wrap.sticky_header.fixed .nav-menu-wrap .contact-info {
  display: none; }

.header_3 .nav-menu-wrap .contact-info, .header_3 .nav-menu-wrap .delivery-service {
  margin: 41px 50px 41px 0; }
  @media screen and (max-width: 991px) {
    .header_3 .nav-menu-wrap .contact-info, .header_3 .nav-menu-wrap .delivery-service {
      margin: 0 30px 0 0;
      float: none;
      display: inline-block;
      vertical-align: top;
      width: auto; } }
  @media screen and (max-width: 320px) {
    .header_3 .nav-menu-wrap .contact-info, .header_3 .nav-menu-wrap .delivery-service {
      margin: 0 20px 0 0; } }

.header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper,
.header_3 .nav-menu-wrap .contact-info .contact-wrapper,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper {
  float: left;
  position: relative;
  padding: 4px 0 4px 50px;
  text-align: left; }
  @media screen and (max-width: 991px) {
    .header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper,
    .header_3 .nav-menu-wrap .contact-info .contact-wrapper,
    .header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper {
      float: none;
      display: inline-block;
      vertical-align: top;
      margin: 10px 0;
      text-align: center; } }

.header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper > i,
.header_3 .nav-menu-wrap .contact-info .contact-wrapper > i,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper > i {
  border-radius: 50px;
  content: '';
  font-family: "Material design Icons";
  font-size: 22px;
  line-height: 24px;
  height: 40px;
  left: 0;
  padding: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px; }

.header_3 .nav-menu-wrap .contact-info .contact-wrapper > i,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper > i {
  font-size: 26px;
  line-height: 28px;
  height: 50px;
  padding: 11px;
  width: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1); }

.header_3 .nav-menu-wrap .contact-info .contact-wrapper .contact-detail,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper .delivery-detail {
  float: left;
  width: auto;
  margin: 0 0 0 12px; }

.header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper > i::before,
.header_3 .nav-menu-wrap .contact-info .contact-wrapper > i::before,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper > i::before {
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

.header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper:hover > i::before,
.header_3 .nav-menu-wrap .contact-info .contact-wrapper:hover > i::before,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper:hover > i::before {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper > i::after {
  border-bottom-right-radius: 10px 20px;
  content: "";
  height: 20px;
  position: absolute;
  right: 27px;
  top: 26px;
  transform: rotate(35deg);
  z-index: 1; }

.header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper .contact-title {
  font: 400 16px/22px Lato, Helvetica, sans-serif;
  width: 100%;
  text-align: left; }

.header_3 .nav-menu-wrap .contact-info .contact-wrapper .contact-title,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper .delivery-title {
  font: 400 14px/22px Poppins, Helvetica, sans-serif;
  text-align: left;
  width: 100%; }

.header_2 .wrapper-wrap .nav-menu-wrap .contact-info .contact-wrapper .contact-no,
.header_3 .nav-menu-wrap .contact-info .contact-wrapper .contact-no,
.header_3 .nav-menu-wrap .delivery-service .delivery-service-wrapper .delivery-no {
  float: left;
  font: 700 18px/24px Lato, Helvetica, sans-serif;
  width: 100%;
  text-transform: capitalize; }

/*--- Categorywise search---*/
.header_3 .wrapper-wrap .header-middle {
  margin: 20px auto;
  float: right;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_3 .wrapper-wrap .header-middle {
      float: left;
      width: 100%;
      margin: 10px auto; } }

.header_3 .wrapper-wrap.search_left .header-middle {
  float: left; }

.header_3 .header-middle div#header-search {
  float: left;
  width: auto; }
  @media screen and (max-width: 991px) {
    .header_3 .header-middle div#header-search {
      float: none;
      display: inline-block;
      vertical-align: top;
      border: 1px solid #e5e5e5;
      -webkit-border-radius: 25px;
      -moz-border-radius: 25px;
      -khtml-border-radius: 25px;
      border-radius: 25px; } }

.header_3 .header-middle #header-search form {
  margin: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px; }

.header_3 .header-middle #header-search, .header_3 .site-header form.input-group.search-bar, .header_3 #header-search.input-group {
  border: none;
  display: inline-block;
  width: 100%;
  margin: 0;
  vertical-align: top; }

.header_3 .header-middle .input-group.search-bar .input-group-field {
  border: none;
  height: 100%;
  padding: 10px 60px 10px 15px;
  font-size: 14px;
  width: 510px;
  height: 50px;
  float: right;
  text-align: left;
  letter-spacing: 1px;
  -webkit-border-radius: 0 25px 25px 0;
  -moz-border-radius: 0 25px 25px 0;
  -khtml-border-radius: 0 25px 25px 0;
  border-radius: 0 25px 25px 0; }
  @media screen and (max-width: 1600px) {
    .header_3 .header-middle .input-group.search-bar .input-group-field {
      width: 450px; } }
  @media screen and (max-width: 1450px) {
    .header_3 .header-middle .input-group.search-bar .input-group-field {
      width: 300px; } }
  @media screen and (max-width: 1199px) {
    .header_3 .header-middle .input-group.search-bar .input-group-field {
      width: 200px; } }
  @media screen and (max-width: 991px) {
    .header_3 .header-middle .input-group.search-bar .input-group-field {
      width: 350px; } }
  @media screen and (max-width: 543px) {
    .header_3 .header-middle .input-group.search-bar .input-group-field {
      width: 250px; } }
  @media screen and (max-width: 480px) {
    .header_3 .header-middle .input-group.search-bar .input-group-field {
      width: 190px; } }

.header_3 .wrapper-wrap .menu_wrapper.sticky_header.fixed .header-middle .input-group.search-bar .input-group-field {
  width: 350px; }
  @media screen and (max-width: 1300px) {
    .header_3 .wrapper-wrap .menu_wrapper.sticky_header.fixed .header-middle .input-group.search-bar .input-group-field {
      width: 300px; } }

.header_3 .header-middle .input-group.search-bar .collections-selector {
  float: left;
  width: 150px;
  position: relative; }
  @media screen and (max-width: 1300px) {
    .header_3 .header-middle .input-group.search-bar .collections-selector {
      width: 120px; } }
  @media screen and (max-width: 480px) {
    .header_3 .header-middle .input-group.search-bar .collections-selector {
      width: 90px; } }

.header_3 .header-middle .input-group.search-bar .collections-selector::before {
  border-left: 1px solid #cfcfcf;
  content: "";
  height: 25px;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; }

.header_3 .header-middle .input-group.search-bar #collection-option {
  background-size: 7px;
  background-color: #fff;
  background-position: right 15px center;
  height: 50px;
  padding: 5px 30px 5px 15px;
  margin: 0;
  font-size: 14px;
  border: none;
  letter-spacing: 1px;
  -webkit-border-radius: 25px 0 0 25px;
  -moz-border-radius: 25px 0 0 25px;
  -khtml-border-radius: 25px 0 0 25px;
  border-radius: 25px 0 0 25px; }

.header_3 .header-middle #header-search span.input-group-btn {
  float: left;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 3px;
  bottom: auto;
  left: auto;
  right: 4px; }

.header_3 .header-middle #header-search .search-submit {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 12px;
  margin: 0;
  height: 44px;
  line-height: 10px;
  text-transform: none;
  float: left;
  width: 44px;
  background: #111;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px; }

.header-middle #header-search .search-submit:hover {
  background: #f6bb25;
  color: #fff; }

.header_3 .search-results li {
  width: 50%;
  float: left; }

.header_3 .search-results li:last-child {
  width: 100%; }

.header_3 .search-results li:nth-child(2n+1) {
  clear: both; }

.header_3 .header-middle #header-search .icon-fallback-text .icon {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: top; }

/*----------------- ttservices2 ------------------*/
.template-index .main-content .shopify-section.ttservices {
  margin: 0; }

#ttcmsservices2 {
  padding: 0;
  width: 100%; }

.main-content .shopify-section.services {
  text-align: center;
  padding: 0; }

#ttcmsservices2 .block_content {
  float: left;
  width: 100%;
  background: #fff;
  padding: 20px 15px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 0; }
  @media screen and (max-width: 1200px) {
    #ttcmsservices2 .block_content {
      padding: 15px 15px 20px; } }
  @media screen and (max-width: 1199px) {
    #ttcmsservices2 .block_content {
      padding: 15px; } }
  @media screen and (max-width: 480px) {
    #ttcmsservices2 .block_content {
      padding: 10px 10px; } }

#ttcmsservices2 .ttservice-wrap {
  text-align: center;
  position: relative; }

#ttcmsservices2 .ttservice-wrap .ttcontent {
  float: left;
  width: 100%; }

#ttcmsservices2 .ttservice-wrap .ttcontent .service {
  float: left;
  width: 100%;
  padding: 5px 0;
  cursor: pointer; }
  @media screen and (max-width: 480px) {
    #ttcmsservices2 .ttservice-wrap .ttcontent .service {
      border: none; } }

#ttcmsservices2 .block_content .owl-item {
  position: relative; }

#ttcmsservices2 .block_content .owl-item::after {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  height: 80%;
  left: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  right: 0; }
  @media screen and (max-width: 550px) {
    #ttcmsservices2 .block_content .owl-item::after {
      display: none; } }

#ttcmsservices2 .block_content .owl-item:last-child::after {
  display: none; }

#ttcmsservices2 .ttservice-wrap .ttcontent .service .ttshipping_img.service-icon {
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out; }

#ttcmsservices2 .ttservice-wrap .ttcontent:hover .service .ttshipping_img.service-icon {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

#ttcmsservices2 .ttservice-wrap .content {
  float: none;
  padding: 8px 0 0 10px;
  display: inline-block;
  vertical-align: top;
  text-align: left; }
  @media screen and (min-width: 550px) and (max-width: 570px) {
    #ttcmsservices2 .ttservice-wrap .content {
      padding: 8px 0 0 2px; } }

#ttcmsservices2 .ttservice-wrap .content .service-title {
  letter-spacing: 1px;
  text-transform: capitalize;
  font: 500 16px/24px Lato, sans-serif; }
  @media screen and (max-width: 767px) {
    #ttcmsservices2 .ttservice-wrap .content .service-title {
      font-size: 14px;
      line-height: 20px; } }

#ttcmsservices2 .owl-stage-outer {
  margin: 0 2px 0 0; }

/*---- TTCMS ABOUTUS2----*/
#ttcmsabout2 .tt-title::before {
  display: none; }

#ttcmsabout2 .ttaboutimg .image1.ttimg {
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 80px 0 0; }
  @media screen and (max-width: 767px) {
    #ttcmsabout2 .ttaboutimg .image1.ttimg {
      float: none;
      display: inline-block;
      vertical-align: top;
      margin: 0; } }

#ttcmsabout2 .ttcmsabout .ttimg .ttabout-img {
  float: left;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  overflow: hidden;
  position: relative; }

#ttcmsabout2 .ttcmsabout .ttimg .ttabout-img a img {
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9); }
  @media screen and (max-width: 767px) {
    #ttcmsabout2 .ttcmsabout .ttimg .ttabout-img a img {
      width: 85%; } }

#ttcmsabout2 .ttcmsabout .ttimg:hover .ttabout-img a img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

@media screen and (max-width: 767px) {
  #ttcmsabout2 .ttcmsabout.ttaboutimg {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 90px 0 0; } }

@media screen and (max-width: 767px) {
  #ttcmsabout2 .ttcmsabout.ttaboutbanner {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 10% 0 0; } }
@media screen and (max-width: 320px) {
  #ttcmsabout2 .ttcmsabout.ttaboutbanner {
    padding: 18% 0 0; } }

#ttcmsabout2 .ttaboutbanner .ttabout-left {
  text-align: center;
  padding: 0 20px;
  float: left; }
  @media screen and (max-width: 767px) {
    #ttcmsabout2 .ttaboutbanner .ttabout-left {
      float: left;
      width: 50%;
      padding: 0 10px; } }
  @media screen and (max-width: 480px) {
    #ttcmsabout2 .ttaboutbanner .ttabout-left {
      width: 100%; } }

#ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart {
  float: left;
  width: 100%;
  padding: 20px 0 0; }

#ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart .otcontent_inner {
  float: left; }

#ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart .otcontent_inner .about-inner-img .about-icon {
  display: inline-block;
  vertical-align: top;
  float: none;
  font-size: 30px;
  line-height: 60px;
  transition: all 300ms ease-in-out 0s; }

#ttcmsabout2 .ttaboutbanner .ttabout-part-0 .ttabout-subpart .otcontent_inner .about-inner-img .about-icon::after {
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/about-pattern.png?v=14799467258122758609) no-repeat center top;
  content: '';
  top: -50px;
  bottom: 0;
  left: auto;
  right: -70px;
  height: 45px;
  width: 132px;
  margin: auto;
  position: absolute; }
  @media screen and (max-width: 481px) {
    #ttcmsabout2 .ttaboutbanner .ttabout-part-0 .ttabout-subpart .otcontent_inner .about-inner-img .about-icon::after {
      top: auto;
      bottom: -50px;
      width: 122px; } }

#ttcmsabout2 .ttaboutbanner .ttabout-part-1 .ttabout-subpart .otcontent_inner .about-inner-img .about-icon::after {
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/about-pattern2.png?v=13478101012221180968) no-repeat center top;
  content: '';
  top: auto;
  bottom: -110px;
  height: 124px;
  width: 133px;
  right: auto;
  left: -20px;
  position: absolute; }
  @media screen and (max-width: 481px) {
    #ttcmsabout2 .ttaboutbanner .ttabout-part-1 .ttabout-subpart .otcontent_inner .about-inner-img .about-icon::after {
      display: none; } }

#ttcmsabout2 .ttaboutbanner .ttabout-part-3 .ttabout-subpart .otcontent_inner .about-inner-img .about-icon::after {
  top: auto;
  content: '';
  bottom: 10px;
  height: 124px;
  width: 133px;
  right: auto;
  left: -40px;
  margin: auto;
  position: absolute;
  background: url(//cdn.shopify.com/s/files/1/0267/6568/9026/t/3/assets/about-pattern3.png?v=17770425209727308312) no-repeat center top; }
  @media screen and (max-width: 481px) {
    #ttcmsabout2 .ttaboutbanner .ttabout-part-3 .ttabout-subpart .otcontent_inner .about-inner-img .about-icon::after {
      left: 60px; } }
  @media screen and (max-width: 320px) {
    #ttcmsabout2 .ttaboutbanner .ttabout-part-3 .ttabout-subpart .otcontent_inner .about-inner-img .about-icon::after {
      left: 10px; } }

#ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart .otcontent_inner .about-inner-img .about-content {
  float: left;
  width: 100%; }

#ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart .otcontent_inner .about-inner-img .about-content .about-desc {
  color: #444;
  font: 600 16px/26px Lato, sans-serif;
  margin: 10px 0;
  padding: 0 0 10px;
  position: relative;
  text-transform: capitalize; }
  @media screen and (max-width: 767px) {
    #ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart .otcontent_inner .about-inner-img .about-content .about-desc {
      font-size: 14px;
      line-height: 24px; } }

#ttcmsabout2 .tt-hex-main, #ttcmsabout2 .tt-hex {
  width: 510px;
  height: 650px;
  border-radius: 16px; }
  @media screen and (max-width: 1199px) {
    #ttcmsabout2 .tt-hex-main, #ttcmsabout2 .tt-hex {
      width: 450px;
      height: 550px; } }
  @media screen and (max-width: 991px) {
    #ttcmsabout2 .tt-hex-main, #ttcmsabout2 .tt-hex {
      width: 350px;
      height: 380px; } }
  @media screen and (max-width: 767px) {
    #ttcmsabout2 .tt-hex-main, #ttcmsabout2 .tt-hex {
      width: 500px;
      height: 550px; } }
  @media screen and (max-width: 481px) {
    #ttcmsabout2 .tt-hex-main, #ttcmsabout2 .tt-hex {
      width: 400px;
      height: 450px; } }
  @media screen and (max-width: 320px) {
    #ttcmsabout2 .tt-hex-main, #ttcmsabout2 .tt-hex {
      width: 300px;
      height: 350px; } }

#ttcmsabout2 .tt-hex-main {
  z-index: -1;
  position: absolute;
  top: 0;
  left: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  margin: auto;
  right: -50%; }
  @media screen and (max-width: 1199px) {
    #ttcmsabout2 .tt-hex-main {
      -webkit-transform: translateX(-32%);
      -moz-transform: translateX(-32%);
      -ms-transform: translateX(-32%);
      -o-transform: translateX(-32%);
      transform: translateX(-32%); } }
  @media screen and (max-width: 991px) {
    #ttcmsabout2 .tt-hex-main {
      -webkit-transform: translateX(-25%);
      -moz-transform: translateX(-25%);
      -ms-transform: translateX(-25%);
      -o-transform: translateX(-25%);
      transform: translateX(-25%); } }
  @media screen and (max-width: 767px) {
    #ttcmsabout2 .tt-hex-main {
      -webkit-transform: translateX(-98%);
      -moz-transform: translateX(-98%);
      -ms-transform: translateX(-98%);
      -o-transform: translateX(-98%);
      transform: translateX(-98%); } }
  @media screen and (max-width: 580px) {
    #ttcmsabout2 .tt-hex-main {
      -webkit-transform: translateX(-54%);
      -moz-transform: translateX(-54%);
      -ms-transform: translateX(-54%);
      -o-transform: translateX(-54%);
      transform: translateX(-54%); } }
  @media screen and (max-width: 481px) {
    #ttcmsabout2 .tt-hex-main {
      -webkit-transform: translateX(-63%);
      -moz-transform: translateX(-63%);
      -ms-transform: translateX(-63%);
      -o-transform: translateX(-63%);
      transform: translateX(-63%); } }
  @media screen and (max-width: 320px) {
    #ttcmsabout2 .tt-hex-main {
      -webkit-transform: translateX(-47%);
      -moz-transform: translateX(-47%);
      -ms-transform: translateX(-47%);
      -o-transform: translateX(-47%);
      transform: translateX(-47%); } }

#ttcmsabout2 .tt-hex-shadow {
  top: 15px;
  left: 0;
  position: absolute;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  zoom: 1;
  filter: alpha(opacity=10);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background: none; }

#ttcmsabout2 .tt-hex-white {
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

#ttcmsabout2 .tt-hex-grey {
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 450px;
  height: 480px;
  right: 0;
  bottom: 0;
  margin: auto; }
  @media screen and (max-width: 1199px) {
    #ttcmsabout2 .tt-hex-grey {
      width: 400px; } }
  @media screen and (max-width: 991px) {
    #ttcmsabout2 .tt-hex-grey {
      width: 300px;
      height: 320px; } }
  @media screen and (max-width: 767px) {
    #ttcmsabout2 .tt-hex-grey {
      width: 420px;
      height: 450px; } }
  @media screen and (max-width: 481px) {
    #ttcmsabout2 .tt-hex-grey {
      width: 320px;
      height: 350px; } }
  @media screen and (max-width: 320px) {
    #ttcmsabout2 .tt-hex-grey {
      width: 240px;
      height: 250px; } }

#ttcmsabout2 .tt-hex-shadow .tt-hex-bottom::before {
  background-color: #5a3733; }

#ttcmsabout2 .tt-hex-grey .tt-hex-bottom::before {
  background-color: #fff; }

#ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart .otcontent_inner .about-inner-img .about-icon img {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

#ttcmsabout2 .ttaboutbanner .ttabout-left .ttabout-subpart .otcontent_inner .about-inner-img .about-icon:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }
