@charset "UTF-8";
/*primary color variable*/
/*secondary color variable*/
/*list of theme colors to apply*/
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
@-webkit-keyframes gradientbg {
  0% {
    background-position: 42% 0%; }
  50% {
    background-position: 59% 100%; }
  100% {
    background-position: 42% 0%; } }
@-moz-keyframes gradientbg {
  0% {
    background-position: 42% 0%; }
  50% {
    background-position: 59% 100%; }
  100% {
    background-position: 42% 0%; } }
@keyframes gradientbg {
  0% {
    background-position: 42% 0%; }
  50% {
    background-position: 59% 100%; }
  100% {
    background-position: 42% 0%; } }
/*============================================================================
      Shopify Timber
      Copyright 2015 Shopify Inc.
      Author Carson Shold @cshold
      Built with Sass - http://sass-lang.com/

      Some things to know about this file:
        - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
        - The output CSS is compressed and comments are removed
        - You cannot use @imports in this file
            * Use grunt or gulp tasks to enable @imports - https://github.com/Shopify/shopify-css-import
        - Helpers variables, mixins, and starter classes are provided. Change as needed.
        - The file is prepped with a CSS reset
        - The font icons are prepared using https://icomoon.io/app
    ==============================================================================*/
/*============================================================================
      Table of Contents

      #Breakpoint and Grid Variables
      #General Variables
      #Sass Mixins
      #Grid Setup
      #Normalize
      #Helper Classes
      #Typography
      #Rich Text Editor
      #Links and Buttons
      #Lists
      #Tables
      #Reponsive Tables
      #Images and Iframes
      #Forms
      #Pagination
      #Breadcrumbs
      #Notes and Form Feedback
    ==============================================================================*/
/*============================================================================
      #Breakpoint and Grid Variables
    ==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
      #General Variables
    ==============================================================================*/
/*$colorBtnPrimaryHover: darken($colorBtnPrimary, 10%);
    $colorBtnPrimaryActive: darken($colorBtnPrimaryHover, 10%);*/
/*$colorBtnSecondaryHover: darken($colorBtnSecondary, 10%);
    $colorBtnSecondaryActive: darken($colorBtnSecondaryHover, 10%);*/
a {
  color: #48484a;
  cursor: pointer; }
  a:hover {
    color: #0088cb; }

ul:after {
  display: block;
  content: "";
  clear: both; }
ul li {
  list-style: none; }

/*================ Typography ================*/
/*$headerFontStack: 'Oswald', sans-serif;
    $headerFontWeight: 400;*/
/*============================================================================
      Dependency-free breakpoint mixin
        - Based on http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
        - Usage docs: http://shopify.github.io/Timber/#sass-mixins
    ==============================================================================*/
/*============================================================================
      #Grid Setup
    ==============================================================================*/
/* 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
    ==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -15px;
  margin-right: -15px; }
  @media screen and (max-width: 767px) {
    .grid, .grid--rev, .grid--full,
    .grid-uniform {
      margin-left: -7.5px;
      margin-right: -7.5px; } }

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .grid__item {
      padding-left: 7.5px;
      padding-right: 7.5px; } }

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

/*============================================================================
      WIDTHS
        - Create width classes, prefixed by the specified namespace.
    ==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ 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 (min-width: 320px) and (max-width: 479px) {
  /** Whole */
  .xs--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xs-up--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .xs-up--two-sixths {
    width: 33.333%; }

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

  .xs-up--four-sixths {
    width: 66.666%; }

  .xs-up--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xs-up--two-twelfths {
    width: 16.666%; }

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

  .xs-up--four-twelfths {
    width: 33.333%; }

  .xs-up--five-twelfths {
    width: 41.666%; }

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

  .xs-up--seven-twelfths {
    width: 58.333%; }

  .xs-up--eight-twelfths {
    width: 66.666%; }

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

  .xs-up--ten-twelfths {
    width: 83.333%; }

  .xs-up--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .xs-up--left {
    float: left !important; }

  .xs-up--right {
    float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xm-up--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .xm-up--two-sixths {
    width: 33.333%; }

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

  .xm-up--four-sixths {
    width: 66.666%; }

  .xm-up--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xm-up--two-twelfths {
    width: 16.666%; }

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

  .xm-up--four-twelfths {
    width: 33.333%; }

  .xm-up--five-twelfths {
    width: 41.666%; }

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

  .xm-up--seven-twelfths {
    width: 58.333%; }

  .xm-up--eight-twelfths {
    width: 66.666%; }

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

  .xm-up--ten-twelfths {
    width: 83.333%; }

  .xm-up--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .xm-up--left {
    float: left !important; }

  .xm-up--right {
    float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm-up--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .sm-up--two-sixths {
    width: 33.333%; }

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

  .sm-up--four-sixths {
    width: 66.666%; }

  .sm-up--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sm-up--two-twelfths {
    width: 16.666%; }

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

  .sm-up--four-twelfths {
    width: 33.333%; }

  .sm-up--five-twelfths {
    width: 41.666%; }

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

  .sm-up--seven-twelfths {
    width: 58.333%; }

  .sm-up--eight-twelfths {
    width: 66.666%; }

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

  .sm-up--ten-twelfths {
    width: 83.333%; }

  .sm-up--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .sm-up--left {
    float: left !important; }

  .sm-up--right {
    float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md-up--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .md-up--two-sixths {
    width: 33.333%; }

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

  .md-up--four-sixths {
    width: 66.666%; }

  .md-up--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md-up--two-twelfths {
    width: 16.666%; }

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

  .md-up--four-twelfths {
    width: 33.333%; }

  .md-up--five-twelfths {
    width: 41.666%; }

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

  .md-up--seven-twelfths {
    width: 58.333%; }

  .md-up--eight-twelfths {
    width: 66.666%; }

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

  .md-up--ten-twelfths {
    width: 83.333%; }

  .md-up--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .md-up--left {
    float: left !important; }

  .md-up--right {
    float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.offset--two-thirds {
  margin-left: 66.666%; }

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

.offset--two-quarters {
  margin-left: 50%; }

.offset--three-quarters {
  margin-left: 75%; }

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

.offset--two-fifths {
  margin-left: 40%; }

.offset--three-fifths {
  margin-left: 60%; }

.offset--four-fifths {
  margin-left: 80%; }

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

.offset--two-sixths {
  margin-left: 33.333%; }

.offset--three-sixths {
  margin-left: 50%; }

.offset--four-sixths {
  margin-left: 66.666%; }

.offset--five-sixths {
  margin-left: 83.333%; }

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

.offset--two-eighths {
  margin-left: 25%; }

.offset--three-eighths {
  margin-left: 37.5%; }

.offset--four-eighths {
  margin-left: 50%; }

.offset--five-eighths {
  margin-left: 62.5%; }

.offset--six-eighths {
  margin-left: 75%; }

.offset--seven-eighths {
  margin-left: 87.5%; }

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

.offset--two-tenths {
  margin-left: 20%; }

.offset--three-tenths {
  margin-left: 30%; }

.offset--four-tenths {
  margin-left: 40%; }

.offset--five-tenths {
  margin-left: 50%; }

.offset--six-tenths {
  margin-left: 60%; }

.offset--seven-tenths {
  margin-left: 70%; }

.offset--eight-tenths {
  margin-left: 80%; }

.offset--nine-tenths {
  margin-left: 90%; }

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

.offset--two-twelfths {
  margin-left: 16.666%; }

.offset--three-twelfths {
  margin-left: 25%; }

.offset--four-twelfths {
  margin-left: 33.333%; }

.offset--five-twelfths {
  margin-left: 41.666%; }

.offset--six-twelfths {
  margin-left: 50%; }

.offset--seven-twelfths {
  margin-left: 58.333%; }

.offset--eight-twelfths {
  margin-left: 66.666%; }

.offset--nine-twelfths {
  margin-left: 75%; }

.offset--ten-twelfths {
  margin-left: 83.333%; }

.offset--eleven-twelfths {
  margin-left: 91.666%; }

@media only screen and (min-width: 320px) and (max-width: 479px) {
  /* Whole */
  .offset--xs--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--xs--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--xs--one-third {
    margin-left: 33.333%; }

  .offset--xs--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--xs--one-quarter {
    margin-left: 25%; }

  .offset--xs--two-quarters {
    margin-left: 50%; }

  .offset--xs--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--xs--one-fifth {
    margin-left: 20%; }

  .offset--xs--two-fifths {
    margin-left: 40%; }

  .offset--xs--three-fifths {
    margin-left: 60%; }

  .offset--xs--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--xs--one-sixth {
    margin-left: 16.666%; }

  .offset--xs--two-sixths {
    margin-left: 33.333%; }

  .offset--xs--three-sixths {
    margin-left: 50%; }

  .offset--xs--four-sixths {
    margin-left: 66.666%; }

  .offset--xs--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--xs--one-eighth {
    margin-left: 12.5%; }

  .offset--xs--two-eighths {
    margin-left: 25%; }

  .offset--xs--three-eighths {
    margin-left: 37.5%; }

  .offset--xs--four-eighths {
    margin-left: 50%; }

  .offset--xs--five-eighths {
    margin-left: 62.5%; }

  .offset--xs--six-eighths {
    margin-left: 75%; }

  .offset--xs--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--xs--one-tenth {
    margin-left: 10%; }

  .offset--xs--two-tenths {
    margin-left: 20%; }

  .offset--xs--three-tenths {
    margin-left: 30%; }

  .offset--xs--four-tenths {
    margin-left: 40%; }

  .offset--xs--five-tenths {
    margin-left: 50%; }

  .offset--xs--six-tenths {
    margin-left: 60%; }

  .offset--xs--seven-tenths {
    margin-left: 70%; }

  .offset--xs--eight-tenths {
    margin-left: 80%; }

  .offset--xs--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--xs--one-twelfth {
    margin-left: 8.333%; }

  .offset--xs--two-twelfths {
    margin-left: 16.666%; }

  .offset--xs--three-twelfths {
    margin-left: 25%; }

  .offset--xs--four-twelfths {
    margin-left: 33.333%; }

  .offset--xs--five-twelfths {
    margin-left: 41.666%; }

  .offset--xs--six-twelfths {
    margin-left: 50%; }

  .offset--xs--seven-twelfths {
    margin-left: 58.333%; }

  .offset--xs--eight-twelfths {
    margin-left: 66.666%; }

  .offset--xs--nine-twelfths {
    margin-left: 75%; }

  .offset--xs--ten-twelfths {
    margin-left: 83.333%; }

  .offset--xs--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 320px) {
  /* Whole */
  .offset--xs-up--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--xs-up--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--xs-up--one-third {
    margin-left: 33.333%; }

  .offset--xs-up--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--xs-up--one-quarter {
    margin-left: 25%; }

  .offset--xs-up--two-quarters {
    margin-left: 50%; }

  .offset--xs-up--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--xs-up--one-fifth {
    margin-left: 20%; }

  .offset--xs-up--two-fifths {
    margin-left: 40%; }

  .offset--xs-up--three-fifths {
    margin-left: 60%; }

  .offset--xs-up--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--xs-up--one-sixth {
    margin-left: 16.666%; }

  .offset--xs-up--two-sixths {
    margin-left: 33.333%; }

  .offset--xs-up--three-sixths {
    margin-left: 50%; }

  .offset--xs-up--four-sixths {
    margin-left: 66.666%; }

  .offset--xs-up--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--xs-up--one-eighth {
    margin-left: 12.5%; }

  .offset--xs-up--two-eighths {
    margin-left: 25%; }

  .offset--xs-up--three-eighths {
    margin-left: 37.5%; }

  .offset--xs-up--four-eighths {
    margin-left: 50%; }

  .offset--xs-up--five-eighths {
    margin-left: 62.5%; }

  .offset--xs-up--six-eighths {
    margin-left: 75%; }

  .offset--xs-up--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--xs-up--one-tenth {
    margin-left: 10%; }

  .offset--xs-up--two-tenths {
    margin-left: 20%; }

  .offset--xs-up--three-tenths {
    margin-left: 30%; }

  .offset--xs-up--four-tenths {
    margin-left: 40%; }

  .offset--xs-up--five-tenths {
    margin-left: 50%; }

  .offset--xs-up--six-tenths {
    margin-left: 60%; }

  .offset--xs-up--seven-tenths {
    margin-left: 70%; }

  .offset--xs-up--eight-tenths {
    margin-left: 80%; }

  .offset--xs-up--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--xs-up--one-twelfth {
    margin-left: 8.333%; }

  .offset--xs-up--two-twelfths {
    margin-left: 16.666%; }

  .offset--xs-up--three-twelfths {
    margin-left: 25%; }

  .offset--xs-up--four-twelfths {
    margin-left: 33.333%; }

  .offset--xs-up--five-twelfths {
    margin-left: 41.666%; }

  .offset--xs-up--six-twelfths {
    margin-left: 50%; }

  .offset--xs-up--seven-twelfths {
    margin-left: 58.333%; }

  .offset--xs-up--eight-twelfths {
    margin-left: 66.666%; }

  .offset--xs-up--nine-twelfths {
    margin-left: 75%; }

  .offset--xs-up--ten-twelfths {
    margin-left: 83.333%; }

  .offset--xs-up--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (max-width: 479px) {
  /* Whole */
  .offset--xm-down--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--xm-down--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--xm-down--one-third {
    margin-left: 33.333%; }

  .offset--xm-down--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--xm-down--one-quarter {
    margin-left: 25%; }

  .offset--xm-down--two-quarters {
    margin-left: 50%; }

  .offset--xm-down--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--xm-down--one-fifth {
    margin-left: 20%; }

  .offset--xm-down--two-fifths {
    margin-left: 40%; }

  .offset--xm-down--three-fifths {
    margin-left: 60%; }

  .offset--xm-down--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--xm-down--one-sixth {
    margin-left: 16.666%; }

  .offset--xm-down--two-sixths {
    margin-left: 33.333%; }

  .offset--xm-down--three-sixths {
    margin-left: 50%; }

  .offset--xm-down--four-sixths {
    margin-left: 66.666%; }

  .offset--xm-down--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--xm-down--one-eighth {
    margin-left: 12.5%; }

  .offset--xm-down--two-eighths {
    margin-left: 25%; }

  .offset--xm-down--three-eighths {
    margin-left: 37.5%; }

  .offset--xm-down--four-eighths {
    margin-left: 50%; }

  .offset--xm-down--five-eighths {
    margin-left: 62.5%; }

  .offset--xm-down--six-eighths {
    margin-left: 75%; }

  .offset--xm-down--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--xm-down--one-tenth {
    margin-left: 10%; }

  .offset--xm-down--two-tenths {
    margin-left: 20%; }

  .offset--xm-down--three-tenths {
    margin-left: 30%; }

  .offset--xm-down--four-tenths {
    margin-left: 40%; }

  .offset--xm-down--five-tenths {
    margin-left: 50%; }

  .offset--xm-down--six-tenths {
    margin-left: 60%; }

  .offset--xm-down--seven-tenths {
    margin-left: 70%; }

  .offset--xm-down--eight-tenths {
    margin-left: 80%; }

  .offset--xm-down--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--xm-down--one-twelfth {
    margin-left: 8.333%; }

  .offset--xm-down--two-twelfths {
    margin-left: 16.666%; }

  .offset--xm-down--three-twelfths {
    margin-left: 25%; }

  .offset--xm-down--four-twelfths {
    margin-left: 33.333%; }

  .offset--xm-down--five-twelfths {
    margin-left: 41.666%; }

  .offset--xm-down--six-twelfths {
    margin-left: 50%; }

  .offset--xm-down--seven-twelfths {
    margin-left: 58.333%; }

  .offset--xm-down--eight-twelfths {
    margin-left: 66.666%; }

  .offset--xm-down--nine-twelfths {
    margin-left: 75%; }

  .offset--xm-down--ten-twelfths {
    margin-left: 83.333%; }

  .offset--xm-down--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
  /* Whole */
  .offset--xm--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--xm--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--xm--one-third {
    margin-left: 33.333%; }

  .offset--xm--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--xm--one-quarter {
    margin-left: 25%; }

  .offset--xm--two-quarters {
    margin-left: 50%; }

  .offset--xm--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--xm--one-fifth {
    margin-left: 20%; }

  .offset--xm--two-fifths {
    margin-left: 40%; }

  .offset--xm--three-fifths {
    margin-left: 60%; }

  .offset--xm--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--xm--one-sixth {
    margin-left: 16.666%; }

  .offset--xm--two-sixths {
    margin-left: 33.333%; }

  .offset--xm--three-sixths {
    margin-left: 50%; }

  .offset--xm--four-sixths {
    margin-left: 66.666%; }

  .offset--xm--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--xm--one-eighth {
    margin-left: 12.5%; }

  .offset--xm--two-eighths {
    margin-left: 25%; }

  .offset--xm--three-eighths {
    margin-left: 37.5%; }

  .offset--xm--four-eighths {
    margin-left: 50%; }

  .offset--xm--five-eighths {
    margin-left: 62.5%; }

  .offset--xm--six-eighths {
    margin-left: 75%; }

  .offset--xm--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--xm--one-tenth {
    margin-left: 10%; }

  .offset--xm--two-tenths {
    margin-left: 20%; }

  .offset--xm--three-tenths {
    margin-left: 30%; }

  .offset--xm--four-tenths {
    margin-left: 40%; }

  .offset--xm--five-tenths {
    margin-left: 50%; }

  .offset--xm--six-tenths {
    margin-left: 60%; }

  .offset--xm--seven-tenths {
    margin-left: 70%; }

  .offset--xm--eight-tenths {
    margin-left: 80%; }

  .offset--xm--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--xm--one-twelfth {
    margin-left: 8.333%; }

  .offset--xm--two-twelfths {
    margin-left: 16.666%; }

  .offset--xm--three-twelfths {
    margin-left: 25%; }

  .offset--xm--four-twelfths {
    margin-left: 33.333%; }

  .offset--xm--five-twelfths {
    margin-left: 41.666%; }

  .offset--xm--six-twelfths {
    margin-left: 50%; }

  .offset--xm--seven-twelfths {
    margin-left: 58.333%; }

  .offset--xm--eight-twelfths {
    margin-left: 66.666%; }

  .offset--xm--nine-twelfths {
    margin-left: 75%; }

  .offset--xm--ten-twelfths {
    margin-left: 83.333%; }

  .offset--xm--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 480px) {
  /* Whole */
  .offset--xm-up--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--xm-up--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--xm-up--one-third {
    margin-left: 33.333%; }

  .offset--xm-up--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--xm-up--one-quarter {
    margin-left: 25%; }

  .offset--xm-up--two-quarters {
    margin-left: 50%; }

  .offset--xm-up--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--xm-up--one-fifth {
    margin-left: 20%; }

  .offset--xm-up--two-fifths {
    margin-left: 40%; }

  .offset--xm-up--three-fifths {
    margin-left: 60%; }

  .offset--xm-up--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--xm-up--one-sixth {
    margin-left: 16.666%; }

  .offset--xm-up--two-sixths {
    margin-left: 33.333%; }

  .offset--xm-up--three-sixths {
    margin-left: 50%; }

  .offset--xm-up--four-sixths {
    margin-left: 66.666%; }

  .offset--xm-up--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--xm-up--one-eighth {
    margin-left: 12.5%; }

  .offset--xm-up--two-eighths {
    margin-left: 25%; }

  .offset--xm-up--three-eighths {
    margin-left: 37.5%; }

  .offset--xm-up--four-eighths {
    margin-left: 50%; }

  .offset--xm-up--five-eighths {
    margin-left: 62.5%; }

  .offset--xm-up--six-eighths {
    margin-left: 75%; }

  .offset--xm-up--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--xm-up--one-tenth {
    margin-left: 10%; }

  .offset--xm-up--two-tenths {
    margin-left: 20%; }

  .offset--xm-up--three-tenths {
    margin-left: 30%; }

  .offset--xm-up--four-tenths {
    margin-left: 40%; }

  .offset--xm-up--five-tenths {
    margin-left: 50%; }

  .offset--xm-up--six-tenths {
    margin-left: 60%; }

  .offset--xm-up--seven-tenths {
    margin-left: 70%; }

  .offset--xm-up--eight-tenths {
    margin-left: 80%; }

  .offset--xm-up--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--xm-up--one-twelfth {
    margin-left: 8.333%; }

  .offset--xm-up--two-twelfths {
    margin-left: 16.666%; }

  .offset--xm-up--three-twelfths {
    margin-left: 25%; }

  .offset--xm-up--four-twelfths {
    margin-left: 33.333%; }

  .offset--xm-up--five-twelfths {
    margin-left: 41.666%; }

  .offset--xm-up--six-twelfths {
    margin-left: 50%; }

  .offset--xm-up--seven-twelfths {
    margin-left: 58.333%; }

  .offset--xm-up--eight-twelfths {
    margin-left: 66.666%; }

  .offset--xm-up--nine-twelfths {
    margin-left: 75%; }

  .offset--xm-up--ten-twelfths {
    margin-left: 83.333%; }

  .offset--xm-up--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (max-width: 767px) {
  /* Whole */
  .offset--sm-down--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--sm-down--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--sm-down--one-third {
    margin-left: 33.333%; }

  .offset--sm-down--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--sm-down--one-quarter {
    margin-left: 25%; }

  .offset--sm-down--two-quarters {
    margin-left: 50%; }

  .offset--sm-down--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--sm-down--one-fifth {
    margin-left: 20%; }

  .offset--sm-down--two-fifths {
    margin-left: 40%; }

  .offset--sm-down--three-fifths {
    margin-left: 60%; }

  .offset--sm-down--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--sm-down--one-sixth {
    margin-left: 16.666%; }

  .offset--sm-down--two-sixths {
    margin-left: 33.333%; }

  .offset--sm-down--three-sixths {
    margin-left: 50%; }

  .offset--sm-down--four-sixths {
    margin-left: 66.666%; }

  .offset--sm-down--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--sm-down--one-eighth {
    margin-left: 12.5%; }

  .offset--sm-down--two-eighths {
    margin-left: 25%; }

  .offset--sm-down--three-eighths {
    margin-left: 37.5%; }

  .offset--sm-down--four-eighths {
    margin-left: 50%; }

  .offset--sm-down--five-eighths {
    margin-left: 62.5%; }

  .offset--sm-down--six-eighths {
    margin-left: 75%; }

  .offset--sm-down--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--sm-down--one-tenth {
    margin-left: 10%; }

  .offset--sm-down--two-tenths {
    margin-left: 20%; }

  .offset--sm-down--three-tenths {
    margin-left: 30%; }

  .offset--sm-down--four-tenths {
    margin-left: 40%; }

  .offset--sm-down--five-tenths {
    margin-left: 50%; }

  .offset--sm-down--six-tenths {
    margin-left: 60%; }

  .offset--sm-down--seven-tenths {
    margin-left: 70%; }

  .offset--sm-down--eight-tenths {
    margin-left: 80%; }

  .offset--sm-down--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--sm-down--one-twelfth {
    margin-left: 8.333%; }

  .offset--sm-down--two-twelfths {
    margin-left: 16.666%; }

  .offset--sm-down--three-twelfths {
    margin-left: 25%; }

  .offset--sm-down--four-twelfths {
    margin-left: 33.333%; }

  .offset--sm-down--five-twelfths {
    margin-left: 41.666%; }

  .offset--sm-down--six-twelfths {
    margin-left: 50%; }

  .offset--sm-down--seven-twelfths {
    margin-left: 58.333%; }

  .offset--sm-down--eight-twelfths {
    margin-left: 66.666%; }

  .offset--sm-down--nine-twelfths {
    margin-left: 75%; }

  .offset--sm-down--ten-twelfths {
    margin-left: 83.333%; }

  .offset--sm-down--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Whole */
  .offset--sm--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--sm--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--sm--one-third {
    margin-left: 33.333%; }

  .offset--sm--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--sm--one-quarter {
    margin-left: 25%; }

  .offset--sm--two-quarters {
    margin-left: 50%; }

  .offset--sm--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--sm--one-fifth {
    margin-left: 20%; }

  .offset--sm--two-fifths {
    margin-left: 40%; }

  .offset--sm--three-fifths {
    margin-left: 60%; }

  .offset--sm--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--sm--one-sixth {
    margin-left: 16.666%; }

  .offset--sm--two-sixths {
    margin-left: 33.333%; }

  .offset--sm--three-sixths {
    margin-left: 50%; }

  .offset--sm--four-sixths {
    margin-left: 66.666%; }

  .offset--sm--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--sm--one-eighth {
    margin-left: 12.5%; }

  .offset--sm--two-eighths {
    margin-left: 25%; }

  .offset--sm--three-eighths {
    margin-left: 37.5%; }

  .offset--sm--four-eighths {
    margin-left: 50%; }

  .offset--sm--five-eighths {
    margin-left: 62.5%; }

  .offset--sm--six-eighths {
    margin-left: 75%; }

  .offset--sm--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--sm--one-tenth {
    margin-left: 10%; }

  .offset--sm--two-tenths {
    margin-left: 20%; }

  .offset--sm--three-tenths {
    margin-left: 30%; }

  .offset--sm--four-tenths {
    margin-left: 40%; }

  .offset--sm--five-tenths {
    margin-left: 50%; }

  .offset--sm--six-tenths {
    margin-left: 60%; }

  .offset--sm--seven-tenths {
    margin-left: 70%; }

  .offset--sm--eight-tenths {
    margin-left: 80%; }

  .offset--sm--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--sm--one-twelfth {
    margin-left: 8.333%; }

  .offset--sm--two-twelfths {
    margin-left: 16.666%; }

  .offset--sm--three-twelfths {
    margin-left: 25%; }

  .offset--sm--four-twelfths {
    margin-left: 33.333%; }

  .offset--sm--five-twelfths {
    margin-left: 41.666%; }

  .offset--sm--six-twelfths {
    margin-left: 50%; }

  .offset--sm--seven-twelfths {
    margin-left: 58.333%; }

  .offset--sm--eight-twelfths {
    margin-left: 66.666%; }

  .offset--sm--nine-twelfths {
    margin-left: 75%; }

  .offset--sm--ten-twelfths {
    margin-left: 83.333%; }

  .offset--sm--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 768px) {
  /* Whole */
  .offset--sm-up--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--sm-up--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--sm-up--one-third {
    margin-left: 33.333%; }

  .offset--sm-up--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--sm-up--one-quarter {
    margin-left: 25%; }

  .offset--sm-up--two-quarters {
    margin-left: 50%; }

  .offset--sm-up--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--sm-up--one-fifth {
    margin-left: 20%; }

  .offset--sm-up--two-fifths {
    margin-left: 40%; }

  .offset--sm-up--three-fifths {
    margin-left: 60%; }

  .offset--sm-up--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--sm-up--one-sixth {
    margin-left: 16.666%; }

  .offset--sm-up--two-sixths {
    margin-left: 33.333%; }

  .offset--sm-up--three-sixths {
    margin-left: 50%; }

  .offset--sm-up--four-sixths {
    margin-left: 66.666%; }

  .offset--sm-up--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--sm-up--one-eighth {
    margin-left: 12.5%; }

  .offset--sm-up--two-eighths {
    margin-left: 25%; }

  .offset--sm-up--three-eighths {
    margin-left: 37.5%; }

  .offset--sm-up--four-eighths {
    margin-left: 50%; }

  .offset--sm-up--five-eighths {
    margin-left: 62.5%; }

  .offset--sm-up--six-eighths {
    margin-left: 75%; }

  .offset--sm-up--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--sm-up--one-tenth {
    margin-left: 10%; }

  .offset--sm-up--two-tenths {
    margin-left: 20%; }

  .offset--sm-up--three-tenths {
    margin-left: 30%; }

  .offset--sm-up--four-tenths {
    margin-left: 40%; }

  .offset--sm-up--five-tenths {
    margin-left: 50%; }

  .offset--sm-up--six-tenths {
    margin-left: 60%; }

  .offset--sm-up--seven-tenths {
    margin-left: 70%; }

  .offset--sm-up--eight-tenths {
    margin-left: 80%; }

  .offset--sm-up--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--sm-up--one-twelfth {
    margin-left: 8.333%; }

  .offset--sm-up--two-twelfths {
    margin-left: 16.666%; }

  .offset--sm-up--three-twelfths {
    margin-left: 25%; }

  .offset--sm-up--four-twelfths {
    margin-left: 33.333%; }

  .offset--sm-up--five-twelfths {
    margin-left: 41.666%; }

  .offset--sm-up--six-twelfths {
    margin-left: 50%; }

  .offset--sm-up--seven-twelfths {
    margin-left: 58.333%; }

  .offset--sm-up--eight-twelfths {
    margin-left: 66.666%; }

  .offset--sm-up--nine-twelfths {
    margin-left: 75%; }

  .offset--sm-up--ten-twelfths {
    margin-left: 83.333%; }

  .offset--sm-up--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (max-width: 991px) {
  /* Whole */
  .offset--md-down--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--md-down--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--md-down--one-third {
    margin-left: 33.333%; }

  .offset--md-down--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--md-down--one-quarter {
    margin-left: 25%; }

  .offset--md-down--two-quarters {
    margin-left: 50%; }

  .offset--md-down--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--md-down--one-fifth {
    margin-left: 20%; }

  .offset--md-down--two-fifths {
    margin-left: 40%; }

  .offset--md-down--three-fifths {
    margin-left: 60%; }

  .offset--md-down--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--md-down--one-sixth {
    margin-left: 16.666%; }

  .offset--md-down--two-sixths {
    margin-left: 33.333%; }

  .offset--md-down--three-sixths {
    margin-left: 50%; }

  .offset--md-down--four-sixths {
    margin-left: 66.666%; }

  .offset--md-down--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--md-down--one-eighth {
    margin-left: 12.5%; }

  .offset--md-down--two-eighths {
    margin-left: 25%; }

  .offset--md-down--three-eighths {
    margin-left: 37.5%; }

  .offset--md-down--four-eighths {
    margin-left: 50%; }

  .offset--md-down--five-eighths {
    margin-left: 62.5%; }

  .offset--md-down--six-eighths {
    margin-left: 75%; }

  .offset--md-down--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--md-down--one-tenth {
    margin-left: 10%; }

  .offset--md-down--two-tenths {
    margin-left: 20%; }

  .offset--md-down--three-tenths {
    margin-left: 30%; }

  .offset--md-down--four-tenths {
    margin-left: 40%; }

  .offset--md-down--five-tenths {
    margin-left: 50%; }

  .offset--md-down--six-tenths {
    margin-left: 60%; }

  .offset--md-down--seven-tenths {
    margin-left: 70%; }

  .offset--md-down--eight-tenths {
    margin-left: 80%; }

  .offset--md-down--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--md-down--one-twelfth {
    margin-left: 8.333%; }

  .offset--md-down--two-twelfths {
    margin-left: 16.666%; }

  .offset--md-down--three-twelfths {
    margin-left: 25%; }

  .offset--md-down--four-twelfths {
    margin-left: 33.333%; }

  .offset--md-down--five-twelfths {
    margin-left: 41.666%; }

  .offset--md-down--six-twelfths {
    margin-left: 50%; }

  .offset--md-down--seven-twelfths {
    margin-left: 58.333%; }

  .offset--md-down--eight-twelfths {
    margin-left: 66.666%; }

  .offset--md-down--nine-twelfths {
    margin-left: 75%; }

  .offset--md-down--ten-twelfths {
    margin-left: 83.333%; }

  .offset--md-down--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Whole */
  .offset--md--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--md--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--md--one-third {
    margin-left: 33.333%; }

  .offset--md--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--md--one-quarter {
    margin-left: 25%; }

  .offset--md--two-quarters {
    margin-left: 50%; }

  .offset--md--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--md--one-fifth {
    margin-left: 20%; }

  .offset--md--two-fifths {
    margin-left: 40%; }

  .offset--md--three-fifths {
    margin-left: 60%; }

  .offset--md--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--md--one-sixth {
    margin-left: 16.666%; }

  .offset--md--two-sixths {
    margin-left: 33.333%; }

  .offset--md--three-sixths {
    margin-left: 50%; }

  .offset--md--four-sixths {
    margin-left: 66.666%; }

  .offset--md--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--md--one-eighth {
    margin-left: 12.5%; }

  .offset--md--two-eighths {
    margin-left: 25%; }

  .offset--md--three-eighths {
    margin-left: 37.5%; }

  .offset--md--four-eighths {
    margin-left: 50%; }

  .offset--md--five-eighths {
    margin-left: 62.5%; }

  .offset--md--six-eighths {
    margin-left: 75%; }

  .offset--md--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--md--one-tenth {
    margin-left: 10%; }

  .offset--md--two-tenths {
    margin-left: 20%; }

  .offset--md--three-tenths {
    margin-left: 30%; }

  .offset--md--four-tenths {
    margin-left: 40%; }

  .offset--md--five-tenths {
    margin-left: 50%; }

  .offset--md--six-tenths {
    margin-left: 60%; }

  .offset--md--seven-tenths {
    margin-left: 70%; }

  .offset--md--eight-tenths {
    margin-left: 80%; }

  .offset--md--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--md--one-twelfth {
    margin-left: 8.333%; }

  .offset--md--two-twelfths {
    margin-left: 16.666%; }

  .offset--md--three-twelfths {
    margin-left: 25%; }

  .offset--md--four-twelfths {
    margin-left: 33.333%; }

  .offset--md--five-twelfths {
    margin-left: 41.666%; }

  .offset--md--six-twelfths {
    margin-left: 50%; }

  .offset--md--seven-twelfths {
    margin-left: 58.333%; }

  .offset--md--eight-twelfths {
    margin-left: 66.666%; }

  .offset--md--nine-twelfths {
    margin-left: 75%; }

  .offset--md--ten-twelfths {
    margin-left: 83.333%; }

  .offset--md--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 992px) {
  /* Whole */
  .offset--md-up--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--md-up--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--md-up--one-third {
    margin-left: 33.333%; }

  .offset--md-up--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--md-up--one-quarter {
    margin-left: 25%; }

  .offset--md-up--two-quarters {
    margin-left: 50%; }

  .offset--md-up--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--md-up--one-fifth {
    margin-left: 20%; }

  .offset--md-up--two-fifths {
    margin-left: 40%; }

  .offset--md-up--three-fifths {
    margin-left: 60%; }

  .offset--md-up--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--md-up--one-sixth {
    margin-left: 16.666%; }

  .offset--md-up--two-sixths {
    margin-left: 33.333%; }

  .offset--md-up--three-sixths {
    margin-left: 50%; }

  .offset--md-up--four-sixths {
    margin-left: 66.666%; }

  .offset--md-up--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--md-up--one-eighth {
    margin-left: 12.5%; }

  .offset--md-up--two-eighths {
    margin-left: 25%; }

  .offset--md-up--three-eighths {
    margin-left: 37.5%; }

  .offset--md-up--four-eighths {
    margin-left: 50%; }

  .offset--md-up--five-eighths {
    margin-left: 62.5%; }

  .offset--md-up--six-eighths {
    margin-left: 75%; }

  .offset--md-up--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--md-up--one-tenth {
    margin-left: 10%; }

  .offset--md-up--two-tenths {
    margin-left: 20%; }

  .offset--md-up--three-tenths {
    margin-left: 30%; }

  .offset--md-up--four-tenths {
    margin-left: 40%; }

  .offset--md-up--five-tenths {
    margin-left: 50%; }

  .offset--md-up--six-tenths {
    margin-left: 60%; }

  .offset--md-up--seven-tenths {
    margin-left: 70%; }

  .offset--md-up--eight-tenths {
    margin-left: 80%; }

  .offset--md-up--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--md-up--one-twelfth {
    margin-left: 8.333%; }

  .offset--md-up--two-twelfths {
    margin-left: 16.666%; }

  .offset--md-up--three-twelfths {
    margin-left: 25%; }

  .offset--md-up--four-twelfths {
    margin-left: 33.333%; }

  .offset--md-up--five-twelfths {
    margin-left: 41.666%; }

  .offset--md-up--six-twelfths {
    margin-left: 50%; }

  .offset--md-up--seven-twelfths {
    margin-left: 58.333%; }

  .offset--md-up--eight-twelfths {
    margin-left: 66.666%; }

  .offset--md-up--nine-twelfths {
    margin-left: 75%; }

  .offset--md-up--ten-twelfths {
    margin-left: 83.333%; }

  .offset--md-up--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (max-width: 1199px) {
  /* Whole */
  .offset--lg-down--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--lg-down--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--lg-down--one-third {
    margin-left: 33.333%; }

  .offset--lg-down--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--lg-down--one-quarter {
    margin-left: 25%; }

  .offset--lg-down--two-quarters {
    margin-left: 50%; }

  .offset--lg-down--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--lg-down--one-fifth {
    margin-left: 20%; }

  .offset--lg-down--two-fifths {
    margin-left: 40%; }

  .offset--lg-down--three-fifths {
    margin-left: 60%; }

  .offset--lg-down--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--lg-down--one-sixth {
    margin-left: 16.666%; }

  .offset--lg-down--two-sixths {
    margin-left: 33.333%; }

  .offset--lg-down--three-sixths {
    margin-left: 50%; }

  .offset--lg-down--four-sixths {
    margin-left: 66.666%; }

  .offset--lg-down--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--lg-down--one-eighth {
    margin-left: 12.5%; }

  .offset--lg-down--two-eighths {
    margin-left: 25%; }

  .offset--lg-down--three-eighths {
    margin-left: 37.5%; }

  .offset--lg-down--four-eighths {
    margin-left: 50%; }

  .offset--lg-down--five-eighths {
    margin-left: 62.5%; }

  .offset--lg-down--six-eighths {
    margin-left: 75%; }

  .offset--lg-down--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--lg-down--one-tenth {
    margin-left: 10%; }

  .offset--lg-down--two-tenths {
    margin-left: 20%; }

  .offset--lg-down--three-tenths {
    margin-left: 30%; }

  .offset--lg-down--four-tenths {
    margin-left: 40%; }

  .offset--lg-down--five-tenths {
    margin-left: 50%; }

  .offset--lg-down--six-tenths {
    margin-left: 60%; }

  .offset--lg-down--seven-tenths {
    margin-left: 70%; }

  .offset--lg-down--eight-tenths {
    margin-left: 80%; }

  .offset--lg-down--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--lg-down--one-twelfth {
    margin-left: 8.333%; }

  .offset--lg-down--two-twelfths {
    margin-left: 16.666%; }

  .offset--lg-down--three-twelfths {
    margin-left: 25%; }

  .offset--lg-down--four-twelfths {
    margin-left: 33.333%; }

  .offset--lg-down--five-twelfths {
    margin-left: 41.666%; }

  .offset--lg-down--six-twelfths {
    margin-left: 50%; }

  .offset--lg-down--seven-twelfths {
    margin-left: 58.333%; }

  .offset--lg-down--eight-twelfths {
    margin-left: 66.666%; }

  .offset--lg-down--nine-twelfths {
    margin-left: 75%; }

  .offset--lg-down--ten-twelfths {
    margin-left: 83.333%; }

  .offset--lg-down--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 1200px) {
  /* Whole */
  .offset--lg--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--lg--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--lg--one-third {
    margin-left: 33.333%; }

  .offset--lg--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--lg--one-quarter {
    margin-left: 25%; }

  .offset--lg--two-quarters {
    margin-left: 50%; }

  .offset--lg--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--lg--one-fifth {
    margin-left: 20%; }

  .offset--lg--two-fifths {
    margin-left: 40%; }

  .offset--lg--three-fifths {
    margin-left: 60%; }

  .offset--lg--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--lg--one-sixth {
    margin-left: 16.666%; }

  .offset--lg--two-sixths {
    margin-left: 33.333%; }

  .offset--lg--three-sixths {
    margin-left: 50%; }

  .offset--lg--four-sixths {
    margin-left: 66.666%; }

  .offset--lg--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--lg--one-eighth {
    margin-left: 12.5%; }

  .offset--lg--two-eighths {
    margin-left: 25%; }

  .offset--lg--three-eighths {
    margin-left: 37.5%; }

  .offset--lg--four-eighths {
    margin-left: 50%; }

  .offset--lg--five-eighths {
    margin-left: 62.5%; }

  .offset--lg--six-eighths {
    margin-left: 75%; }

  .offset--lg--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--lg--one-tenth {
    margin-left: 10%; }

  .offset--lg--two-tenths {
    margin-left: 20%; }

  .offset--lg--three-tenths {
    margin-left: 30%; }

  .offset--lg--four-tenths {
    margin-left: 40%; }

  .offset--lg--five-tenths {
    margin-left: 50%; }

  .offset--lg--six-tenths {
    margin-left: 60%; }

  .offset--lg--seven-tenths {
    margin-left: 70%; }

  .offset--lg--eight-tenths {
    margin-left: 80%; }

  .offset--lg--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--lg--one-twelfth {
    margin-left: 8.333%; }

  .offset--lg--two-twelfths {
    margin-left: 16.666%; }

  .offset--lg--three-twelfths {
    margin-left: 25%; }

  .offset--lg--four-twelfths {
    margin-left: 33.333%; }

  .offset--lg--five-twelfths {
    margin-left: 41.666%; }

  .offset--lg--six-twelfths {
    margin-left: 50%; }

  .offset--lg--seven-twelfths {
    margin-left: 58.333%; }

  .offset--lg--eight-twelfths {
    margin-left: 66.666%; }

  .offset--lg--nine-twelfths {
    margin-left: 75%; }

  .offset--lg--ten-twelfths {
    margin-left: 83.333%; }

  .offset--lg--eleven-twelfths {
    margin-left: 91.666%; } }
@media only screen and (min-width: 1400px) {
  /* Whole */
  .offset--xl--one-whole {
    margin-left: 100%; }

  /* Halves */
  .offset--xl--one-half {
    margin-left: 50%; }

  /* Thirds */
  .offset--xl--one-third {
    margin-left: 33.333%; }

  .offset--xl--two-thirds {
    margin-left: 66.666%; }

  /* Quarters */
  .offset--xl--one-quarter {
    margin-left: 25%; }

  .offset--xl--two-quarters {
    margin-left: 50%; }

  .offset--xl--three-quarters {
    margin-left: 75%; }

  /* Fifths */
  .offset--xl--one-fifth {
    margin-left: 20%; }

  .offset--xl--two-fifths {
    margin-left: 40%; }

  .offset--xl--three-fifths {
    margin-left: 60%; }

  .offset--xl--four-fifths {
    margin-left: 80%; }

  /* Sixths */
  .offset--xl--one-sixth {
    margin-left: 16.666%; }

  .offset--xl--two-sixths {
    margin-left: 33.333%; }

  .offset--xl--three-sixths {
    margin-left: 50%; }

  .offset--xl--four-sixths {
    margin-left: 66.666%; }

  .offset--xl--five-sixths {
    margin-left: 83.333%; }

  /* Eighths */
  .offset--xl--one-eighth {
    margin-left: 12.5%; }

  .offset--xl--two-eighths {
    margin-left: 25%; }

  .offset--xl--three-eighths {
    margin-left: 37.5%; }

  .offset--xl--four-eighths {
    margin-left: 50%; }

  .offset--xl--five-eighths {
    margin-left: 62.5%; }

  .offset--xl--six-eighths {
    margin-left: 75%; }

  .offset--xl--seven-eighths {
    margin-left: 87.5%; }

  /* Tenths */
  .offset--xl--one-tenth {
    margin-left: 10%; }

  .offset--xl--two-tenths {
    margin-left: 20%; }

  .offset--xl--three-tenths {
    margin-left: 30%; }

  .offset--xl--four-tenths {
    margin-left: 40%; }

  .offset--xl--five-tenths {
    margin-left: 50%; }

  .offset--xl--six-tenths {
    margin-left: 60%; }

  .offset--xl--seven-tenths {
    margin-left: 70%; }

  .offset--xl--eight-tenths {
    margin-left: 80%; }

  .offset--xl--nine-tenths {
    margin-left: 90%; }

  /* Twelfths */
  .offset--xl--one-twelfth {
    margin-left: 8.333%; }

  .offset--xl--two-twelfths {
    margin-left: 16.666%; }

  .offset--xl--three-twelfths {
    margin-left: 25%; }

  .offset--xl--four-twelfths {
    margin-left: 33.333%; }

  .offset--xl--five-twelfths {
    margin-left: 41.666%; }

  .offset--xl--six-twelfths {
    margin-left: 50%; }

  .offset--xl--seven-twelfths {
    margin-left: 58.333%; }

  .offset--xl--eight-twelfths {
    margin-left: 66.666%; }

  .offset--xl--nine-twelfths {
    margin-left: 75%; }

  .offset--xl--ten-twelfths {
    margin-left: 83.333%; }

  .offset--xl--eleven-twelfths {
    margin-left: 91.666%; } }
/*============================================================================
      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: 320px) and (max-width: 479px) {
  /* Whole */
  .push--xs--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--xm--three-eighths {
    left: 37.5%; }

  .push--xm--four-eighths {
    left: 50%; }

  .push--xm--five-eighths {
    left: 62.5%; }

  .push--xm--six-eighths {
    left: 75%; }

  .push--xm--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--xm--one-tenth {
    left: 10%; }

  .push--xm--two-tenths {
    left: 20%; }

  .push--xm--three-tenths {
    left: 30%; }

  .push--xm--four-tenths {
    left: 40%; }

  .push--xm--five-tenths {
    left: 50%; }

  .push--xm--six-tenths {
    left: 60%; }

  .push--xm--seven-tenths {
    left: 70%; }

  .push--xm--eight-tenths {
    left: 80%; }

  .push--xm--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--xm--one-twelfth {
    left: 8.333%; }

  .push--xm--two-twelfths {
    left: 16.666%; }

  .push--xm--three-twelfths {
    left: 25%; }

  .push--xm--four-twelfths {
    left: 33.333%; }

  .push--xm--five-twelfths {
    left: 41.666%; }

  .push--xm--six-twelfths {
    left: 50%; }

  .push--xm--seven-twelfths {
    left: 58.333%; }

  .push--xm--eight-twelfths {
    left: 66.666%; }

  .push--xm--nine-twelfths {
    left: 75%; }

  .push--xm--ten-twelfths {
    left: 83.333%; }

  .push--xm--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 480px) {
  /* Whole */
  .push--xm-up--one-whole {
    left: 100%; }

  /* Halves */
  .push--xm-up--one-half {
    left: 50%; }

  /* Thirds */
  .push--xm-up--one-third {
    left: 33.333%; }

  .push--xm-up--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--xm-up--one-quarter {
    left: 25%; }

  .push--xm-up--two-quarters {
    left: 50%; }

  .push--xm-up--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--xm-up--one-fifth {
    left: 20%; }

  .push--xm-up--two-fifths {
    left: 40%; }

  .push--xm-up--three-fifths {
    left: 60%; }

  .push--xm-up--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--xm-up--one-sixth {
    left: 16.666%; }

  .push--xm-up--two-sixths {
    left: 33.333%; }

  .push--xm-up--three-sixths {
    left: 50%; }

  .push--xm-up--four-sixths {
    left: 66.666%; }

  .push--xm-up--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--xm-up--one-eighth {
    left: 12.5%; }

  .push--xm-up--two-eighths {
    left: 25%; }

  .push--xm-up--three-eighths {
    left: 37.5%; }

  .push--xm-up--four-eighths {
    left: 50%; }

  .push--xm-up--five-eighths {
    left: 62.5%; }

  .push--xm-up--six-eighths {
    left: 75%; }

  .push--xm-up--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--xm-up--one-tenth {
    left: 10%; }

  .push--xm-up--two-tenths {
    left: 20%; }

  .push--xm-up--three-tenths {
    left: 30%; }

  .push--xm-up--four-tenths {
    left: 40%; }

  .push--xm-up--five-tenths {
    left: 50%; }

  .push--xm-up--six-tenths {
    left: 60%; }

  .push--xm-up--seven-tenths {
    left: 70%; }

  .push--xm-up--eight-tenths {
    left: 80%; }

  .push--xm-up--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--xm-up--one-twelfth {
    left: 8.333%; }

  .push--xm-up--two-twelfths {
    left: 16.666%; }

  .push--xm-up--three-twelfths {
    left: 25%; }

  .push--xm-up--four-twelfths {
    left: 33.333%; }

  .push--xm-up--five-twelfths {
    left: 41.666%; }

  .push--xm-up--six-twelfths {
    left: 50%; }

  .push--xm-up--seven-twelfths {
    left: 58.333%; }

  .push--xm-up--eight-twelfths {
    left: 66.666%; }

  .push--xm-up--nine-twelfths {
    left: 75%; }

  .push--xm-up--ten-twelfths {
    left: 83.333%; }

  .push--xm-up--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 767px) {
  /* Whole */
  .push--sm-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--sm-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--sm-down--one-third {
    left: 33.333%; }

  .push--sm-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--sm-down--one-quarter {
    left: 25%; }

  .push--sm-down--two-quarters {
    left: 50%; }

  .push--sm-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--sm-down--one-fifth {
    left: 20%; }

  .push--sm-down--two-fifths {
    left: 40%; }

  .push--sm-down--three-fifths {
    left: 60%; }

  .push--sm-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--sm-down--one-sixth {
    left: 16.666%; }

  .push--sm-down--two-sixths {
    left: 33.333%; }

  .push--sm-down--three-sixths {
    left: 50%; }

  .push--sm-down--four-sixths {
    left: 66.666%; }

  .push--sm-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--sm-down--one-eighth {
    left: 12.5%; }

  .push--sm-down--two-eighths {
    left: 25%; }

  .push--sm-down--three-eighths {
    left: 37.5%; }

  .push--sm-down--four-eighths {
    left: 50%; }

  .push--sm-down--five-eighths {
    left: 62.5%; }

  .push--sm-down--six-eighths {
    left: 75%; }

  .push--sm-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--sm-down--one-tenth {
    left: 10%; }

  .push--sm-down--two-tenths {
    left: 20%; }

  .push--sm-down--three-tenths {
    left: 30%; }

  .push--sm-down--four-tenths {
    left: 40%; }

  .push--sm-down--five-tenths {
    left: 50%; }

  .push--sm-down--six-tenths {
    left: 60%; }

  .push--sm-down--seven-tenths {
    left: 70%; }

  .push--sm-down--eight-tenths {
    left: 80%; }

  .push--sm-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--sm-down--one-twelfth {
    left: 8.333%; }

  .push--sm-down--two-twelfths {
    left: 16.666%; }

  .push--sm-down--three-twelfths {
    left: 25%; }

  .push--sm-down--four-twelfths {
    left: 33.333%; }

  .push--sm-down--five-twelfths {
    left: 41.666%; }

  .push--sm-down--six-twelfths {
    left: 50%; }

  .push--sm-down--seven-twelfths {
    left: 58.333%; }

  .push--sm-down--eight-twelfths {
    left: 66.666%; }

  .push--sm-down--nine-twelfths {
    left: 75%; }

  .push--sm-down--ten-twelfths {
    left: 83.333%; }

  .push--sm-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Whole */
  .push--sm--one-whole {
    left: 100%; }

  /* Halves */
  .push--sm--one-half {
    left: 50%; }

  /* Thirds */
  .push--sm--one-third {
    left: 33.333%; }

  .push--sm--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--sm--one-quarter {
    left: 25%; }

  .push--sm--two-quarters {
    left: 50%; }

  .push--sm--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--sm--one-fifth {
    left: 20%; }

  .push--sm--two-fifths {
    left: 40%; }

  .push--sm--three-fifths {
    left: 60%; }

  .push--sm--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--sm--one-sixth {
    left: 16.666%; }

  .push--sm--two-sixths {
    left: 33.333%; }

  .push--sm--three-sixths {
    left: 50%; }

  .push--sm--four-sixths {
    left: 66.666%; }

  .push--sm--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--sm--one-eighth {
    left: 12.5%; }

  .push--sm--two-eighths {
    left: 25%; }

  .push--sm--three-eighths {
    left: 37.5%; }

  .push--sm--four-eighths {
    left: 50%; }

  .push--sm--five-eighths {
    left: 62.5%; }

  .push--sm--six-eighths {
    left: 75%; }

  .push--sm--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--sm--one-tenth {
    left: 10%; }

  .push--sm--two-tenths {
    left: 20%; }

  .push--sm--three-tenths {
    left: 30%; }

  .push--sm--four-tenths {
    left: 40%; }

  .push--sm--five-tenths {
    left: 50%; }

  .push--sm--six-tenths {
    left: 60%; }

  .push--sm--seven-tenths {
    left: 70%; }

  .push--sm--eight-tenths {
    left: 80%; }

  .push--sm--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--sm--one-twelfth {
    left: 8.333%; }

  .push--sm--two-twelfths {
    left: 16.666%; }

  .push--sm--three-twelfths {
    left: 25%; }

  .push--sm--four-twelfths {
    left: 33.333%; }

  .push--sm--five-twelfths {
    left: 41.666%; }

  .push--sm--six-twelfths {
    left: 50%; }

  .push--sm--seven-twelfths {
    left: 58.333%; }

  .push--sm--eight-twelfths {
    left: 66.666%; }

  .push--sm--nine-twelfths {
    left: 75%; }

  .push--sm--ten-twelfths {
    left: 83.333%; }

  .push--sm--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 768px) {
  /* Whole */
  .push--sm-up--one-whole {
    left: 100%; }

  /* Halves */
  .push--sm-up--one-half {
    left: 50%; }

  /* Thirds */
  .push--sm-up--one-third {
    left: 33.333%; }

  .push--sm-up--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--sm-up--one-quarter {
    left: 25%; }

  .push--sm-up--two-quarters {
    left: 50%; }

  .push--sm-up--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--sm-up--one-fifth {
    left: 20%; }

  .push--sm-up--two-fifths {
    left: 40%; }

  .push--sm-up--three-fifths {
    left: 60%; }

  .push--sm-up--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--sm-up--one-sixth {
    left: 16.666%; }

  .push--sm-up--two-sixths {
    left: 33.333%; }

  .push--sm-up--three-sixths {
    left: 50%; }

  .push--sm-up--four-sixths {
    left: 66.666%; }

  .push--sm-up--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--sm-up--one-eighth {
    left: 12.5%; }

  .push--sm-up--two-eighths {
    left: 25%; }

  .push--sm-up--three-eighths {
    left: 37.5%; }

  .push--sm-up--four-eighths {
    left: 50%; }

  .push--sm-up--five-eighths {
    left: 62.5%; }

  .push--sm-up--six-eighths {
    left: 75%; }

  .push--sm-up--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--sm-up--one-tenth {
    left: 10%; }

  .push--sm-up--two-tenths {
    left: 20%; }

  .push--sm-up--three-tenths {
    left: 30%; }

  .push--sm-up--four-tenths {
    left: 40%; }

  .push--sm-up--five-tenths {
    left: 50%; }

  .push--sm-up--six-tenths {
    left: 60%; }

  .push--sm-up--seven-tenths {
    left: 70%; }

  .push--sm-up--eight-tenths {
    left: 80%; }

  .push--sm-up--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--sm-up--one-twelfth {
    left: 8.333%; }

  .push--sm-up--two-twelfths {
    left: 16.666%; }

  .push--sm-up--three-twelfths {
    left: 25%; }

  .push--sm-up--four-twelfths {
    left: 33.333%; }

  .push--sm-up--five-twelfths {
    left: 41.666%; }

  .push--sm-up--six-twelfths {
    left: 50%; }

  .push--sm-up--seven-twelfths {
    left: 58.333%; }

  .push--sm-up--eight-twelfths {
    left: 66.666%; }

  .push--sm-up--nine-twelfths {
    left: 75%; }

  .push--sm-up--ten-twelfths {
    left: 83.333%; }

  .push--sm-up--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 991px) {
  /* Whole */
  .push--md-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--md-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--md-down--one-third {
    left: 33.333%; }

  .push--md-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--md-down--one-quarter {
    left: 25%; }

  .push--md-down--two-quarters {
    left: 50%; }

  .push--md-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--md-down--one-fifth {
    left: 20%; }

  .push--md-down--two-fifths {
    left: 40%; }

  .push--md-down--three-fifths {
    left: 60%; }

  .push--md-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--md-down--one-sixth {
    left: 16.666%; }

  .push--md-down--two-sixths {
    left: 33.333%; }

  .push--md-down--three-sixths {
    left: 50%; }

  .push--md-down--four-sixths {
    left: 66.666%; }

  .push--md-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--md-down--one-eighth {
    left: 12.5%; }

  .push--md-down--two-eighths {
    left: 25%; }

  .push--md-down--three-eighths {
    left: 37.5%; }

  .push--md-down--four-eighths {
    left: 50%; }

  .push--md-down--five-eighths {
    left: 62.5%; }

  .push--md-down--six-eighths {
    left: 75%; }

  .push--md-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--md-down--one-tenth {
    left: 10%; }

  .push--md-down--two-tenths {
    left: 20%; }

  .push--md-down--three-tenths {
    left: 30%; }

  .push--md-down--four-tenths {
    left: 40%; }

  .push--md-down--five-tenths {
    left: 50%; }

  .push--md-down--six-tenths {
    left: 60%; }

  .push--md-down--seven-tenths {
    left: 70%; }

  .push--md-down--eight-tenths {
    left: 80%; }

  .push--md-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--md-down--one-twelfth {
    left: 8.333%; }

  .push--md-down--two-twelfths {
    left: 16.666%; }

  .push--md-down--three-twelfths {
    left: 25%; }

  .push--md-down--four-twelfths {
    left: 33.333%; }

  .push--md-down--five-twelfths {
    left: 41.666%; }

  .push--md-down--six-twelfths {
    left: 50%; }

  .push--md-down--seven-twelfths {
    left: 58.333%; }

  .push--md-down--eight-twelfths {
    left: 66.666%; }

  .push--md-down--nine-twelfths {
    left: 75%; }

  .push--md-down--ten-twelfths {
    left: 83.333%; }

  .push--md-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Whole */
  .push--md--one-whole {
    left: 100%; }

  /* Halves */
  .push--md--one-half {
    left: 50%; }

  /* Thirds */
  .push--md--one-third {
    left: 33.333%; }

  .push--md--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--md--one-quarter {
    left: 25%; }

  .push--md--two-quarters {
    left: 50%; }

  .push--md--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--md--one-fifth {
    left: 20%; }

  .push--md--two-fifths {
    left: 40%; }

  .push--md--three-fifths {
    left: 60%; }

  .push--md--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--md--one-sixth {
    left: 16.666%; }

  .push--md--two-sixths {
    left: 33.333%; }

  .push--md--three-sixths {
    left: 50%; }

  .push--md--four-sixths {
    left: 66.666%; }

  .push--md--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--md--one-eighth {
    left: 12.5%; }

  .push--md--two-eighths {
    left: 25%; }

  .push--md--three-eighths {
    left: 37.5%; }

  .push--md--four-eighths {
    left: 50%; }

  .push--md--five-eighths {
    left: 62.5%; }

  .push--md--six-eighths {
    left: 75%; }

  .push--md--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--md--one-tenth {
    left: 10%; }

  .push--md--two-tenths {
    left: 20%; }

  .push--md--three-tenths {
    left: 30%; }

  .push--md--four-tenths {
    left: 40%; }

  .push--md--five-tenths {
    left: 50%; }

  .push--md--six-tenths {
    left: 60%; }

  .push--md--seven-tenths {
    left: 70%; }

  .push--md--eight-tenths {
    left: 80%; }

  .push--md--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--md--one-twelfth {
    left: 8.333%; }

  .push--md--two-twelfths {
    left: 16.666%; }

  .push--md--three-twelfths {
    left: 25%; }

  .push--md--four-twelfths {
    left: 33.333%; }

  .push--md--five-twelfths {
    left: 41.666%; }

  .push--md--six-twelfths {
    left: 50%; }

  .push--md--seven-twelfths {
    left: 58.333%; }

  .push--md--eight-twelfths {
    left: 66.666%; }

  .push--md--nine-twelfths {
    left: 75%; }

  .push--md--ten-twelfths {
    left: 83.333%; }

  .push--md--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 992px) {
  /* Whole */
  .push--md-up--one-whole {
    left: 100%; }

  /* Halves */
  .push--md-up--one-half {
    left: 50%; }

  /* Thirds */
  .push--md-up--one-third {
    left: 33.333%; }

  .push--md-up--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--md-up--one-quarter {
    left: 25%; }

  .push--md-up--two-quarters {
    left: 50%; }

  .push--md-up--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--md-up--one-fifth {
    left: 20%; }

  .push--md-up--two-fifths {
    left: 40%; }

  .push--md-up--three-fifths {
    left: 60%; }

  .push--md-up--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--md-up--one-sixth {
    left: 16.666%; }

  .push--md-up--two-sixths {
    left: 33.333%; }

  .push--md-up--three-sixths {
    left: 50%; }

  .push--md-up--four-sixths {
    left: 66.666%; }

  .push--md-up--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--md-up--one-eighth {
    left: 12.5%; }

  .push--md-up--two-eighths {
    left: 25%; }

  .push--md-up--three-eighths {
    left: 37.5%; }

  .push--md-up--four-eighths {
    left: 50%; }

  .push--md-up--five-eighths {
    left: 62.5%; }

  .push--md-up--six-eighths {
    left: 75%; }

  .push--md-up--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--md-up--one-tenth {
    left: 10%; }

  .push--md-up--two-tenths {
    left: 20%; }

  .push--md-up--three-tenths {
    left: 30%; }

  .push--md-up--four-tenths {
    left: 40%; }

  .push--md-up--five-tenths {
    left: 50%; }

  .push--md-up--six-tenths {
    left: 60%; }

  .push--md-up--seven-tenths {
    left: 70%; }

  .push--md-up--eight-tenths {
    left: 80%; }

  .push--md-up--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--md-up--one-twelfth {
    left: 8.333%; }

  .push--md-up--two-twelfths {
    left: 16.666%; }

  .push--md-up--three-twelfths {
    left: 25%; }

  .push--md-up--four-twelfths {
    left: 33.333%; }

  .push--md-up--five-twelfths {
    left: 41.666%; }

  .push--md-up--six-twelfths {
    left: 50%; }

  .push--md-up--seven-twelfths {
    left: 58.333%; }

  .push--md-up--eight-twelfths {
    left: 66.666%; }

  .push--md-up--nine-twelfths {
    left: 75%; }

  .push--md-up--ten-twelfths {
    left: 83.333%; }

  .push--md-up--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 1199px) {
  /* Whole */
  .push--lg-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--lg-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--lg-down--one-third {
    left: 33.333%; }

  .push--lg-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--lg-down--one-quarter {
    left: 25%; }

  .push--lg-down--two-quarters {
    left: 50%; }

  .push--lg-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--lg-down--one-fifth {
    left: 20%; }

  .push--lg-down--two-fifths {
    left: 40%; }

  .push--lg-down--three-fifths {
    left: 60%; }

  .push--lg-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--lg-down--one-sixth {
    left: 16.666%; }

  .push--lg-down--two-sixths {
    left: 33.333%; }

  .push--lg-down--three-sixths {
    left: 50%; }

  .push--lg-down--four-sixths {
    left: 66.666%; }

  .push--lg-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--lg-down--one-eighth {
    left: 12.5%; }

  .push--lg-down--two-eighths {
    left: 25%; }

  .push--lg-down--three-eighths {
    left: 37.5%; }

  .push--lg-down--four-eighths {
    left: 50%; }

  .push--lg-down--five-eighths {
    left: 62.5%; }

  .push--lg-down--six-eighths {
    left: 75%; }

  .push--lg-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--lg-down--one-tenth {
    left: 10%; }

  .push--lg-down--two-tenths {
    left: 20%; }

  .push--lg-down--three-tenths {
    left: 30%; }

  .push--lg-down--four-tenths {
    left: 40%; }

  .push--lg-down--five-tenths {
    left: 50%; }

  .push--lg-down--six-tenths {
    left: 60%; }

  .push--lg-down--seven-tenths {
    left: 70%; }

  .push--lg-down--eight-tenths {
    left: 80%; }

  .push--lg-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--lg-down--one-twelfth {
    left: 8.333%; }

  .push--lg-down--two-twelfths {
    left: 16.666%; }

  .push--lg-down--three-twelfths {
    left: 25%; }

  .push--lg-down--four-twelfths {
    left: 33.333%; }

  .push--lg-down--five-twelfths {
    left: 41.666%; }

  .push--lg-down--six-twelfths {
    left: 50%; }

  .push--lg-down--seven-twelfths {
    left: 58.333%; }

  .push--lg-down--eight-twelfths {
    left: 66.666%; }

  .push--lg-down--nine-twelfths {
    left: 75%; }

  .push--lg-down--ten-twelfths {
    left: 83.333%; }

  .push--lg-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1200px) {
  /* Whole */
  .push--lg--one-whole {
    left: 100%; }

  /* Halves */
  .push--lg--one-half {
    left: 50%; }

  /* Thirds */
  .push--lg--one-third {
    left: 33.333%; }

  .push--lg--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--lg--one-quarter {
    left: 25%; }

  .push--lg--two-quarters {
    left: 50%; }

  .push--lg--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--lg--one-fifth {
    left: 20%; }

  .push--lg--two-fifths {
    left: 40%; }

  .push--lg--three-fifths {
    left: 60%; }

  .push--lg--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--lg--one-sixth {
    left: 16.666%; }

  .push--lg--two-sixths {
    left: 33.333%; }

  .push--lg--three-sixths {
    left: 50%; }

  .push--lg--four-sixths {
    left: 66.666%; }

  .push--lg--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--lg--one-eighth {
    left: 12.5%; }

  .push--lg--two-eighths {
    left: 25%; }

  .push--lg--three-eighths {
    left: 37.5%; }

  .push--lg--four-eighths {
    left: 50%; }

  .push--lg--five-eighths {
    left: 62.5%; }

  .push--lg--six-eighths {
    left: 75%; }

  .push--lg--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--lg--one-tenth {
    left: 10%; }

  .push--lg--two-tenths {
    left: 20%; }

  .push--lg--three-tenths {
    left: 30%; }

  .push--lg--four-tenths {
    left: 40%; }

  .push--lg--five-tenths {
    left: 50%; }

  .push--lg--six-tenths {
    left: 60%; }

  .push--lg--seven-tenths {
    left: 70%; }

  .push--lg--eight-tenths {
    left: 80%; }

  .push--lg--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--lg--one-twelfth {
    left: 8.333%; }

  .push--lg--two-twelfths {
    left: 16.666%; }

  .push--lg--three-twelfths {
    left: 25%; }

  .push--lg--four-twelfths {
    left: 33.333%; }

  .push--lg--five-twelfths {
    left: 41.666%; }

  .push--lg--six-twelfths {
    left: 50%; }

  .push--lg--seven-twelfths {
    left: 58.333%; }

  .push--lg--eight-twelfths {
    left: 66.666%; }

  .push--lg--nine-twelfths {
    left: 75%; }

  .push--lg--ten-twelfths {
    left: 83.333%; }

  .push--lg--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1400px) {
  /* Whole */
  .push--xl--one-whole {
    left: 100%; }

  /* Halves */
  .push--xl--one-half {
    left: 50%; }

  /* Thirds */
  .push--xl--one-third {
    left: 33.333%; }

  .push--xl--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--xl--one-quarter {
    left: 25%; }

  .push--xl--two-quarters {
    left: 50%; }

  .push--xl--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--xl--one-fifth {
    left: 20%; }

  .push--xl--two-fifths {
    left: 40%; }

  .push--xl--three-fifths {
    left: 60%; }

  .push--xl--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--xl--one-sixth {
    left: 16.666%; }

  .push--xl--two-sixths {
    left: 33.333%; }

  .push--xl--three-sixths {
    left: 50%; }

  .push--xl--four-sixths {
    left: 66.666%; }

  .push--xl--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--xl--one-eighth {
    left: 12.5%; }

  .push--xl--two-eighths {
    left: 25%; }

  .push--xl--three-eighths {
    left: 37.5%; }

  .push--xl--four-eighths {
    left: 50%; }

  .push--xl--five-eighths {
    left: 62.5%; }

  .push--xl--six-eighths {
    left: 75%; }

  .push--xl--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--xl--one-tenth {
    left: 10%; }

  .push--xl--two-tenths {
    left: 20%; }

  .push--xl--three-tenths {
    left: 30%; }

  .push--xl--four-tenths {
    left: 40%; }

  .push--xl--five-tenths {
    left: 50%; }

  .push--xl--six-tenths {
    left: 60%; }

  .push--xl--seven-tenths {
    left: 70%; }

  .push--xl--eight-tenths {
    left: 80%; }

  .push--xl--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--xl--one-twelfth {
    left: 8.333%; }

  .push--xl--two-twelfths {
    left: 16.666%; }

  .push--xl--three-twelfths {
    left: 25%; }

  .push--xl--four-twelfths {
    left: 33.333%; }

  .push--xl--five-twelfths {
    left: 41.666%; }

  .push--xl--six-twelfths {
    left: 50%; }

  .push--xl--seven-twelfths {
    left: 58.333%; }

  .push--xl--eight-twelfths {
    left: 66.666%; }

  .push--xl--nine-twelfths {
    left: 75%; }

  .push--xl--ten-twelfths {
    left: 83.333%; }

  .push--xl--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
      PULL
        - Pull classes, to move grid items back to the left by certain amounts
    ==============================================================================*/
[class*="pull--"] {
  position: relative; }

/* Whole */
.pull--one-whole {
  right: 100%; }

/* Halves */
.pull--one-half {
  right: 50%; }

/* Thirds */
.pull--one-third {
  right: 33.333%; }

.pull--two-thirds {
  right: 66.666%; }

/* Quarters */
.pull--one-quarter {
  right: 25%; }

.pull--two-quarters {
  right: 50%; }

.pull--three-quarters {
  right: 75%; }

/* Fifths */
.pull--one-fifth {
  right: 20%; }

.pull--two-fifths {
  right: 40%; }

.pull--three-fifths {
  right: 60%; }

.pull--four-fifths {
  right: 80%; }

/* Sixths */
.pull--one-sixth {
  right: 16.666%; }

.pull--two-sixths {
  right: 33.333%; }

.pull--three-sixths {
  right: 50%; }

.pull--four-sixths {
  right: 66.666%; }

.pull--five-sixths {
  right: 83.333%; }

/* Eighths */
.pull--one-eighth {
  right: 12.5%; }

.pull--two-eighths {
  right: 25%; }

.pull--three-eighths {
  right: 37.5%; }

.pull--four-eighths {
  right: 50%; }

.pull--five-eighths {
  right: 62.5%; }

.pull--six-eighths {
  right: 75%; }

.pull--seven-eighths {
  right: 87.5%; }

/* Tenths */
.pull--one-tenth {
  right: 10%; }

.pull--two-tenths {
  right: 20%; }

.pull--three-tenths {
  right: 30%; }

.pull--four-tenths {
  right: 40%; }

.pull--five-tenths {
  right: 50%; }

.pull--six-tenths {
  right: 60%; }

.pull--seven-tenths {
  right: 70%; }

.pull--eight-tenths {
  right: 80%; }

.pull--nine-tenths {
  right: 90%; }

/* Twelfths */
.pull--one-twelfth {
  right: 8.333%; }

.pull--two-twelfths {
  right: 16.666%; }

.pull--three-twelfths {
  right: 25%; }

.pull--four-twelfths {
  right: 33.333%; }

.pull--five-twelfths {
  right: 41.666%; }

.pull--six-twelfths {
  right: 50%; }

.pull--seven-twelfths {
  right: 58.333%; }

.pull--eight-twelfths {
  right: 66.666%; }

.pull--nine-twelfths {
  right: 75%; }

.pull--ten-twelfths {
  right: 83.333%; }

.pull--eleven-twelfths {
  right: 91.666%; }

@media only screen and (min-width: 320px) and (max-width: 479px) {
  /* Whole */
  .pull--xs--one-whole {
    right: 100%; }

  /* Halves */
  .pull--xs--one-half {
    right: 50%; }

  /* Thirds */
  .pull--xs--one-third {
    right: 33.333%; }

  .pull--xs--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--xs--one-quarter {
    right: 25%; }

  .pull--xs--two-quarters {
    right: 50%; }

  .pull--xs--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--xs--one-fifth {
    right: 20%; }

  .pull--xs--two-fifths {
    right: 40%; }

  .pull--xs--three-fifths {
    right: 60%; }

  .pull--xs--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--xs--one-sixth {
    right: 16.666%; }

  .pull--xs--two-sixths {
    right: 33.333%; }

  .pull--xs--three-sixths {
    right: 50%; }

  .pull--xs--four-sixths {
    right: 66.666%; }

  .pull--xs--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--xs--one-eighth {
    right: 12.5%; }

  .pull--xs--two-eighths {
    right: 25%; }

  .pull--xs--three-eighths {
    right: 37.5%; }

  .pull--xs--four-eighths {
    right: 50%; }

  .pull--xs--five-eighths {
    right: 62.5%; }

  .pull--xs--six-eighths {
    right: 75%; }

  .pull--xs--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--xs--one-tenth {
    right: 10%; }

  .pull--xs--two-tenths {
    right: 20%; }

  .pull--xs--three-tenths {
    right: 30%; }

  .pull--xs--four-tenths {
    right: 40%; }

  .pull--xs--five-tenths {
    right: 50%; }

  .pull--xs--six-tenths {
    right: 60%; }

  .pull--xs--seven-tenths {
    right: 70%; }

  .pull--xs--eight-tenths {
    right: 80%; }

  .pull--xs--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--xs--one-twelfth {
    right: 8.333%; }

  .pull--xs--two-twelfths {
    right: 16.666%; }

  .pull--xs--three-twelfths {
    right: 25%; }

  .pull--xs--four-twelfths {
    right: 33.333%; }

  .pull--xs--five-twelfths {
    right: 41.666%; }

  .pull--xs--six-twelfths {
    right: 50%; }

  .pull--xs--seven-twelfths {
    right: 58.333%; }

  .pull--xs--eight-twelfths {
    right: 66.666%; }

  .pull--xs--nine-twelfths {
    right: 75%; }

  .pull--xs--ten-twelfths {
    right: 83.333%; }

  .pull--xs--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 320px) {
  /* Whole */
  .pull--xs-up--one-whole {
    right: 100%; }

  /* Halves */
  .pull--xs-up--one-half {
    right: 50%; }

  /* Thirds */
  .pull--xs-up--one-third {
    right: 33.333%; }

  .pull--xs-up--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--xs-up--one-quarter {
    right: 25%; }

  .pull--xs-up--two-quarters {
    right: 50%; }

  .pull--xs-up--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--xs-up--one-fifth {
    right: 20%; }

  .pull--xs-up--two-fifths {
    right: 40%; }

  .pull--xs-up--three-fifths {
    right: 60%; }

  .pull--xs-up--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--xs-up--one-sixth {
    right: 16.666%; }

  .pull--xs-up--two-sixths {
    right: 33.333%; }

  .pull--xs-up--three-sixths {
    right: 50%; }

  .pull--xs-up--four-sixths {
    right: 66.666%; }

  .pull--xs-up--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--xs-up--one-eighth {
    right: 12.5%; }

  .pull--xs-up--two-eighths {
    right: 25%; }

  .pull--xs-up--three-eighths {
    right: 37.5%; }

  .pull--xs-up--four-eighths {
    right: 50%; }

  .pull--xs-up--five-eighths {
    right: 62.5%; }

  .pull--xs-up--six-eighths {
    right: 75%; }

  .pull--xs-up--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--xs-up--one-tenth {
    right: 10%; }

  .pull--xs-up--two-tenths {
    right: 20%; }

  .pull--xs-up--three-tenths {
    right: 30%; }

  .pull--xs-up--four-tenths {
    right: 40%; }

  .pull--xs-up--five-tenths {
    right: 50%; }

  .pull--xs-up--six-tenths {
    right: 60%; }

  .pull--xs-up--seven-tenths {
    right: 70%; }

  .pull--xs-up--eight-tenths {
    right: 80%; }

  .pull--xs-up--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--xs-up--one-twelfth {
    right: 8.333%; }

  .pull--xs-up--two-twelfths {
    right: 16.666%; }

  .pull--xs-up--three-twelfths {
    right: 25%; }

  .pull--xs-up--four-twelfths {
    right: 33.333%; }

  .pull--xs-up--five-twelfths {
    right: 41.666%; }

  .pull--xs-up--six-twelfths {
    right: 50%; }

  .pull--xs-up--seven-twelfths {
    right: 58.333%; }

  .pull--xs-up--eight-twelfths {
    right: 66.666%; }

  .pull--xs-up--nine-twelfths {
    right: 75%; }

  .pull--xs-up--ten-twelfths {
    right: 83.333%; }

  .pull--xs-up--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (max-width: 479px) {
  /* Whole */
  .pull--xm-down--one-whole {
    right: 100%; }

  /* Halves */
  .pull--xm-down--one-half {
    right: 50%; }

  /* Thirds */
  .pull--xm-down--one-third {
    right: 33.333%; }

  .pull--xm-down--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--xm-down--one-quarter {
    right: 25%; }

  .pull--xm-down--two-quarters {
    right: 50%; }

  .pull--xm-down--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--xm-down--one-fifth {
    right: 20%; }

  .pull--xm-down--two-fifths {
    right: 40%; }

  .pull--xm-down--three-fifths {
    right: 60%; }

  .pull--xm-down--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--xm-down--one-sixth {
    right: 16.666%; }

  .pull--xm-down--two-sixths {
    right: 33.333%; }

  .pull--xm-down--three-sixths {
    right: 50%; }

  .pull--xm-down--four-sixths {
    right: 66.666%; }

  .pull--xm-down--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--xm-down--one-eighth {
    right: 12.5%; }

  .pull--xm-down--two-eighths {
    right: 25%; }

  .pull--xm-down--three-eighths {
    right: 37.5%; }

  .pull--xm-down--four-eighths {
    right: 50%; }

  .pull--xm-down--five-eighths {
    right: 62.5%; }

  .pull--xm-down--six-eighths {
    right: 75%; }

  .pull--xm-down--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--xm-down--one-tenth {
    right: 10%; }

  .pull--xm-down--two-tenths {
    right: 20%; }

  .pull--xm-down--three-tenths {
    right: 30%; }

  .pull--xm-down--four-tenths {
    right: 40%; }

  .pull--xm-down--five-tenths {
    right: 50%; }

  .pull--xm-down--six-tenths {
    right: 60%; }

  .pull--xm-down--seven-tenths {
    right: 70%; }

  .pull--xm-down--eight-tenths {
    right: 80%; }

  .pull--xm-down--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--xm-down--one-twelfth {
    right: 8.333%; }

  .pull--xm-down--two-twelfths {
    right: 16.666%; }

  .pull--xm-down--three-twelfths {
    right: 25%; }

  .pull--xm-down--four-twelfths {
    right: 33.333%; }

  .pull--xm-down--five-twelfths {
    right: 41.666%; }

  .pull--xm-down--six-twelfths {
    right: 50%; }

  .pull--xm-down--seven-twelfths {
    right: 58.333%; }

  .pull--xm-down--eight-twelfths {
    right: 66.666%; }

  .pull--xm-down--nine-twelfths {
    right: 75%; }

  .pull--xm-down--ten-twelfths {
    right: 83.333%; }

  .pull--xm-down--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
  /* Whole */
  .pull--xm--one-whole {
    right: 100%; }

  /* Halves */
  .pull--xm--one-half {
    right: 50%; }

  /* Thirds */
  .pull--xm--one-third {
    right: 33.333%; }

  .pull--xm--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--xm--one-quarter {
    right: 25%; }

  .pull--xm--two-quarters {
    right: 50%; }

  .pull--xm--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--xm--one-fifth {
    right: 20%; }

  .pull--xm--two-fifths {
    right: 40%; }

  .pull--xm--three-fifths {
    right: 60%; }

  .pull--xm--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--xm--one-sixth {
    right: 16.666%; }

  .pull--xm--two-sixths {
    right: 33.333%; }

  .pull--xm--three-sixths {
    right: 50%; }

  .pull--xm--four-sixths {
    right: 66.666%; }

  .pull--xm--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--xm--one-eighth {
    right: 12.5%; }

  .pull--xm--two-eighths {
    right: 25%; }

  .pull--xm--three-eighths {
    right: 37.5%; }

  .pull--xm--four-eighths {
    right: 50%; }

  .pull--xm--five-eighths {
    right: 62.5%; }

  .pull--xm--six-eighths {
    right: 75%; }

  .pull--xm--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--xm--one-tenth {
    right: 10%; }

  .pull--xm--two-tenths {
    right: 20%; }

  .pull--xm--three-tenths {
    right: 30%; }

  .pull--xm--four-tenths {
    right: 40%; }

  .pull--xm--five-tenths {
    right: 50%; }

  .pull--xm--six-tenths {
    right: 60%; }

  .pull--xm--seven-tenths {
    right: 70%; }

  .pull--xm--eight-tenths {
    right: 80%; }

  .pull--xm--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--xm--one-twelfth {
    right: 8.333%; }

  .pull--xm--two-twelfths {
    right: 16.666%; }

  .pull--xm--three-twelfths {
    right: 25%; }

  .pull--xm--four-twelfths {
    right: 33.333%; }

  .pull--xm--five-twelfths {
    right: 41.666%; }

  .pull--xm--six-twelfths {
    right: 50%; }

  .pull--xm--seven-twelfths {
    right: 58.333%; }

  .pull--xm--eight-twelfths {
    right: 66.666%; }

  .pull--xm--nine-twelfths {
    right: 75%; }

  .pull--xm--ten-twelfths {
    right: 83.333%; }

  .pull--xm--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 480px) {
  /* Whole */
  .pull--xm-up--one-whole {
    right: 100%; }

  /* Halves */
  .pull--xm-up--one-half {
    right: 50%; }

  /* Thirds */
  .pull--xm-up--one-third {
    right: 33.333%; }

  .pull--xm-up--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--xm-up--one-quarter {
    right: 25%; }

  .pull--xm-up--two-quarters {
    right: 50%; }

  .pull--xm-up--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--xm-up--one-fifth {
    right: 20%; }

  .pull--xm-up--two-fifths {
    right: 40%; }

  .pull--xm-up--three-fifths {
    right: 60%; }

  .pull--xm-up--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--xm-up--one-sixth {
    right: 16.666%; }

  .pull--xm-up--two-sixths {
    right: 33.333%; }

  .pull--xm-up--three-sixths {
    right: 50%; }

  .pull--xm-up--four-sixths {
    right: 66.666%; }

  .pull--xm-up--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--xm-up--one-eighth {
    right: 12.5%; }

  .pull--xm-up--two-eighths {
    right: 25%; }

  .pull--xm-up--three-eighths {
    right: 37.5%; }

  .pull--xm-up--four-eighths {
    right: 50%; }

  .pull--xm-up--five-eighths {
    right: 62.5%; }

  .pull--xm-up--six-eighths {
    right: 75%; }

  .pull--xm-up--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--xm-up--one-tenth {
    right: 10%; }

  .pull--xm-up--two-tenths {
    right: 20%; }

  .pull--xm-up--three-tenths {
    right: 30%; }

  .pull--xm-up--four-tenths {
    right: 40%; }

  .pull--xm-up--five-tenths {
    right: 50%; }

  .pull--xm-up--six-tenths {
    right: 60%; }

  .pull--xm-up--seven-tenths {
    right: 70%; }

  .pull--xm-up--eight-tenths {
    right: 80%; }

  .pull--xm-up--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--xm-up--one-twelfth {
    right: 8.333%; }

  .pull--xm-up--two-twelfths {
    right: 16.666%; }

  .pull--xm-up--three-twelfths {
    right: 25%; }

  .pull--xm-up--four-twelfths {
    right: 33.333%; }

  .pull--xm-up--five-twelfths {
    right: 41.666%; }

  .pull--xm-up--six-twelfths {
    right: 50%; }

  .pull--xm-up--seven-twelfths {
    right: 58.333%; }

  .pull--xm-up--eight-twelfths {
    right: 66.666%; }

  .pull--xm-up--nine-twelfths {
    right: 75%; }

  .pull--xm-up--ten-twelfths {
    right: 83.333%; }

  .pull--xm-up--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (max-width: 767px) {
  /* Whole */
  .pull--sm-down--one-whole {
    right: 100%; }

  /* Halves */
  .pull--sm-down--one-half {
    right: 50%; }

  /* Thirds */
  .pull--sm-down--one-third {
    right: 33.333%; }

  .pull--sm-down--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--sm-down--one-quarter {
    right: 25%; }

  .pull--sm-down--two-quarters {
    right: 50%; }

  .pull--sm-down--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--sm-down--one-fifth {
    right: 20%; }

  .pull--sm-down--two-fifths {
    right: 40%; }

  .pull--sm-down--three-fifths {
    right: 60%; }

  .pull--sm-down--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--sm-down--one-sixth {
    right: 16.666%; }

  .pull--sm-down--two-sixths {
    right: 33.333%; }

  .pull--sm-down--three-sixths {
    right: 50%; }

  .pull--sm-down--four-sixths {
    right: 66.666%; }

  .pull--sm-down--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--sm-down--one-eighth {
    right: 12.5%; }

  .pull--sm-down--two-eighths {
    right: 25%; }

  .pull--sm-down--three-eighths {
    right: 37.5%; }

  .pull--sm-down--four-eighths {
    right: 50%; }

  .pull--sm-down--five-eighths {
    right: 62.5%; }

  .pull--sm-down--six-eighths {
    right: 75%; }

  .pull--sm-down--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--sm-down--one-tenth {
    right: 10%; }

  .pull--sm-down--two-tenths {
    right: 20%; }

  .pull--sm-down--three-tenths {
    right: 30%; }

  .pull--sm-down--four-tenths {
    right: 40%; }

  .pull--sm-down--five-tenths {
    right: 50%; }

  .pull--sm-down--six-tenths {
    right: 60%; }

  .pull--sm-down--seven-tenths {
    right: 70%; }

  .pull--sm-down--eight-tenths {
    right: 80%; }

  .pull--sm-down--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--sm-down--one-twelfth {
    right: 8.333%; }

  .pull--sm-down--two-twelfths {
    right: 16.666%; }

  .pull--sm-down--three-twelfths {
    right: 25%; }

  .pull--sm-down--four-twelfths {
    right: 33.333%; }

  .pull--sm-down--five-twelfths {
    right: 41.666%; }

  .pull--sm-down--six-twelfths {
    right: 50%; }

  .pull--sm-down--seven-twelfths {
    right: 58.333%; }

  .pull--sm-down--eight-twelfths {
    right: 66.666%; }

  .pull--sm-down--nine-twelfths {
    right: 75%; }

  .pull--sm-down--ten-twelfths {
    right: 83.333%; }

  .pull--sm-down--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Whole */
  .pull--sm--one-whole {
    right: 100%; }

  /* Halves */
  .pull--sm--one-half {
    right: 50%; }

  /* Thirds */
  .pull--sm--one-third {
    right: 33.333%; }

  .pull--sm--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--sm--one-quarter {
    right: 25%; }

  .pull--sm--two-quarters {
    right: 50%; }

  .pull--sm--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--sm--one-fifth {
    right: 20%; }

  .pull--sm--two-fifths {
    right: 40%; }

  .pull--sm--three-fifths {
    right: 60%; }

  .pull--sm--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--sm--one-sixth {
    right: 16.666%; }

  .pull--sm--two-sixths {
    right: 33.333%; }

  .pull--sm--three-sixths {
    right: 50%; }

  .pull--sm--four-sixths {
    right: 66.666%; }

  .pull--sm--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--sm--one-eighth {
    right: 12.5%; }

  .pull--sm--two-eighths {
    right: 25%; }

  .pull--sm--three-eighths {
    right: 37.5%; }

  .pull--sm--four-eighths {
    right: 50%; }

  .pull--sm--five-eighths {
    right: 62.5%; }

  .pull--sm--six-eighths {
    right: 75%; }

  .pull--sm--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--sm--one-tenth {
    right: 10%; }

  .pull--sm--two-tenths {
    right: 20%; }

  .pull--sm--three-tenths {
    right: 30%; }

  .pull--sm--four-tenths {
    right: 40%; }

  .pull--sm--five-tenths {
    right: 50%; }

  .pull--sm--six-tenths {
    right: 60%; }

  .pull--sm--seven-tenths {
    right: 70%; }

  .pull--sm--eight-tenths {
    right: 80%; }

  .pull--sm--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--sm--one-twelfth {
    right: 8.333%; }

  .pull--sm--two-twelfths {
    right: 16.666%; }

  .pull--sm--three-twelfths {
    right: 25%; }

  .pull--sm--four-twelfths {
    right: 33.333%; }

  .pull--sm--five-twelfths {
    right: 41.666%; }

  .pull--sm--six-twelfths {
    right: 50%; }

  .pull--sm--seven-twelfths {
    right: 58.333%; }

  .pull--sm--eight-twelfths {
    right: 66.666%; }

  .pull--sm--nine-twelfths {
    right: 75%; }

  .pull--sm--ten-twelfths {
    right: 83.333%; }

  .pull--sm--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 768px) {
  /* Whole */
  .pull--sm-up--one-whole {
    right: 100%; }

  /* Halves */
  .pull--sm-up--one-half {
    right: 50%; }

  /* Thirds */
  .pull--sm-up--one-third {
    right: 33.333%; }

  .pull--sm-up--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--sm-up--one-quarter {
    right: 25%; }

  .pull--sm-up--two-quarters {
    right: 50%; }

  .pull--sm-up--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--sm-up--one-fifth {
    right: 20%; }

  .pull--sm-up--two-fifths {
    right: 40%; }

  .pull--sm-up--three-fifths {
    right: 60%; }

  .pull--sm-up--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--sm-up--one-sixth {
    right: 16.666%; }

  .pull--sm-up--two-sixths {
    right: 33.333%; }

  .pull--sm-up--three-sixths {
    right: 50%; }

  .pull--sm-up--four-sixths {
    right: 66.666%; }

  .pull--sm-up--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--sm-up--one-eighth {
    right: 12.5%; }

  .pull--sm-up--two-eighths {
    right: 25%; }

  .pull--sm-up--three-eighths {
    right: 37.5%; }

  .pull--sm-up--four-eighths {
    right: 50%; }

  .pull--sm-up--five-eighths {
    right: 62.5%; }

  .pull--sm-up--six-eighths {
    right: 75%; }

  .pull--sm-up--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--sm-up--one-tenth {
    right: 10%; }

  .pull--sm-up--two-tenths {
    right: 20%; }

  .pull--sm-up--three-tenths {
    right: 30%; }

  .pull--sm-up--four-tenths {
    right: 40%; }

  .pull--sm-up--five-tenths {
    right: 50%; }

  .pull--sm-up--six-tenths {
    right: 60%; }

  .pull--sm-up--seven-tenths {
    right: 70%; }

  .pull--sm-up--eight-tenths {
    right: 80%; }

  .pull--sm-up--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--sm-up--one-twelfth {
    right: 8.333%; }

  .pull--sm-up--two-twelfths {
    right: 16.666%; }

  .pull--sm-up--three-twelfths {
    right: 25%; }

  .pull--sm-up--four-twelfths {
    right: 33.333%; }

  .pull--sm-up--five-twelfths {
    right: 41.666%; }

  .pull--sm-up--six-twelfths {
    right: 50%; }

  .pull--sm-up--seven-twelfths {
    right: 58.333%; }

  .pull--sm-up--eight-twelfths {
    right: 66.666%; }

  .pull--sm-up--nine-twelfths {
    right: 75%; }

  .pull--sm-up--ten-twelfths {
    right: 83.333%; }

  .pull--sm-up--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (max-width: 991px) {
  /* Whole */
  .pull--md-down--one-whole {
    right: 100%; }

  /* Halves */
  .pull--md-down--one-half {
    right: 50%; }

  /* Thirds */
  .pull--md-down--one-third {
    right: 33.333%; }

  .pull--md-down--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--md-down--one-quarter {
    right: 25%; }

  .pull--md-down--two-quarters {
    right: 50%; }

  .pull--md-down--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--md-down--one-fifth {
    right: 20%; }

  .pull--md-down--two-fifths {
    right: 40%; }

  .pull--md-down--three-fifths {
    right: 60%; }

  .pull--md-down--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--md-down--one-sixth {
    right: 16.666%; }

  .pull--md-down--two-sixths {
    right: 33.333%; }

  .pull--md-down--three-sixths {
    right: 50%; }

  .pull--md-down--four-sixths {
    right: 66.666%; }

  .pull--md-down--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--md-down--one-eighth {
    right: 12.5%; }

  .pull--md-down--two-eighths {
    right: 25%; }

  .pull--md-down--three-eighths {
    right: 37.5%; }

  .pull--md-down--four-eighths {
    right: 50%; }

  .pull--md-down--five-eighths {
    right: 62.5%; }

  .pull--md-down--six-eighths {
    right: 75%; }

  .pull--md-down--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--md-down--one-tenth {
    right: 10%; }

  .pull--md-down--two-tenths {
    right: 20%; }

  .pull--md-down--three-tenths {
    right: 30%; }

  .pull--md-down--four-tenths {
    right: 40%; }

  .pull--md-down--five-tenths {
    right: 50%; }

  .pull--md-down--six-tenths {
    right: 60%; }

  .pull--md-down--seven-tenths {
    right: 70%; }

  .pull--md-down--eight-tenths {
    right: 80%; }

  .pull--md-down--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--md-down--one-twelfth {
    right: 8.333%; }

  .pull--md-down--two-twelfths {
    right: 16.666%; }

  .pull--md-down--three-twelfths {
    right: 25%; }

  .pull--md-down--four-twelfths {
    right: 33.333%; }

  .pull--md-down--five-twelfths {
    right: 41.666%; }

  .pull--md-down--six-twelfths {
    right: 50%; }

  .pull--md-down--seven-twelfths {
    right: 58.333%; }

  .pull--md-down--eight-twelfths {
    right: 66.666%; }

  .pull--md-down--nine-twelfths {
    right: 75%; }

  .pull--md-down--ten-twelfths {
    right: 83.333%; }

  .pull--md-down--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Whole */
  .pull--md--one-whole {
    right: 100%; }

  /* Halves */
  .pull--md--one-half {
    right: 50%; }

  /* Thirds */
  .pull--md--one-third {
    right: 33.333%; }

  .pull--md--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--md--one-quarter {
    right: 25%; }

  .pull--md--two-quarters {
    right: 50%; }

  .pull--md--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--md--one-fifth {
    right: 20%; }

  .pull--md--two-fifths {
    right: 40%; }

  .pull--md--three-fifths {
    right: 60%; }

  .pull--md--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--md--one-sixth {
    right: 16.666%; }

  .pull--md--two-sixths {
    right: 33.333%; }

  .pull--md--three-sixths {
    right: 50%; }

  .pull--md--four-sixths {
    right: 66.666%; }

  .pull--md--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--md--one-eighth {
    right: 12.5%; }

  .pull--md--two-eighths {
    right: 25%; }

  .pull--md--three-eighths {
    right: 37.5%; }

  .pull--md--four-eighths {
    right: 50%; }

  .pull--md--five-eighths {
    right: 62.5%; }

  .pull--md--six-eighths {
    right: 75%; }

  .pull--md--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--md--one-tenth {
    right: 10%; }

  .pull--md--two-tenths {
    right: 20%; }

  .pull--md--three-tenths {
    right: 30%; }

  .pull--md--four-tenths {
    right: 40%; }

  .pull--md--five-tenths {
    right: 50%; }

  .pull--md--six-tenths {
    right: 60%; }

  .pull--md--seven-tenths {
    right: 70%; }

  .pull--md--eight-tenths {
    right: 80%; }

  .pull--md--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--md--one-twelfth {
    right: 8.333%; }

  .pull--md--two-twelfths {
    right: 16.666%; }

  .pull--md--three-twelfths {
    right: 25%; }

  .pull--md--four-twelfths {
    right: 33.333%; }

  .pull--md--five-twelfths {
    right: 41.666%; }

  .pull--md--six-twelfths {
    right: 50%; }

  .pull--md--seven-twelfths {
    right: 58.333%; }

  .pull--md--eight-twelfths {
    right: 66.666%; }

  .pull--md--nine-twelfths {
    right: 75%; }

  .pull--md--ten-twelfths {
    right: 83.333%; }

  .pull--md--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 992px) {
  /* Whole */
  .pull--md-up--one-whole {
    right: 100%; }

  /* Halves */
  .pull--md-up--one-half {
    right: 50%; }

  /* Thirds */
  .pull--md-up--one-third {
    right: 33.333%; }

  .pull--md-up--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--md-up--one-quarter {
    right: 25%; }

  .pull--md-up--two-quarters {
    right: 50%; }

  .pull--md-up--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--md-up--one-fifth {
    right: 20%; }

  .pull--md-up--two-fifths {
    right: 40%; }

  .pull--md-up--three-fifths {
    right: 60%; }

  .pull--md-up--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--md-up--one-sixth {
    right: 16.666%; }

  .pull--md-up--two-sixths {
    right: 33.333%; }

  .pull--md-up--three-sixths {
    right: 50%; }

  .pull--md-up--four-sixths {
    right: 66.666%; }

  .pull--md-up--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--md-up--one-eighth {
    right: 12.5%; }

  .pull--md-up--two-eighths {
    right: 25%; }

  .pull--md-up--three-eighths {
    right: 37.5%; }

  .pull--md-up--four-eighths {
    right: 50%; }

  .pull--md-up--five-eighths {
    right: 62.5%; }

  .pull--md-up--six-eighths {
    right: 75%; }

  .pull--md-up--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--md-up--one-tenth {
    right: 10%; }

  .pull--md-up--two-tenths {
    right: 20%; }

  .pull--md-up--three-tenths {
    right: 30%; }

  .pull--md-up--four-tenths {
    right: 40%; }

  .pull--md-up--five-tenths {
    right: 50%; }

  .pull--md-up--six-tenths {
    right: 60%; }

  .pull--md-up--seven-tenths {
    right: 70%; }

  .pull--md-up--eight-tenths {
    right: 80%; }

  .pull--md-up--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--md-up--one-twelfth {
    right: 8.333%; }

  .pull--md-up--two-twelfths {
    right: 16.666%; }

  .pull--md-up--three-twelfths {
    right: 25%; }

  .pull--md-up--four-twelfths {
    right: 33.333%; }

  .pull--md-up--five-twelfths {
    right: 41.666%; }

  .pull--md-up--six-twelfths {
    right: 50%; }

  .pull--md-up--seven-twelfths {
    right: 58.333%; }

  .pull--md-up--eight-twelfths {
    right: 66.666%; }

  .pull--md-up--nine-twelfths {
    right: 75%; }

  .pull--md-up--ten-twelfths {
    right: 83.333%; }

  .pull--md-up--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (max-width: 1199px) {
  /* Whole */
  .pull--lg-down--one-whole {
    right: 100%; }

  /* Halves */
  .pull--lg-down--one-half {
    right: 50%; }

  /* Thirds */
  .pull--lg-down--one-third {
    right: 33.333%; }

  .pull--lg-down--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--lg-down--one-quarter {
    right: 25%; }

  .pull--lg-down--two-quarters {
    right: 50%; }

  .pull--lg-down--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--lg-down--one-fifth {
    right: 20%; }

  .pull--lg-down--two-fifths {
    right: 40%; }

  .pull--lg-down--three-fifths {
    right: 60%; }

  .pull--lg-down--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--lg-down--one-sixth {
    right: 16.666%; }

  .pull--lg-down--two-sixths {
    right: 33.333%; }

  .pull--lg-down--three-sixths {
    right: 50%; }

  .pull--lg-down--four-sixths {
    right: 66.666%; }

  .pull--lg-down--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--lg-down--one-eighth {
    right: 12.5%; }

  .pull--lg-down--two-eighths {
    right: 25%; }

  .pull--lg-down--three-eighths {
    right: 37.5%; }

  .pull--lg-down--four-eighths {
    right: 50%; }

  .pull--lg-down--five-eighths {
    right: 62.5%; }

  .pull--lg-down--six-eighths {
    right: 75%; }

  .pull--lg-down--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--lg-down--one-tenth {
    right: 10%; }

  .pull--lg-down--two-tenths {
    right: 20%; }

  .pull--lg-down--three-tenths {
    right: 30%; }

  .pull--lg-down--four-tenths {
    right: 40%; }

  .pull--lg-down--five-tenths {
    right: 50%; }

  .pull--lg-down--six-tenths {
    right: 60%; }

  .pull--lg-down--seven-tenths {
    right: 70%; }

  .pull--lg-down--eight-tenths {
    right: 80%; }

  .pull--lg-down--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--lg-down--one-twelfth {
    right: 8.333%; }

  .pull--lg-down--two-twelfths {
    right: 16.666%; }

  .pull--lg-down--three-twelfths {
    right: 25%; }

  .pull--lg-down--four-twelfths {
    right: 33.333%; }

  .pull--lg-down--five-twelfths {
    right: 41.666%; }

  .pull--lg-down--six-twelfths {
    right: 50%; }

  .pull--lg-down--seven-twelfths {
    right: 58.333%; }

  .pull--lg-down--eight-twelfths {
    right: 66.666%; }

  .pull--lg-down--nine-twelfths {
    right: 75%; }

  .pull--lg-down--ten-twelfths {
    right: 83.333%; }

  .pull--lg-down--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 1200px) {
  /* Whole */
  .pull--lg--one-whole {
    right: 100%; }

  /* Halves */
  .pull--lg--one-half {
    right: 50%; }

  /* Thirds */
  .pull--lg--one-third {
    right: 33.333%; }

  .pull--lg--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--lg--one-quarter {
    right: 25%; }

  .pull--lg--two-quarters {
    right: 50%; }

  .pull--lg--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--lg--one-fifth {
    right: 20%; }

  .pull--lg--two-fifths {
    right: 40%; }

  .pull--lg--three-fifths {
    right: 60%; }

  .pull--lg--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--lg--one-sixth {
    right: 16.666%; }

  .pull--lg--two-sixths {
    right: 33.333%; }

  .pull--lg--three-sixths {
    right: 50%; }

  .pull--lg--four-sixths {
    right: 66.666%; }

  .pull--lg--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--lg--one-eighth {
    right: 12.5%; }

  .pull--lg--two-eighths {
    right: 25%; }

  .pull--lg--three-eighths {
    right: 37.5%; }

  .pull--lg--four-eighths {
    right: 50%; }

  .pull--lg--five-eighths {
    right: 62.5%; }

  .pull--lg--six-eighths {
    right: 75%; }

  .pull--lg--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--lg--one-tenth {
    right: 10%; }

  .pull--lg--two-tenths {
    right: 20%; }

  .pull--lg--three-tenths {
    right: 30%; }

  .pull--lg--four-tenths {
    right: 40%; }

  .pull--lg--five-tenths {
    right: 50%; }

  .pull--lg--six-tenths {
    right: 60%; }

  .pull--lg--seven-tenths {
    right: 70%; }

  .pull--lg--eight-tenths {
    right: 80%; }

  .pull--lg--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--lg--one-twelfth {
    right: 8.333%; }

  .pull--lg--two-twelfths {
    right: 16.666%; }

  .pull--lg--three-twelfths {
    right: 25%; }

  .pull--lg--four-twelfths {
    right: 33.333%; }

  .pull--lg--five-twelfths {
    right: 41.666%; }

  .pull--lg--six-twelfths {
    right: 50%; }

  .pull--lg--seven-twelfths {
    right: 58.333%; }

  .pull--lg--eight-twelfths {
    right: 66.666%; }

  .pull--lg--nine-twelfths {
    right: 75%; }

  .pull--lg--ten-twelfths {
    right: 83.333%; }

  .pull--lg--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 1400px) {
  /* Whole */
  .pull--xl--one-whole {
    right: 100%; }

  /* Halves */
  .pull--xl--one-half {
    right: 50%; }

  /* Thirds */
  .pull--xl--one-third {
    right: 33.333%; }

  .pull--xl--two-thirds {
    right: 66.666%; }

  /* Quarters */
  .pull--xl--one-quarter {
    right: 25%; }

  .pull--xl--two-quarters {
    right: 50%; }

  .pull--xl--three-quarters {
    right: 75%; }

  /* Fifths */
  .pull--xl--one-fifth {
    right: 20%; }

  .pull--xl--two-fifths {
    right: 40%; }

  .pull--xl--three-fifths {
    right: 60%; }

  .pull--xl--four-fifths {
    right: 80%; }

  /* Sixths */
  .pull--xl--one-sixth {
    right: 16.666%; }

  .pull--xl--two-sixths {
    right: 33.333%; }

  .pull--xl--three-sixths {
    right: 50%; }

  .pull--xl--four-sixths {
    right: 66.666%; }

  .pull--xl--five-sixths {
    right: 83.333%; }

  /* Eighths */
  .pull--xl--one-eighth {
    right: 12.5%; }

  .pull--xl--two-eighths {
    right: 25%; }

  .pull--xl--three-eighths {
    right: 37.5%; }

  .pull--xl--four-eighths {
    right: 50%; }

  .pull--xl--five-eighths {
    right: 62.5%; }

  .pull--xl--six-eighths {
    right: 75%; }

  .pull--xl--seven-eighths {
    right: 87.5%; }

  /* Tenths */
  .pull--xl--one-tenth {
    right: 10%; }

  .pull--xl--two-tenths {
    right: 20%; }

  .pull--xl--three-tenths {
    right: 30%; }

  .pull--xl--four-tenths {
    right: 40%; }

  .pull--xl--five-tenths {
    right: 50%; }

  .pull--xl--six-tenths {
    right: 60%; }

  .pull--xl--seven-tenths {
    right: 70%; }

  .pull--xl--eight-tenths {
    right: 80%; }

  .pull--xl--nine-tenths {
    right: 90%; }

  /* Twelfths */
  .pull--xl--one-twelfth {
    right: 8.333%; }

  .pull--xl--two-twelfths {
    right: 16.666%; }

  .pull--xl--three-twelfths {
    right: 25%; }

  .pull--xl--four-twelfths {
    right: 33.333%; }

  .pull--xl--five-twelfths {
    right: 41.666%; }

  .pull--xl--six-twelfths {
    right: 50%; }

  .pull--xl--seven-twelfths {
    right: 58.333%; }

  .pull--xl--eight-twelfths {
    right: 66.666%; }

  .pull--xl--nine-twelfths {
    right: 75%; }

  .pull--xl--ten-twelfths {
    right: 83.333%; }

  .pull--xl--eleven-twelfths {
    right: 91.666%; } }
/*============================================================================
      #Basic Styles
    ==============================================================================*/
/*============================================================================
      #Normalize
    ==============================================================================*/
*,
input,
:before,
:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

/*html {
        background-color: $colorFooterBg;
    }*/
body {
  background-color: #fff;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

* {
  outline: none;
  padding: 0;
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

[tabindex="-1"]:focus {
  outline: none; }

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; }

.container {
  *zoom: 1;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  /*@include at-query($sm,$pre-md){
          width:750px;
      }

      @include at-query($md,$pre-lg){
          width:960px;
      }*/ }
  .container:after {
    content: "";
    display: table;
    clear: both; }

/*============================================================================
      #Typography
    ==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 15px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  color: #48484a;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.5px;
  font-weight: normal; }

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
  /*font-family: $bodyFontStack;*/
  margin: 0 0 0.5em; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
em {
  font-style: italic; }

b,
strong {
  font-weight: 600; }

small {
  font-size: 0.9em; }

sup,
sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #ebebeb; }
  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"; }

/*================ Code ================*/
code,
pre {
  background-color: #faf7f5;
  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 #ebebeb;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ collection View ================*/
.collection-view {
  display: inline-block;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  padding: 0 5px;
  height: 37px;
  overflow: hidden;
  /*================ Only show on larger screens ================*/
  /*@include at-query ($min, $large) {
        display: inline-block;
      }*/ }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 8px;
  color: #ebebeb;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: #48484a; }

.change-view--active {
  cursor: default;
  color: #48484a; }

/*============================================================================
      #Rich Text Editor
    ==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    text-decoration: underline; }
  .rte h1,
  .rte h2,
  .rte h3,
  .rte h4,
  .rte h5,
  .rte h6 {
    margin-top: 2em; }
    .rte h1:first-child,
    .rte h2:first-child,
    .rte h3:first-child,
    .rte h4:first-child,
    .rte h5:first-child,
    .rte h6:first-child {
      margin-top: 0; }
    .rte h1 a,
    .rte h2 a,
    .rte h3 a,
    .rte h4 a,
    .rte h5 a,
    .rte h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0.4em; }

.rte--header {
  margin-bottom: 0; }

/*============================================================================
      #Links and Buttons
    ==============================================================================*/
a,
.text-link {
  color: #48484a;
  text-decoration: none;
  background: transparent;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*============================================================================
      #Lists
    ==============================================================================*/
ul,
ol {
  padding: 0; }

ol {
  list-style: decimal; }

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 4px 0 5px 20px; }

ul.square {
  list-style: square outside; }

ul.disc {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

.no-bullets {
  list-style: none outside;
  margin-left: 0; }

.inline-list {
  margin-left: 0; }
  .inline-list li {
    display: inline-block;
    margin-bottom: 0; }

/*============================================================================
      #Tables
    ==============================================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

table.full {
  width: 100%;
  margin-bottom: 1em; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

th {
  font-weight: bold; }

th,
td {
  text-align: left;
  padding: 15px;
  border: 1px solid #ebebeb; }

/*============================================================================
      Responsive tables, defined with .table--responsive on table element.
      Only defined for IE9+
    ==============================================================================*/
.table--responsive {
  /*@include at-query($max, $small) {
        thead {
          display: none;
        }

        tr {
          display: block;
        }

        // IE9 table layout fixes
        tr,
        td {
          float: left;
          clear: both;
          width: 100%;
        }

        th,
        td {
          display: block;
          text-align: right;
          padding: 15px;
        }

        td:before {
          content: attr(data-label);
          float: left;
          text-align: center;
          font-size: 12px;
          padding-right: 10px;
        }

        &.cart-table {
          img {
            margin: 0 auto;
          }

          .js-qty {
            float: right;
          }
        }
      }*/ }

/* @include at-query($max, $small) {
      .table--small-hide {
        display: none !important;
      }

      .table__section + .table__section {
        position: relative;
        margin-top: 10px;
        padding-top: 15px;

        &:after {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 15px;
          right: 15px;
          border-bottom: 1px solid $colorBorder;
        }
      }
    } */
/*============================================================================
      #Images and Iframes
    ==============================================================================*/
img {
  border: 0 none; }

svg:not(:root) {
  overflow: hidden; }

img,
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%; }

/*============================================================================
      #Forms
    ==============================================================================*/
form {
  margin-bottom: 0; }

.form-vertical {
  margin-bottom: 15px; }

/*================ Prevent zoom on touch devices in active inputs ================*/
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

button {
  background: none;
  border: none;
  cursor: pointer; }

button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  -moz-border-radius: 0px; }

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

fieldset {
  border: 1px solid #ebebeb;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

button,
input[type="submit"] {
  cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #ebebeb;
  max-width: 100%;
  padding: 8px 10px; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #d2d2d2; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px;
  resize: none; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0 8px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  position: absolute; }

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  -ms-appearance: radio;
  appearance: radio; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-position: right center;
  background-color: #fff;
  background-image: url('/cdn/shop/t/37/assets/ico-select.svg?v=131644945767023635871673644536');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
.hidden-label {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .hidden-label, .lt-ie9 .hidden-label {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

/*================ Error styles ================*/
input.error,
select.error,
textarea.error {
  border: 1px solid #d02e2e !important; }

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .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 .input-group-field {
  height: 40px; }

.input-group .input-group-field {
  width: 100%; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

/*============================================================================
      #Pagination
    ==============================================================================*/
.pagination {
  margin-bottom: 50px;
  text-align: center;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .pagination {
      margin-bottom: 20px; } }
  .pagination .disabled {
    display: none; }
  .pagination > span {
    display: inline-block;
    line-height: 1;
    vertical-align: middle; }
    .pagination > span.current {
      pointer-events: none;
      font-size: 15px;
      padding: 0px;
      margin: 0 3px;
      line-height: 20px;
      font-weight: 500;
      border-radius: 50%;
      position: relative;
      color: white;
      z-index: 1;
      display: inline-block;
      vertical-align: middle;
      height: 29px;
      width: 29px;
      line-height: 28px; }
      .pagination > span.current:after {
        position: absolute;
        content: "";
        height: 100%;
        padding-top: 100%;
        width: 100%;
        background: #0088cb;
        border-radius: 50%;
        z-index: -1;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
  .pagination a {
    display: block;
    vertical-align: top;
    font-size: 15px;
    padding: 6px 12px;
    border: 2px solid transparent;
    margin: 0 3px;
    line-height: 20px;
    font-weight: 500; }
    .pagination a:hover {
    /*       background:$colorSecondary;
       border-radius: 50%;
  color: white; */ }

/*============================================================================
      #Breadcrumbs
    ==============================================================================*/
.breadcrumb {
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .breadcrumb {
      margin-bottom: 0; } }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    text-transform: capitalize;
    /*       vertical-align: top;
       */ }
    .breadcrumb a.without-capitalization,
    .breadcrumb span.without-capitalization {
      text-transform: initial; }
    .breadcrumb a:after,
    .breadcrumb span:after {
      content: "/";
      padding: 0 7px; }
    .breadcrumb a:last-child:after,
    .breadcrumb span:last-child:after {
      display: none; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding: 0 !important; }

.selected-pop .breadcrumb a,
.selected-pop .breadcrumb span {
  font-size: 14px; }

/*============================================================================
      #Notes and Form Feedback
    ==============================================================================*/
.note,
.errors {
  border-radius: 3px;
  padding: 6px 12px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left; }
  .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: #ebebeb; }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #56ad6a;
  background-color: #ecfef0;
  border-color: #56ad6a; }
  .form-success a {
    color: #56ad6a;
    text-decoration: underline; }
    .form-success a:hover {
      text-decoration: none; }

.form-error,
.errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

.margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important; }

blockquote::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 29px;
  height: 23px;
  background-repeat: no-repeat;
  background-image: url("../../blockquote-left.png");
  background-position: center center;
  margin-left: -29px; }

blockquote::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 29px;
  height: 23px;
  background-image: url("../../blockquote-right.png");
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: -29px; }

.image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover; }

img {
  display: block;
  margin: 0 auto; }

/*============================================================================
  #Drawers
==============================================================================*/
.js-drawer-open {
  overflow: hidden; }

.drawer {
  /*   -webkit-transform: translateZ(0);
  will-change: transform; */
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  /*   -webkit-overflow-scrolling: touch;
  transform: translateX(100%); */
  top: 0px;
  right: 0;
  bottom: 0;
  padding: 15px;
  width: 400px;
  z-index: 9999999;
  color: #333;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1);
  max-width: 95%; }
  .drawer a {
    color: #333; }
    .drawer a:hover, .drawer a:focus {
      opacity: 0.7; }
  .drawer input,
  .drawer textarea {
    border-color: #e9e9e9; }

.drawer--left {
  width: 300px;
  left: -300px;
  border-right: 1px solid #e9e9e9; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -webkit-transform: translate(300px, 0);
    -ms-transform: translate(300px, 0);
    -o-transform: translate(300px, 0);
    transform: translate(300px, 0); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  right: -400px;
  border-left: 1px solid #e9e9e9; }
  .js-drawer-open-right .drawer--right {
    /*         @include translate(-$drawerCartWidth,0);*/
    right: 0; }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

#PageContainer {
  overflow: hidden;
  clear: both; }

.is-moved-by-drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -webkit-transform: translate(300px, 0);
    -ms-transform: translate(300px, 0);
    -o-transform: translate(300px, 0);
    transform: translate(300px, 0); }
  .js-drawer-open-right .is-moved-by-drawer {
    -webkit-transform: translate(-400px, 0);
    -ms-transform: translate(-400px, 0);
    -o-transform: translate(-400px, 0);
    transform: translate(-400px, 0); }

.drawer__header {
  display: table;
  height: auto;
  width: 100%;
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e9e9e9; }
  @media screen and (max-width: 767px) {
    .drawer__header {
      height: auto;
      padding-bottom: 10px; } }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center;
  font-size: em(18px); }

.drawer__close button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close button:active, .drawer__close button:focus {
    background-color: #e9e9e9; }

.blue {
  color: #0088cb; }

.red {
  color: #fc6767; }

.magento1 {
  color: #30cfd0; }

.purple {
  color: #b333dd; }

.yellow {
  color: #ff8008; }

header {
  box-shadow: 0 14px 42px 0px rgba(0, 0, 0, 0.15); }

.header-top {
  padding: 10px 0;
  /*     background: $headertop-bg; */
  background: #edeff1;
  z-index: 1;
  position: relative; }
  @media screen and (max-width: 767px) {
    .header-top {
      padding: 5px 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1024px) {
    .header-top * {
      font-size: 12px; } }
  @media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .header-top * {
      font-size: 14px; } }
  .header-top ul li {
    display: inline-block;
    padding: 0 23px; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .header-top ul li {
        padding: 0 10px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .header-top ul li {
        padding: 0 4px; } }
    .header-top ul li:last-child {
      padding-right: 0; }
    .header-top ul li:first-child {
      padding-left: 0; }

.logo-menu-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: white; }
  @media (min-width: 320px) and (max-width: 1024px) {
    .logo-menu-wrap {
      padding: 10px 15px;
      width: 100%;
      margin: 0; } }
  .logo-menu-wrap .logo a {
    display: block; }
  .logo-menu-wrap .logo img {
    float: left;
    max-width: 100% !important;
    width: 200px; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .logo-menu-wrap .logo img {
        max-width: 159px !important; } }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .logo-menu-wrap .logo img {
        max-width: 200px !important; } }
    @media screen and (max-width: 767px) {
      .logo-menu-wrap .logo img {
        max-width: 121px !important; } }

.header-search-bar .search-bar {
  float: left;
  position: relative; }
  @media only screen and (max-width: 1024px) {
    .header-search-bar .search-bar {
      display: none; } }
  .header-search-bar .search-bar img {
    width: auto; }
  .header-search-bar .search-bar input {
    width: 100%;
    border: 2px solid #ebebeb;
    border-radius: 20px;
    padding: 9px 40px 9px 20px; }

.mean-container .mean-nav ul.account-cart li a {
  /*    @include flexbox(); */ }

.account-cart {
  float: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }
  @media (min-width: 1025px) {
    .account-cart {
      padding-top: 0; } }
  .account-cart:after {
    display: none; }
  .account-cart li {
    padding: 0 0 0 20px; }
    @media (min-width: 1025px) and (max-width: 1199px) {
      .account-cart li {
        padding: 0 0 0 10px; } }
    .account-cart li span {
      color: #48484a; }
    .account-cart li a {
      line-height: 1;
      /*            @include flexbox();
          @include align-items(center); */
      display: inline-block;
      vertical-align: middle; }
      .account-cart li a img {
        display: inline-block;
        padding-right: 5px;
        vertical-align: middle;
        width: 30px;
        height: auto; }

.bj-menu.sticky_nav {
  /*     position: fixed;
  top: 0;
  left: 0;
  right: 0;
  */ }
  .bj-menu.sticky_nav .logo a {
    display: block; }
    .bj-menu.sticky_nav .logo a img {
      float: left;
      max-width: 100% !important;
      width: 200px; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .bj-menu.sticky_nav .logo a img {
          max-width: 159px !important; } }
      @media screen and (min-width: 992px) and (max-width: 1199px) {
        .bj-menu.sticky_nav .logo a img {
          max-width: 200px !important; } }
      @media screen and (max-width: 767px) {
        .bj-menu.sticky_nav .logo a img {
          max-width: 121px !important; } }

.mean-nav .header-search-bar {
  position: absolute;
  right: 60px;
  width: 120px;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%); }
  @media screen and (max-width: 767px) {
    .mean-nav .header-search-bar {
      right: 35px; } }
  .mean-nav .header-search-bar .account-cart {
    display: flex !important;
    width: 100%;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    background: none; }
    .mean-nav .header-search-bar .account-cart:after {
      display: none; }
    .mean-nav .header-search-bar .account-cart li {
      padding-left: 5px; }
      .mean-nav .header-search-bar .account-cart li a {
        padding: 0; }

.footer-up {
  padding: 45px 0;
  border-top: 1px solid #dadadb;
  background: #fff; }
  @media screen and (max-width: 767px) {
    .footer-up {
      padding: 15px 0 0; } }
  @media screen and (max-width: 767px) {
    .footer-up .footer-ser {
      margin-bottom: 15px; } }
  .footer-up .footer-ser img {
    height: 38px;
    width: auto;
    margin-bottom: 16px; }
  .footer-up .footer-ser p {
    padding: 0 37px;
    font-weight: 500; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .footer-up .footer-ser p {
        padding: 0 20px; } }
    @media screen and (max-width: 991px) {
      .footer-up .footer-ser p {
        padding: 0; } }

.footer-down {
  padding: 45px 0; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-down {
      padding: 30px 0; } }
  @media screen and (max-width: 767px) {
    .footer-down {
      padding: 25px 0; } }
  @media screen and (max-width: 767px) {
    .footer-down .footer-news-wrap {
      display: none; } }
  @media screen and (max-width: 767px) {
    .footer-down .footer-links h5,
    .footer-down .footer-links .h5 {
      cursor: pointer;
      display: block;
      border-bottom: 1px solid #ebebeb;
      padding-bottom: 6px; } }
  @media screen and (max-width: 767px) {
    .footer-down .footer-links h5 .fa,
    .footer-down .footer-links .h5 .fa {
      top: 2px;
      position: relative; } }
  @media screen and (max-width: 767px) {
    .footer-down .footer-links ul {
      display: none;
      margin-bottom: 10px; } }
  @media screen and (max-width: 767px) {
    .footer-down .footer-links ul.payment {
      display: block !important; } }
  .footer-down h5,
  .footer-down .h5 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600; }
  .footer-down ul li {
    margin-bottom: 7px; }
  @media screen and (max-width: 767px) {
    .footer-down .footer-social {
      margin-bottom: 10px; } }
  .footer-down .footer-social h5 {
    float: left;
    margin-right: 15px; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-down .footer-social .social {
      display: block;
      clear: both; } }
  .footer-down .footer-logo img {
    float: left;
    margin-bottom: 27px;
    max-width: 100% !important;
    height: auto; }
    @media screen and (max-width: 767px) {
      .footer-down .footer-logo img {
        margin-bottom: 10px;
        max-width: 190px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .footer-down .footer-logo img {
        margin-bottom: 10px; } }
  .footer-down .footer-logo p {
    clear: both;
    margin-bottom: 10px;
    text-align: left; }
    @media screen and (max-width: 767px) {
      .footer-down .footer-logo p {
        margin-bottom: 5px; } }
  .footer-down .sub-title {
    font-weight: 800;
    margin-bottom: 3px; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .footer-down .sub-title {
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 3px;
        font-size: 15px; } }
    @media screen and (max-width: 767px) {
      .footer-down .sub-title {
        font-weight: 600;
        margin-bottom: 3px;
        text-transform: uppercase;
        font-size: 15px;
        cursor: pointer; } }
  .footer-down .news-letter-section h6 {
    margin-bottom: 20px; }
  .footer-down .news-letter-section .newsletter {
    margin-bottom: 25px;
    position: relative; }
    .footer-down .news-letter-section .newsletter input {
      width: 100%;
      border-radius: 20px;
      padding: 10px 85px 10px 15px;
      line-height: normal; }
    .footer-down .news-letter-section .newsletter button {
      position: absolute;
      right: 18px;
      text-transform: uppercase;
      font-size: 15px;
      font-weight: 600;
      bottom: 0;
      top: 0;
      color: #0088cb; }
      .footer-down .news-letter-section .newsletter button:hover {
        color: #48484a; }
  .footer-down .newBadge {
    display: block;
    margin: 5px 0 0;
    float: left; }
    @media screen and (max-width: 767px) {
      .footer-down .newBadge {
        margin: 0 0 20px; } }
    .footer-down .newBadge a {
      float: left; }
    .footer-down .newBadge img {
      float: left; }

.copyright-section {
  background: #edeff1;
  padding: 15px 0;
  position: relative; }

.social li {
  float: left;
  margin-right: 15px; }
  .social li i {
    font-size: 20px; }

.payment li {
  display: inline-block;
  margin-right: 2px; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .payment li {
      max-width: 35px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .payment li {
      max-width: 33px; } }

/**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  display: none; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-nav {
  margin-top: 10px; }

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; }

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none; }

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791; }

/* account-pages scss */
#main_content {
  padding: 60px 0; }
  @media screen and (max-width: 767px) {
    #main_content {
      padding: 25px 0; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #main_content {
      padding: 35px 0; } }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    #main_content {
      padding: 40px 0; } }

.account-forms .account-field {
  margin-bottom: 15px;
  background-color: #edeff1; }
.account-forms .btn-general {
  width: auto; }

.flex-between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between; }

.flex-around {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around; }

.form-divider {
  width: 100px;
  height: 1px;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0.2); }

.return-store a {
  font-weight: 600;
  text-decoration: underline; }

.error-img {
  max-width: 180px;
  margin: 0 auto 35px;
  display: block; }

.search-bar {
  position: relative; }

.btn-search {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0; }

.account-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
  align-items: center; }

.acc-sub-title {
  font-size: 18px;
  font-weight: bold; }

.edit-address-link a {
  color: #0088cb; }

.add-address-form {
  padding-bottom: 40px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 40px; }

/*============================================================================
  #ACCOUNT PAGES
==============================================================================*/
input[type="checkbox"] {
  display: none; }

input[type="checkbox"] + label span {
  width: 16px;
  height: 16px;
  border: 2px solid #0088cb;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -moz-border-radius: 3px;
  top: -1px;
  vertical-align: middle; }

input[type="checkbox"]:checked + label span {
  background-color: #0088cb; }
  input[type="checkbox"]:checked + label span:after {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #fff;
    font-size: 11px;
    padding-right: 0;
    position: absolute;
    top: -1px;
    left: 0; }

.form-wrapper {
  max-width: 420px;
  padding: 50px 25px 40px;
  margin: 0 auto;
  text-align: center;
  position: relative; }
  @media screen and (max-width: 320px) {
    .form-wrapper {
      padding: 40px 15px 30px; } }

.account_title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ebebeb; }
  .account_title.center-title {
    text-align: center;
    border-bottom: 0;
    padding-bottom: 0;
    display: block; }
  @media screen and (max-width: 320px) {
    .account_title {
      margin-bottom: 22px; } }
  .account_title h3 {
    margin-bottom: 0; }

#account_page .section_title {
  border: none;
  padding: 0;
  margin-bottom: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px; }
#account_page .sub-title {
  font-size: 15px;
  margin-bottom: 0; }
#account_page .order_link a,
#account_page .account_link {
  text-decoration: underline;
  color: #48484a;
  font-weight: 700; }
  #account_page .order_link a:hover,
  #account_page .account_link:hover {
    color: #f05c70; }
#account_page .add-address-form {
  padding-bottom: 40px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 40px; }
#account_page .edit-address-form {
  padding-top: 10px; }
#account_page .btn-update-add .btn {
  margin: 0 15px 0 0; }
  @media screen and (max-width: 320px) {
    #account_page .btn-update-add .btn {
      margin-right: 10px; } }
#account_page input,
#account_page textarea,
#account_page select {
  margin-bottom: 15px; }
#account_page .billing_address,
#account_page .shipping_address {
  padding-top: 30px; }
  #account_page .billing_address .section_title,
  #account_page .shipping_address .section_title {
    margin-bottom: 12px; }
#account_page .mr-b-0 {
  margin-bottom: 0; }
#account_page .order_title {
  margin-bottom: 2px; }
  @media screen and (max-width: 767px) {
    #account_page .order_title {
      font-size: 16px; } }
#account_page .order-time {
  color: #969696; }
#account_page .login_footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between; }
  #account_page .login_footer .btn,
  #account_page .login_footer p {
    margin-bottom: 0; }

.edit-address-link {
  margin: 10px 0px; }
  .edit-address-link .theme-font-color {
    padding-right: 10px;
    margin-right: 6px;
    border-right: 1px solid #48484a;
    line-height: 14px;
    display: inline-block; }
    .edit-address-link .theme-font-color:last-child {
      padding-right: 0px;
      margin-right: 0px;
      border-right: 0px; }
    .edit-address-link .theme-font-color a {
      color: #0088cb;
      font-weight: 700; }
      .edit-address-link .theme-font-color a:hover {
        color: #48484a; }

.pass_link {
  color: #f05c70; }
  .pass_link:hover {
    color: #48484a; }

.go_register {
  position: relative;
  padding-top: 23px;
  margin: 35px 0 10px; }
  .go_register:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100px;
    height: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2); }
  .go_register p {
    margin-bottom: 5px; }
  .go_register .btn--ghost {
    border: 2px solid #ebebeb;
    background: transparent;
    color: #ebebeb;
    text-transform: capitalize;
    padding: 6px 25px 5px; }
    .go_register .btn--ghost:hover {
      background-color: #ebebeb;
      color: #ebebeb; }

.return-store {
  margin-bottom: 0;
  padding-top: 20px; }
  .return-store a {
    text-decoration: underline;
    color: #48484a;
    font-weight: 700; }
    .return-store a:hover {
      color: #f05c70; }

.mr-tb-20 {
  margin-top: 20px;
  margin-bottom: 20px; }

@media screen and (max-width: 767px) {
  .pd-sm-t-30 {
    padding-top: 30px; }

  .pd-sm-b-30 {
    padding-bottom: 30px; } }
/*============================================================================
  #CART PAGES
==============================================================================*/
#cart-layout {
  padding: 20px 30px;
  background: white;
  border-radius: 10px; }
  @media screen and (max-width: 767px) {
    #cart-layout {
      padding: 15px;
      margin-bottom: 25px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #cart-layout {
      padding-top: 10px;
      margin-bottom: 30px; } }
  #cart-layout #cart-header {
    padding: 0px 0 15px;
    border-bottom: 1px solid #ebebeb; }
    #cart-layout #cart-header .th {
      text-align: center; }
      #cart-layout #cart-header .th.h6 {
        margin-bottom: 0;
        text-transform: uppercase;
        font-weight: 600;
        text-align: left; }
      #cart-layout #cart-header .th.cart-item-name {
        text-align: left; }
      #cart-layout #cart-header .th.trash {
        display: none; }
      @media screen and (max-width: 767px) {
        #cart-layout #cart-header .th.cart-price {
          display: none; } }
      @media screen and (max-width: 767px) {
        #cart-layout #cart-header .th.cart-total {
          text-align: right; } }
  #cart-layout label {
    display: block;
    margin-bottom: 10px; }

#cart-items .cart-item {
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
  position: relative; }
  #cart-items .cart-item:last-child {
    border-bottom: none; }
  @media screen and (max-width: 767px) {
    #cart-items .cart-item {
      padding: 20px 0; } }
  @media screen and (max-width: 767px) {
    #cart-items .cart-item .cart-item-wrap {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; } }
  @media screen and (min-width: 768px) {
    #cart-items .cart-item > .grid, #cart-items .cart-item > .grid--rev, #cart-items .cart-item > .grid--full {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; } }
  #cart-items .cart-item .tr {
    text-align: center; }
    #cart-items .cart-item .tr.trash {
      float: left;
      margin-left: 10px;
      line-height: 45px; }
  #cart-items .cart-item .cart-product {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    @media screen and (max-width: 767px) {
      #cart-items .cart-item .cart-product {
        padding-bottom: 15px;
        padding-right: 20px;
        position: relative; } }
    #cart-items .cart-item .cart-product .item-img {
      height: 120px;
      width: 100px;
      margin-right: 30px; }
      @media screen and (max-width: 991px) {
        #cart-items .cart-item .cart-product .item-img {
          margin-right: 15px; } }
      @media screen and (max-width: 767px) {
        #cart-items .cart-item .cart-product .item-img {
          height: 95px;
          width: 80px;
          float: left; } }
      #cart-items .cart-item .cart-product .item-img a {
        display: block;
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-flex-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center; }
        #cart-items .cart-item .cart-product .item-img a img {
          max-height: 100%;
          display: block;
          margin: auto;
          width: 100%; }
    #cart-items .cart-item .cart-product .cart-des {
      text-align: left;
      width: calc(100% - 130px); }
      @media screen and (max-width: 767px) {
        #cart-items .cart-item .cart-product .cart-des {
          padding-right: 10px;
          float: left; } }
      #cart-items .cart-item .cart-product .cart-des span {
        text-transform: capitalize;
        padding-right: 5px;
        font-weight: 600;
        text-transform: capitalize; }
        #cart-items .cart-item .cart-product .cart-des span b {
          font-weight: 500; }
      #cart-items .cart-item .cart-product .cart-des h6 {
        font-size: 15px;
        margin-bottom: 6px;
        font-weight: 600;
        letter-spacing: 0px; }
      #cart-items .cart-item .cart-product .cart-des p {
        width: 100%;
        margin-bottom: 0;
        font-size: 13px;
        line-height: 20px;
        color: #8a96a2; }
    @media screen and (min-width: 768px) {
      #cart-items .cart-item .cart-product .trash {
        display: none; } }
    @media screen and (max-width: 767px) {
      #cart-items .cart-item .cart-product .trash {
        float: right;
        position: absolute;
        right: 10px; } }
    @media screen and (max-width: 767px) {
      #cart-items .cart-item .cart-product .trash i {
        display: inline-block;
        vertical-align: top; } }
  #cart-items .cart-item .cart-price .money {
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    /*@include at-query ($max, $pre-sm) {
  line-height: 30px;
  text-align: left;
}*/ }
  #cart-items .cart-item .cart-total .money {
    font-weight: 700;
    margin-bottom: 0;
    text-align: left; }
    @media screen and (max-width: 767px) {
      #cart-items .cart-item .cart-total .money {
        text-align: right; } }
  #cart-items .cart-item .qty-select {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    #cart-items .cart-item .qty-select .product_qty {
      display: inline-block; }
  #cart-items .cart-item .trash a {
    /* color: #f05c70; */
    /* border: 1px solid; */
    height: 20px;
    width: 20px;
    line-height: 58px;
    display: block;
    /* border-radius: 50%; */
    /* font-weight: 400; */
    /* font-size: 14px; */ }
    #cart-items .cart-item .trash a:hover {
      color: #ebebeb; }

#checkout-section {
  padding-top: 40px; }
  #checkout-section .cart_total {
    text-align: right;
    margin-bottom: 20px; }
    #checkout-section .cart_total h4 {
      font-weight: 400;
      text-transform: capitalize; }
      #checkout-section .cart_total h4 .money {
        font-weight: 500;
        padding-left: 10px; }
  #checkout-section .checkout-btn-section {
    text-align: right; }
    @media screen and (max-width: 767px) {
      #checkout-section .checkout-btn-section {
        padding-bottom: 15px; } }
    #checkout-section .checkout-btn-section .btn {
      text-transform: uppercase; }
      @media screen and (max-width: 767px) {
        #checkout-section .checkout-btn-section .btn {
          width: 100%;
          text-align: center;
          margin-top: 5px; } }
    #checkout-section .checkout-btn-section .btn--ghost {
      border: 2px solid #ebebeb;
      background: transparent;
      color: #ebebeb;
      text-transform: capitalize;
      padding: 6px 25px 5px; }
      #checkout-section .checkout-btn-section .btn--ghost:hover {
        background-color: #ebebeb;
        color: #ebebeb; }
    #checkout-section .checkout-btn-section p {
      margin-top: 15px;
      color: #9c9c9c; }
      @media screen and (max-width: 767px) {
        #checkout-section .checkout-btn-section p {
          text-align: center; } }

.empty_cart {
  padding: 40px 0; }
  .empty_cart .empty_img {
    width: 80px;
    height: 80px;
    margin: 0 auto 45px; }
  .empty_cart p {
    margin: 0 0 10px 0px;
    color: #9c9c9c; }
  .empty_cart .btn {
    text-transform: capitalize; }

/*============================================================================
  #SEARCH PAGES
==============================================================================*/
.search-box .search-bar {
  max-width: 570px;
  margin: 0px auto 25px;
  position: relative;
  display: table;
  border-collapse: separate; }
.search-box h5 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px; }

#search-collection,
#blog-collection {
  padding-top: 60px; }
  @media screen and (max-width: 767px) {
    #search-collection,
    #blog-collection {
      padding-top: 40px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #search-collection,
    #blog-collection {
      padding-top: 50px; } }

/*============================================================================
  #COLLECTIOS PAGES
==============================================================================*/
#collections-view {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ebebeb; }
  @media screen and (max-width: 767px) {
    #collections-view {
      padding-bottom: 40px;
      margin-bottom: 40px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #collections-view {
      padding-bottom: 50px;
      margin-bottom: 50px; } }
  #collections-view .collections-header {
    padding-bottom: 40px;
    text-align: center; }
    @media screen and (max-width: 991px) {
      #collections-view .collections-header {
        padding-bottom: 30px; } }
    #collections-view .collections-header h3 {
      margin-bottom: 0;
      text-transform: uppercase; }
  #collections-view .product_list {
    padding-bottom: 50px; }
    @media screen and (max-width: 991px) {
      #collections-view .product_list {
        padding-bottom: 40px; } }
    #collections-view .product_list .product_item {
      margin-bottom: 0; }
  #collections-view .collections-footer {
    text-align: center; }

#collections-list #collections-view:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0; }

/*============================================================================
  #404 ERROR
==============================================================================*/
#error-page {
  background: #fff;
  width: 100%;
  position: fixed;
  height: 100vh;
  overflow: hidden;
  /*@include at-query ($post-xm, $pre-sm) {
        position: relative;
        height: 150vh;
        overflow: visible;
    }*/ }
  #error-page .error-content {
    position: relative;
    height: 100%; }
    #error-page .error-content .brand-name {
      display: inline-block;
      position: absolute;
      left: 50%;
      top: 40px;
      width: 180px;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      /*@include transform(translateX(-50%));*/ }
      @media screen and (min-width: 768px) and (max-width: 1199px) {
        #error-page .error-content .brand-name {
          top: 30px;
          width: 140px; } }
      @media screen and (max-width: 767px) {
        #error-page .error-content .brand-name {
          top: 30px;
          width: 120px; } }
      #error-page .error-content .brand-name a {
        display: block; }
        #error-page .error-content .brand-name a img {
          display: block; }
  #error-page .error_msg {
    max-width: 570px;
    width: 100%;
    padding: 0 10px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /*@include transform(translate(-50%, -50%));*/ }
    #error-page .error_msg .error-img {
      max-width: 180px;
      margin: 0 auto 35px;
      display: block; }
      @media screen and (min-width: 768px) and (max-width: 1199px) {
        #error-page .error_msg .error-img {
          max-width: 160px;
          margin: 0 auto 30px; } }
      @media screen and (max-width: 767px) {
        #error-page .error_msg .error-img {
          max-width: 120px;
          margin: 0 auto 30px; } }
    #error-page .error_msg h2 {
      text-transform: capitalize;
      font-weight: 500;
      margin-bottom: 6px; }
      @media screen and (min-width: 768px) and (max-width: 1199px) {
        #error-page .error_msg h2 {
          font-size: 36px; } }
      @media screen and (max-width: 767px) {
        #error-page .error_msg h2 {
          font-size: 26px; } }
    #error-page .error_msg p {
      color: #9c9c9c;
      letter-spacing: 1px; }
      @media screen and (max-width: 767px) {
        #error-page .error_msg p {
          font-size: 13px;
          line-height: 22px;
          letter-spacing: 0; } }
    #error-page .error_msg .btn {
      margin-top: 30px; }
      @media screen and (min-width: 768px) and (max-width: 1199px) {
        #error-page .error_msg .btn {
          margin-top: 20px; } }
      @media screen and (max-width: 767px) {
        #error-page .error_msg .btn {
          margin-top: 15px; } }
  #error-page .bottom_social {
    position: absolute;
    padding: 0 10px;
    width: 100%;
    bottom: 40px;
    left: 50%;
    /*@include transform(translateX(-50%));*/
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    text-align: center; }
    @media screen and (max-width: 767px) {
      #error-page .bottom_social {
        bottom: 20px; } }
    #error-page .bottom_social .social-links {
      list-style: none;
      display: inline-block; }
      #error-page .bottom_social .social-links li {
        margin: 0 7px;
        float: left; }
        #error-page .bottom_social .social-links li a {
          width: 40px;
          height: 40px;
          line-height: 38px;
          color: #ebebeb;
          background-color: #48484a;
          font-size: 20px;
          display: inline-block;
          text-align: center;
          border-radius: 50%;
          -webkit-border-radius: 50%;
          -o-border-radius: 50%;
          -ms-border-radius: 50%;
          -moz-border-radius: 50%;
          -webkit-transition: all 0.5s ease-in-out;
          -o-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out; }
          #error-page .bottom_social .social-links li a:hover {
            background-color: #f05c70; }
    #error-page .bottom_social .social {
      text-align: center; }
      #error-page .bottom_social .social li {
        display: inline-block;
        margin-right: 15px;
        float: none; }

.product_qty {
  border: 1px solid #ebebeb; }
  .product_qty .minus, .product_qty .plus {
    width: 24px;
    height: 24px;
    float: left;
    position: relative;
    background-color: #ccc; }
    .product_qty .minus span, .product_qty .plus span {
      float: left;
      font-size: 16px;
      text-transform: uppercase;
      color: #5e5f63;
      line-height: 21px;
      font-weight: 500;
      margin-right: 15px; }
    .product_qty .minus:after, .product_qty .plus:after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 12px;
      height: 2px;
      background: #fff;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .product_qty .plus {
    background: #ccc; }
    .product_qty .plus:after {
      background: #fff; }
    .product_qty .plus:before {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 2px;
      height: 12px;
      background: #fff;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .product_qty input[type="text"].product-quantity {
    margin-bottom: 0;
    width: 35px;
    height: 24px;
    float: left;
    border: 0;
    background-color: transparent;
    text-align: center;
    padding: 0px 10px;
    line-height: 52px;
    font-size: 14px;
    color: #48484a; }

section {
  clear: both; }

/** BxSlider
===================================*/
.full-height .image-wrap {
  height: 610px;
  position: relative;
  z-index: 1;
  cursor: pointer; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .full-height .image-wrap {
      height: 520px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .full-height .image-wrap {
      height: 500px; } }
  @media screen and (max-width: 767px) {
    .full-height .image-wrap {
      height: 300px; } }
  .full-height .image-wrap:after {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: none; }
  .full-height .image-wrap:hover:after {
    height: 100%;
    width: calc(100% - 18px); }

.bxslider li .slider-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative; }
  .bxslider li .slider-inner .content-wrap {
    padding: 0 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2; }
    .bxslider li .slider-inner .content-wrap h4 {
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 8px; }
      @media screen and (max-width: 767px) {
        .bxslider li .slider-inner .content-wrap h4 {
          display: none; } }
    .bxslider li .slider-inner .content-wrap h5 {
      font-style: italic;
      margin-bottom: 45px; }
      @media screen and (max-width: 767px) {
        .bxslider li .slider-inner .content-wrap h5 {
          display: none; } }
.bxslider .mobile-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center; }

.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1; }
  .bx-wrapper img {
    max-width: 100%;
    display: block; }
  .bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 9; }
  .bx-wrapper .bx-pager {
    text-align: center;
    font-size: 0.85em;
    font-family: Arial;
    font-weight: bold;
    color: #666; }
    .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item {
      display: inline-block;
      *zoom: 1;
      *display: inline; }
      .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a {
        background: #262624;
        text-indent: -9999px;
        display: block;
        width: 16px;
        height: 16px;
        margin: 0 5px;
        outline: 0;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        -moz-border-radius: 50%;
        position: relative;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s; }
        .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a:hover {
          background: #f05c70; }
        .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a:after {
          position: absolute;
          content: "";
          left: -4px;
          top: -4px;
          border: 2px solid transparent;
          border-radius: 50%;
          -webkit-border-radius: 50%;
          -o-border-radius: 50%;
          -ms-border-radius: 50%;
          -moz-border-radius: 50%;
          width: 24px;
          height: 24px;
          -webkit-transition: all 0.5s;
          -o-transition: all 0.5s;
          transition: all 0.5s;
          -webkit-transform: scale(0);
          -ms-transform: scale(0);
          -o-transform: scale(0);
          transform: scale(0); }
        .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a.active {
          background: #f05c70; }
          .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a.active:after {
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            border: 2px solid #f05c70; }
  .bx-wrapper .bx-loading {
    min-height: 50px;
    background: url(../images/bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000; }
  .bx-wrapper .bx-controls .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%; }
    .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev {
      left: 10px;
      background-image: url("../../../shop/assets/prev-arrow-icon.png"); }
    .bx-wrapper .bx-controls .bx-controls-direction a.bx-next {
      right: 10px;
      background-image: url("../../../shop/assets/next-arrow-icon.png"); }
    .bx-wrapper .bx-controls .bx-controls-direction a.disabled {
      display: none; }
  .bx-wrapper .bx-controls .bx-controls-auto, .bx-wrapper .bx-controls .bx-pager {
    text-align: center; }
    .bx-wrapper .bx-controls .bx-controls-auto .bx-start, .bx-wrapper .bx-controls .bx-pager .bx-start {
      display: block;
      text-indent: -9999px;
      width: 10px;
      height: 11px;
      outline: 0;
      background: url(../images/controls.png) -86px -11px no-repeat;
      margin: 0 3px; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-start:hover, .bx-wrapper .bx-controls .bx-pager .bx-start:hover {
        background-position: -86px 0; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-start:active, .bx-wrapper .bx-controls .bx-pager .bx-start:active {
        background-position: -86px 0; }
    .bx-wrapper .bx-controls .bx-controls-auto .bx-stop, .bx-wrapper .bx-controls .bx-pager .bx-stop {
      display: block;
      text-indent: -9999px;
      width: 9px;
      height: 11px;
      outline: 0;
      background: url(../images/controls.png) -86px -44px no-repeat;
      margin: 0 3px; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-stop:hover, .bx-wrapper .bx-controls .bx-pager .bx-stop:hover {
        background-position: -86px -33px; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-stop:active, .bx-wrapper .bx-controls .bx-pager .bx-stop:active {
        background-position: -86px -33px; }
  .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%; }
  .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto, .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    right: 0;
    width: 35px; }
  .bx-wrapper .bx-caption {
    position: absolute;
    right: 10%;
    width: 100%;
    top: 50%;
    max-width: 450px;
    transform: translateY(-50%); }
    .bx-wrapper .bx-caption h1 {
      color: #c99947;
      margin-bottom: 0;
      line-height: 1.2; }
    .bx-wrapper .bx-caption h4 {
      color: #c99947;
      display: block;
      font-family: "Old Standard TT", serif;
      color: #fff;
      font-style: italic; }

.bx-wrapper .bx-controls-auto .bx-controls-auto-item, .bx-wrapper .bx-pager .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline; }

@media screen and (min-width: 320px) and (max-width: 767px) {
  .combined-height li {
    height: 100vh; }

  .bxslider li {
    background-position: center center;
    background-repeat: no-repeat; }

  .bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
    /*bottom: -30px;*/ }
  .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a {
    width: 12px;
    height: 12px;
    margin: 0 10px; }
    .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a:after {
      width: 20px;
      height: 20px; } }
.btn {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  -moz-border-radius: 30px;
  border: 2px solid #0088cb;
  padding: 15px 21px 14px;
  font-weight: 400;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
  font-family: inherit;
  text-align: center;
  border: 1px solid transparent;
  color: #fff;
  background: #0088cb;
  border: 2px solid #0088cb;
  line-height: 1.2; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .btn {
      padding: 10px 20px; } }
  @media screen and (max-width: 767px) {
    .btn {
      padding: 10px 15px;
      font-size: 15px; } }
  .btn.disabled-btn {
    background: #cbcbcb;
    color: white;
    border-color: #cbcbcb;
    pointer-events: none; }
  .btn.btn-small {
    padding: 7px 19px; }
  .btn.btn-full {
    padding-left: 0;
    padding-right: 0;
    width: 100%; }
  .btn:hover {
    background: #fff;
    color: #0088cb;
    border: 2px solid #0088cb; }
  .btn.full-width {
    width: 100%;
    text-align: center; }

.btn-secondary {
  background-color: #78b898;
  border: 2px solid #78b898; }
  .btn-secondary:hover {
    background-color: #2e4676;
    border: 2px solid #2e4676;
    color: #fff; }

.btn-third {
  background-color: #cec1b5;
  border: 2px solid #cec1b5; }
  .btn-third:hover {
    background-color: #ebdfd5;
    border: 2px solid #ebdfd5; }

.btn-fourth {
  background-color: #e0835f;
  border: 2px solid #e0835f; }
  .btn-fourth:hover {
    background-color: #e2a38b;
    border: 2px solid #e2a38b; }

.btn-white {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000; }
  .btn-white:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff; }

.btn-ghost {
  background-color: transparent;
  color: #2e4676;
  border: 2px solid #2e4676; }
  @media screen and (max-width: 767px) {
    .btn-ghost {
      padding-bottom: 8px;
      padding-top: 8px; } }
  .btn-ghost:focus, .btn-ghost:hover {
    background-color: #2e4676;
    color: #fff;
    border: 2px solid #2e4676; }

.btn-ghost-secondary {
  background-color: transparent;
  color: #78b898;
  border: 2px solid #78b898; }
  .btn-ghost-secondary:hover {
    background-color: #78b898;
    border: 2px solid #78b898;
    color: #fff; }

.btn-ghost-third {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff; }
  .btn-ghost-third:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff;
    color: #fff; }

.btn-ghost-fourth {
  background-color: transparent;
  color: #48484a;
  border: 2px solid #48484a; }
  .btn-ghost-fourth:hover {
    background: #48484a;
    border: 2px solid #48484a;
    color: #fff; }

/* .moon-btn {
    padding: 0;
    width: 42px;
    height: 41px;

    i {
        font-size: 25px;
    }
} */
.custom-input-wrapper {
  position: relative; }
  .custom-input-wrapper input[type="radio"],
  .custom-input-wrapper input[type="checkbox"] {
    display: none; }

.custom-checkbox {
  background: #fff; }
  .custom-checkbox input[type="checkbox"]:checked ~ label:before {
    border: 1px solid #3f4d69;
    background-color: #3f4d69;
    content: "\f00c";
    font-family: FontAwesome;
    text-decoration: inherit;
    color: #fff;
    position: absolute;
    bottom: 0;
    margin: auto;
    margin: 0;
    text-align: center;
    line-height: 15px;
    font-size: 10px; }
  .custom-checkbox input[type="checkbox"]:checked ~ label {
    color: #48484a; }
    .custom-checkbox input[type="checkbox"]:checked ~ label span {
      display: inline-block; }
  .custom-checkbox label {
    font-size: 16px;
    /*text-transform: uppercase;*/
    cursor: pointer;
    font-weight: 400;
    margin-left: 35px;
    margin-bottom: 0; }
    .custom-checkbox label span {
      display: none; }
  .custom-checkbox label:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border: 1px solid #ffc802;
    width: 20px;
    height: 20px;
    background-color: transparent; }

.custom-radiobox.white input[type="radio"]:checked + label:after {
  transform: scale(1);
  opacity: 1; }
.custom-radiobox.white input[type="radio"]:checked + label:before {
  border: 3px solid #ebebeb; }
.custom-radiobox.white label::before {
  border: 1px solid #ebebeb;
  background: white; }
.custom-radiobox.white label:after {
  border: 2px solid #ebebeb;
  background: #ebebeb;
  height: 12px;
  width: 12px;
  top: 6px;
  left: 5px;
  transform: scale(0);
  opacity: 0; }
.custom-radiobox.custom-color.gold label:before {
  background-color: #dbc2a1;
  background-image: -webkit-gradient(linear, left top, right top, from(#dbc2a1), to(#f8e0c8));
  background-image: -webkit-linear-gradient(left, right, #dbc2a1, #f8e0c8);
  background-image: -moz-linear-gradient(left, right, #dbc2a1, #f8e0c8);
  background-image: -ms-linear-gradient(left, right, #dbc2a1, #f8e0c8);
  background-image: -o-linear-gradient(left, right, #dbc2a1, #f8e0c8);
  background-image: linear-gradient(left, right, #dbc2a1, #f8e0c8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dbc2a1', endColorStr='#f8e0c8'); }
.custom-radiobox.custom-color.silver label:before {
  background-color: #acacae;
  background-image: -webkit-gradient(linear, left top, right top, from(#acacae), to(#e4e4e5));
  background-image: -webkit-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: -moz-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: -ms-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: -o-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: linear-gradient(left, right, #acacae, #e4e4e5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#acacae', endColorStr='#e4e4e5'); }
.custom-radiobox.custom-color.silver label:before {
  background-color: #acacae;
  background-image: -webkit-gradient(linear, left top, right top, from(#acacae), to(#e4e4e5));
  background-image: -webkit-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: -moz-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: -ms-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: -o-linear-gradient(left, right, #acacae, #e4e4e5);
  background-image: linear-gradient(left, right, #acacae, #e4e4e5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#acacae', endColorStr='#e4e4e5'); }
.custom-radiobox.custom-color.rose-gold label:before {
  background-color: #e7b9b6;
  background-image: -webkit-gradient(linear, left top, right top, from(#e7b9b6), to(#fad1cd));
  background-image: -webkit-linear-gradient(left, right, #e7b9b6, #fad1cd);
  background-image: -moz-linear-gradient(left, right, #e7b9b6, #fad1cd);
  background-image: -ms-linear-gradient(left, right, #e7b9b6, #fad1cd);
  background-image: -o-linear-gradient(left, right, #e7b9b6, #fad1cd);
  background-image: linear-gradient(left, right, #e7b9b6, #fad1cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#e7b9b6', endColorStr='#fad1cd'); }
.custom-radiobox.custom-color input[type="radio"]:checked + label:after {
  transform: scale(1);
  opacity: 1; }
.custom-radiobox.custom-color input[type="radio"]:checked + label:before {
  border: none; }
.custom-radiobox.custom-color label::before {
  border: none;
  background: black; }
.custom-radiobox.custom-color label:after {
  border: 2px solid white;
  background: none;
  height: 14px;
  width: 14px;
  top: 5px;
  left: 4px;
  transform: scale(0);
  opacity: 0; }
.custom-radiobox input[type="radio"]:checked + label:after {
  transform: scale(1);
  opacity: 1; }
.custom-radiobox input[type="radio"]:checked + label:before {
  border: 3px solid #0088cb; }
.custom-radiobox label {
  font-size: 16px;
  /*text-transform: uppercase;*/
  cursor: pointer;
  font-weight: 500;
  padding-left: 35px;
  margin-bottom: 0;
  position: relative; }
  .custom-radiobox label span {
    display: none; }
.custom-radiobox label:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 1px solid #ebebeb;
  width: 22px;
  height: 22px;
  background-color: transparent;
  left: 0; }
.custom-radiobox label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #0088cb;
  border-radius: 100%;
  position: absolute;
  top: 7px;
  left: 6px;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s; }

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: none; }
  .popup .popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999999; }
  .popup .popup-box {
    background-color: #fff;
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 960px;
    max-height: 90vh;
    overflow: auto;
    padding: 30px;
    z-index: 99999999; }
    @media screen and (max-width: 767px) {
      .popup .popup-box {
        padding: 30px 10px 10px;
        max-height: 80vh; } }
  .popup .close img {
    display: inline-block;
    margin: 0;
    max-width: 15px;
    cursor: pointer; }

::-moz-selection {
  text-shadow: none;
  color: #fff;
  background-color: #694cff; }

::selection {
  text-shadow: none;
  color: #fff;
  background-color: #694cff; }

img::selection {
  background: 0 0; }

img::-moz-selection {
  background: 0 0; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

@media (min-width: 320px) and (max-width: 767px) {
  .text-xs-center {
    text-align: center; }

  .text-xs-left {
    text-align: left; }

  .text-xs-right {
    text-align: right; }

  .text-xs-justify {
    text-align: justify; } }
@media (min-width: 768px) and (max-width: 991px) {
  .text-sm-center {
    text-align: center; }

  .text-sm-left {
    text-align: left; }

  .text-sm-right {
    text-align: right; }

  .text-sm-justify {
    text-align: justify; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .text-md-center {
    text-align: center; }

  .text-md-left {
    text-align: left; }

  .text-md-right {
    text-align: right; }

  .text-md-justify {
    text-align: justify; } }
.page-heading {
  font-size: 28px; }
  @media screen and (min-width: 320px) {
    .page-heading {
      font-size: calc( 28px + 62 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .page-heading {
      font-size: 90px; } }

.page-sub-heading {
  font-size: 18px; }
  @media screen and (min-width: 320px) {
    .page-sub-heading {
      font-size: calc( 18px + 14 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .page-sub-heading {
      font-size: 32px; } }

.heading {
  font-size: 18px;
  letter-spacing: 0px;
  font-weight: 500; }
  @media screen and (min-width: 320px) {
    .heading {
      font-size: calc( 18px + 9 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .heading {
      font-size: 27px; } }

.banner-heading {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px; }
  @media screen and (min-width: 320px) {
    .banner-heading {
      font-size: calc( 20px + 50 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .banner-heading {
      font-size: 70px; } }

.banner-sub-heading {
  font-size: 24px; }
  @media screen and (min-width: 320px) {
    .banner-sub-heading {
      font-size: calc( 24px + 12 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .banner-sub-heading {
      font-size: 36px; } }

.banner-description {
  font-size: 14px; }
  @media screen and (min-width: 320px) {
    .banner-description {
      font-size: calc( 14px + 6 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .banner-description {
      font-size: 20px; } }

.sub-title {
  font-size: 17px; }
  @media screen and (min-width: 320px) {
    .sub-title {
      font-size: calc( 17px + 5 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .sub-title {
      font-size: 22px; } }

.description {
  font-size: 12px; }
  @media screen and (min-width: 320px) {
    .description {
      font-size: calc( 12px + 4 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .description {
      font-size: 16px; } }

.description-lg {
  font-size: 14px; }
  @media screen and (min-width: 320px) {
    .description-lg {
      font-size: calc( 14px + 4 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .description-lg {
      font-size: 18px; } }

.acc-sub-title {
  font-size: 18px; }

.header-top {
  font-size: 10px;
  letter-spacing: 0.5px; }
  @media screen and (min-width: 320px) {
    .header-top {
      font-size: calc( 10px + 4 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .header-top {
      font-size: 14px; } }

h1,
.h1 {
  font-size: 24px;
  font-weight: 800; }
  @media screen and (min-width: 320px) {
    h1,
    .h1 {
      font-size: calc( 24px + 18 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h1,
    .h1 {
      font-size: 42px; } }

h2,
.h2 {
  font-size: 18px;
  font-weight: 800; }
  @media screen and (min-width: 320px) {
    h2,
    .h2 {
      font-size: calc( 18px + 14 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h2,
    .h2 {
      font-size: 32px; } }

h3,
.h3 {
  font-size: 14px;
  font-weight: 500; }
  @media screen and (min-width: 320px) {
    h3,
    .h3 {
      font-size: calc( 14px + 4 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h3,
    .h3 {
      font-size: 18px; } }

h4,
.h4 {
  font-size: 14px;
  font-weight: 500; }
  @media screen and (min-width: 320px) {
    h4,
    .h4 {
      font-size: calc( 14px + 2 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h4,
    .h4 {
      font-size: 16px; } }

h5,
.h5 {
  font-size: 16px; }
  @media screen and (min-width: 320px) {
    h5,
    .h5 {
      font-size: calc( 16px + -1 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h5,
    .h5 {
      font-size: 15px; } }

h6,
.h6 {
  font-size: 14px; }
  @media screen and (min-width: 320px) {
    h6,
    .h6 {
      font-size: calc( 14px + 0 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h6,
    .h6 {
      font-size: 14px; } }

h7,
.h7 {
  font-size: 12px; }
  @media screen and (min-width: 320px) {
    h7,
    .h7 {
      font-size: calc( 12px + 0 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h7,
    .h7 {
      font-size: 12px; } }

h8,
.h8 {
  font-size: 12px; }
  @media screen and (min-width: 320px) {
    h8,
    .h8 {
      font-size: calc( 12px + -1 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    h8,
    .h8 {
      font-size: 11px; } }

p {
  font-size: 13px;
  font-weight: 400; }
  @media screen and (min-width: 320px) {
    p {
      font-size: calc( 13px + 2 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    p {
      font-size: 15px; } }

#main_content p {
  margin-bottom: 15px; }

.small {
  font-size: 12px; }
  @media screen and (min-width: 320px) {
    .small {
      font-size: calc( 12px + 0 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .small {
      font-size: 12px; } }

.account_title h2 {
  margin-bottom: 0;
  font-weight: 600; }

/* .heapBox
{
position:relative;
} */
.heapBox * {
  margin: 0;
  padding: 0;
  outline: none; }

.heapBox {
  position: relative;
  background: #fff;
  border: none; }

.heapBox.disabled .holder {
  color: #989898; }

.heapBox.disabled .handler {
  /* background:url(../gfx/heapbox_bg.jpg) repeat-x; */ }

.heapBox a {
  text-decoration: none;
  color: #000; }

.heapBox .holder {
  width: calc(100% - 30px);
  /* overflow:hidden; */
  text-indent: 0px;
  border: none;
  border-right: none;
  height: auto;
  position: relative;
  padding: 12px 18px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600; }

.heapBox .handler {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #101b37;
  line-height: 1;
  display: inline-block;
  margin-left: 0;
  vertical-align: middle;
  content: "";
  margin-top: -3px; }

.heapBox div.heap {
  display: none;
  position: absolute;
  list-style-type: none;
  left: 0;
  width: 100%;
  top: 43px;
  overflow: hidden;
  border: none;
  border-top: none;
  background-color: #151517; }

.heapBox .heap .heapOptions {
  display: block;
  overflow: hidden;
  z-index: 20;
  position: relative;
  transition: all 0.3s;
  overflow: auto;
  max-height: 60vh; }

.heapOption:hover {
  opacity: 0.8; }

.heapBox .heap a.sliderUp {
  display: block;
  width: 100%;
  height: 15px;
  background: #333 url(../gfx/slider_arrow_up.png);
  background-repeat: no-repeat;
  background-position: center center;
  border-bottom: 1px solid #111;
  position: absolute;
  top: 0px;
  z-index: 30; }

.heapBox .heap a.sliderDown {
  display: block;
  width: 100%;
  height: 15px;
  background: #333 url(../gfx/slider_arrow_down.png);
  background-repeat: no-repeat;
  background-position: center center;
  border-top: 1px solid #111;
  position: absolute;
  bottom: 0px;
  z-index: 30; }

.heapBox .heap .heapOptions .heapOption {
  z-index: 20;
  position: relative;
  display: block;
  padding: 10px 17px;
  background: #edb1b3;
  text-transform: capitalize; }

.heapBox .heap .heapOptions .heapOption a {
  width: 100%;
  display: block;
  background: url(../gfx/heapbox_heapitem_bg.jpg) repeat-x;
  text-indent: 0px;
  color: #000;
  font-weight: 600; }

.heapBox .heap .heapOptions .heapOption a:hover {
  background: url(../gfx/heapbox_heapitem_hover_bg.jpg) repeat-x; }

.heapBox .heap .heapOptions .heapOption a.selected {
  background: url(../gfx/heapbox_heapitem_hover_bg.jpg) repeat-x; }

.heapBox .heap .heapOptions .heapOption a.disabled {
  color: #777; }

.heapBox .heap .heapOptions .heapOption a.disabled:hover {
  background: url(../gfx/heapbox_heapitem_bg.jpg) repeat-x; }

/*online fonts*/
/*font-family: 'Poppins', sans-serif;*/
.sticky-header {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  top: 0px;
  z-index: 12;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px; }
  .sticky-header .logo {
    max-width: 150px; }

.after-banner {
  min-height: 200vh; }

.after-scroll-header {
  position: fixed;
  width: 100%;
  top: 0px;
  transform: translateY(-300px);
  z-index: 11;
  transition: all 0.5s;
  background-color: black;
  padding: 10px; }
  .after-scroll-header .logo {
    max-width: 150px; }
  .after-scroll-header.in-view {
    transform: translateY(0px); }

.while-scroll-header {
  background: #f5b335;
  height: auto;
  position: fixed;
  top: 0%;
  transition: top 0.5s ease-in-out;
  width: 100%;
  padding: 10px;
  z-index: 12; }
  .while-scroll-header .logo {
    max-width: 150px; }

.nav-up {
  top: -100%; }

.transparent-header {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px; }
  .transparent-header .logo {
    max-width: 150px; }

.hello-bar {
  background-color: red;
  padding: 0 10px; }
  .hello-bar p {
    color: #fff; }

#main-nav a.active-li {
  color: #0088cb; }
#main-nav ul.menu-list:after {
  display: none; }
#main-nav ul.menu-list li.top-level-link {
  list-style: none;
  float: left;
  display: block;
  /*           padding-left: 8%;

         @include at-query (1025px ,1199px) {
            padding-left: 7%;
         } */ }
  @media (min-width: 1025px) and (max-width: 1199px) {
    #main-nav ul.menu-list li.top-level-link {
      padding: 0 5px; } }
  @media (min-width: 1200px) {
    #main-nav ul.menu-list li.top-level-link {
      padding: 0 10px; } }
  #main-nav ul.menu-list li.top-level-link > a {
    line-height: 65px !important; }
  #main-nav ul.menu-list li.top-level-link a {
    display: block;
    /*padding: 10px 13px;
            margin: 6px 0;*/
    text-decoration: none;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
    font-size: 16px; }
    @media (min-width: 1025px) and (max-width: 1199px) {
      #main-nav ul.menu-list li.top-level-link a {
        font-size: 12px; } }
    @media (min-width: 1200px) and (max-width: 1300px) {
      #main-nav ul.menu-list li.top-level-link a {
        font-size: 15px; } }
    > #main-nav ul.menu-list li.top-level-link a.h5 {
      color: #0088cb; }
    #main-nav ul.menu-list li.top-level-link a.h5 {
      text-align: left;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      font-size: 15px !important; }
    #main-nav ul.menu-list li.top-level-link a.active {
      color: #0088cb; }
  #main-nav ul.menu-list li.top-level-link:hover > a {
    color: #0088cb; }
  #main-nav ul.menu-list li.top-level-link:hover > ul.second-level-ul {
    opacity: 1;
    visibility: visible; }
    #main-nav ul.menu-list li.top-level-link:hover > ul.second-level-ul li {
      overflow: visible;
      padding: 0; }
#main-nav ul.menu-list li.has-level-2 {
  /* Sub menu01 */ }
  #main-nav ul.menu-list li.has-level-2 ul.second-level-ul {
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 99;
    height: auto;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    width: 100%;
    /*min-height: 66vh; */
    box-shadow: 0 -10px 42px 0 rgba(0, 0, 0, 0.1);
    padding: 15px;
    /*&:after {
              position: absolute;
              content: '';
              left: 0;
              top: 0;
              width: 100%;
              height: 10%;
              box-shadow: 0px 2px 5px 0 rgba(0,0,0,0.09) inset;
            }*/
    -webkit-transition: opacity 0.25s ease 0.1s;
    -o-transition: opacity 0.25s ease 0.1s;
    transition: opacity 0.25s ease 0.1s; }
    #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu {
      column-count: 7;
      -moz-column-count: 7;
      -webkit-column-count: 7;
      column-fill: balance;
      background-color: white !important;
      background-size: 100% auto;
      background-position: bottom right;
      background-repeat: no-repeat;
          /*                 &.samsung-dropdown{
                  @media (min-width:1025px) and (max-width:1199px) {


                  }
                } */ }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu.apple-dropdown {
        column-count: 6;
        -moz-column-count: 6;
        -webkit-column-count: 6; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu li {
        width: 100%; }
    #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.level-1-dropdown-open {
      min-height: auto;
      -moz-column-count: 5;
      -webkit-column-count: 5;
      column-count: 5;
      overflow-x: auto; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.level-1-dropdown-open a {
        padding: 4px;
        margin: 0;
        border: none;
        text-transform: capitalize;
        font-size: 13px;
        font-weight: 500; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.level-1-dropdown-open ul {
        margin: 0; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.level-1-dropdown-open > li {
        margin-bottom: 9px;
        padding-bottom: 9px !important; }
        #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.level-1-dropdown-open > li .viewall {
          text-transform: uppercase;
          font-weight: 600; }
        #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.level-1-dropdown-open > li > a {
          text-align: left;
          font-weight: 600 !important;
          color: #0088cb;
          text-transform: uppercase !important;
          font-size: 15px !important; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.level-1-dropdown-open li {
        display: block; }
    #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li {
      padding: 0;
      margin: 0;
      text-align: left;
      float: left;
      width: 185px;
      clear: both;
      /*position:relative;*/
      -webkit-transition: height 0.25s ease 0.1s;
      -o-transition: height 0.25s ease 0.1s;
      transition: height 0.25s ease 0.1s;
      /*                     &:first-child{
                    .third-level-ul{
                        display: block;
                        opacity: 1;
                         z-index: 999;
                    }
                } */
      /* Sub menu Level 3 */ }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li.active > a {
        color: #0088cb; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li.active > ul.third-level-ul {
        z-index: 999;
        opacity: 1; }
        #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li.active > ul.third-level-ul > ul > li {
          overflow: visible;
          padding: 0; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li:hover > a {
        color: #0088cb; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li:hover > ul.third-level-ul {
        z-index: 9999;
        opacity: 1; }
        #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li:hover > ul.third-level-ul > ul > li {
          overflow: visible;
          padding: 0; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li > a {
        width: 185px;
        font-size: 15px;
        padding: 7px 22px 7px 10px;
        position: relative;
        margin: 0;
        border: none;
        position: relative;
        text-transform: capitalize; }
        #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li > a:after {
          position: absolute;
          content: ">";
          right: 15px;
          top: 50%;
          transform: translateY(-50%); }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul li.second-level-li:last-child > a {
        border: none; }
#main-nav ul.menu-list ul.third-level-ul {
  position: absolute;
  top: 0px;
  left: 180px;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #fff;
  padding: 20px 40px;
  margin: 0 0 0 20px;
  border-left: 1px solid #ebebeb;
  overflow-y: auto;
  column-count: 5;
  column-fill: auto;
  background-color: transparent !important;
  background-size: 100% auto;
  background-position: bottom right;
  background-repeat: no-repeat;
     /*             @include transition(all .25s ease .1s);
*/ }
  #main-nav ul.menu-list ul.third-level-ul li.third-level-li {
    overflow: hidden;
    padding: 0;
    /*                 width: 20%; */
    float: left;
    position: relative;
    margin-bottom: 9px;
    padding-bottom: 9px !important;
    display: block;
    width: 100%;
    /*@include transition(height .25s ease .1s);*/
    /*               &:after{
            position: absolute;
            content: "";
            border-bottom: 1px solid #ccc;
            bottom: 0;
            width: 100%;
          } */ }
    #main-nav ul.menu-list ul.third-level-ul li.third-level-li:nth-child(5n + 1) {
      /*                clear: both;  */ }
    #main-nav ul.menu-list ul.third-level-ul li.third-level-li a {
      padding: 4px;
      margin: 0;
      border: none;
      text-transform: capitalize;
      font-size: 12px;
      font-weight: 500; }
      #main-nav ul.menu-list ul.third-level-ul li.third-level-li a.viewall {
        text-transform: uppercase;
        font-weight: 600; }
      #main-nav ul.menu-list ul.third-level-ul li.third-level-li a.active-li-black {
        color: #48484a; }
    #main-nav ul.menu-list ul.third-level-ul li.third-level-li:last-child > a {
      border: none; }
#main-nav ul.menu-list ul.fourth-level-ul {
  margin: 0; }
  #main-nav ul.menu-list ul.fourth-level-ul li.fourth-level-li {
    width: 100%; }

@media only screen and (min-width: 1025px) {
  #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu .second-level-li {
    clear: none;
    margin-bottom: 0;
    padding-bottom: 0;
    /*       width: 14.28%; */
    width: auto;
    margin-bottom: 15px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid; }
    #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu .second-level-li > a {
      width: 100%;
      font-size: 14px;
      padding: 0 0 10px 0;
      position: relative;
      margin: 0 !important;
      border: none;
      position: relative;
      text-transform: uppercase;
      margin-bottom: 10px; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu .second-level-li > a:after {
        display: none; }
  #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu .second-level-li > a {
    color: #0088cb;
    text-transform: initial !important; }
  #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu .third-level-ul {
    z-index: 999;
    opacity: 1;
    padding: 0;
    margin: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    border-left: none;
    overflow-y: auto;
    column-count: 1; }
    #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu .third-level-ul .third-level-li {
      margin-bottom: 0px;
      padding-bottom: 0 !important; }
      #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu .third-level-ul .third-level-li a {
        padding: 0 0 8px;
        margin: 0;
        border: none;
        text-transform: initial !important;
        font-weight: 500 !important;
        font-size: 12px !important; }

  .level-1-dropdown > a {
    position: relative; }
    .level-1-dropdown > a:after {
      content: "\f107";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      font-size: 16px;
      padding-right: 0;
      top: auto;
      left: 0; } }
@media only screen and (min-width: 1199px) {
  #main-nav
  ul.menu-list
  li.has-level-2
  ul.second-level-ul.vertical-menu
  .third-level-ul
  .third-level-li
  a {
    font-size: 12px !important; } }
/*======================================================================
  #mean-menu
=======================================================================*/
/* hide the link until viewport size is reached */
a.meanmenu-reveal {
  display: none; }

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: relative;
  padding: 0;
  min-height: 40px;
  z-index: 999999;
  box-shadow: 0 14px 42px 0 rgba(0, 0, 0, 0.15); }
.mean-container a.meanmenu-reveal {
  width: 24px;
  height: 24px;
  display: block !important;
  position: absolute;
  right: 15px !important;
  cursor: pointer;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%); }
  .mean-container a.meanmenu-reveal span {
    display: block;
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 24px;
    height: 2px;
    left: 0px;
    background: #454545;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .mean-container a.meanmenu-reveal span:before, .mean-container a.meanmenu-reveal span:after {
      position: absolute;
      display: block;
      left: 0;
      width: 24px;
      height: 2px;
      background-color: #454545;
      content: "";
      -webkit-transition: background 0.3s;
      -o-transition: background 0.3s;
      transition: background 0.3s; }
    .mean-container a.meanmenu-reveal span:before {
      top: -7px;
      -webkit-transition-property: top, -webkit-transform;
      -moz-transition-property: top, -moz-transform;
      -ms-transition-property: top, -ms-transform;
      transition-property: top, transform; }
    .mean-container a.meanmenu-reveal span:after {
      bottom: -7px;
      -webkit-transition-property: bottom, -webkit-transform;
      -moz-transition-property: bottom, -moz-transform;
      -ms-transition-property: bottom, -ms-transform;
      transition-property: bottom, transform; }
  .mean-container a.meanmenu-reveal.meanclose span {
    background: none; }
    .mean-container a.meanmenu-reveal.meanclose span:after {
      bottom: 0;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition-delay: 0s;
      transition-delay: 0s; }
    .mean-container a.meanmenu-reveal.meanclose span:before {
      top: 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition-delay: 0s;
      transition-delay: 0s; }
.mean-container .mean-nav {
  float: left;
  width: 100%; }
  .mean-container .mean-nav ul {
    float: left;
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none; }
    .mean-container .mean-nav ul li {
      float: left;
      width: 100%;
      position: relative; }
      .mean-container .mean-nav ul li a {
        display: block;
        float: left;
        width: 100%;
        padding: 10px 5%;
        margin: 0;
        text-align: left;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 14px; }
        .mean-container .mean-nav ul li a:hover {
          background: rgba(255, 255, 255, 0.1); }
        .mean-container .mean-nav ul li a.mean-expand {
          width: 42px !important;
          height: 42px;
          border: none !important;
          padding: 0px !important;
          text-align: center;
          position: absolute;
          right: 0;
          top: 0;
          z-index: 2;
          font-weight: 700;
          line-height: 42px; }
          .mean-container .mean-nav ul li a.mean-expand:hover {
            background: none; }
      .mean-container .mean-nav ul li.mean-last a {
        border-bottom: none;
        margin-bottom: 0;
        white-space: nowrap; }
      .mean-container .mean-nav ul li li.second-level-li a {
        width: 100%;
        padding: 10px 7%;
        border-bottom: 1px solid #f1f1f1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        text-shadow: none !important;
        visibility: visible;
        text-transform: uppercase; }
      .mean-container .mean-nav ul li li.third-level-li a {
        padding: 10px 9%;
        text-transform: uppercase; }
      .mean-container .mean-nav ul li li.fourth-level-li a {
        padding: 10px 11%;
        text-transform: uppercase; }
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both; }

.wrapper {
  width: 100%;
  padding: 0;
  margin: 0; }

/*custom style as per website*/
.bj-menu {
  background: #fff;
  z-index: 99;
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: top 0.5s;
  -o-transition: top 0.5s;
  transition: top 0.5s; }
  .bj-menu.attop {
    top: 0 !important; }
  .bj-menu .logo-container {
    position: relative; }
    .bj-menu .logo-container .logo {
      float: left;
      position: relative; }
      .bj-menu .logo-container .logo a {
        display: inline-block; }
  .bj-menu .user-profile * {
    vertical-align: middle; }
  .bj-menu .user-profile-icon {
    max-width: 22px; }
  .bj-menu .cart-icon {
    /*max-width: 28px;*/ }

@media (min-width: 320px) and (max-width: 1024px) {
  .mean-nav ul.menu-list {
    padding-top: 0px;
    background-color: #3584a7;
    background-image: -webkit-gradient(linear, left top, right top, from(#3584a7), to(#30cfd0));
    background-image: -webkit-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: -moz-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: -ms-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: -o-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: linear-gradient(left, right, #3584a7, #30cfd0);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#3584a7', endColorStr='#30cfd0');
    height: 100vh;
    overflow-y: auto;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.6); }
  .mean-nav ul li a {
    width: 100%; }

  .bj-menu .logo-container {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 15px; }
    .bj-menu .logo-container .logo img {
      max-width: 65px; }
  .bj-menu .user-profile {
    position: absolute;
    right: 60px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: 5px; }

  .menu-list {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 270px !important;
    transform: translateX(-110%);
    transition: all 0.5s;
    display: block !important;
    z-index: 99; }
    .menu-list.visible {
      transform: translateX(0%); } }
@media (min-width: 768px) {
  #main-nav ul li {
    /*float: none;*/
       /*                 display: inline-block;
*/ } }
@media (min-width: 768px) and (max-width: 991px) {
  #main-nav ul {
    padding-left: 0; }
    #main-nav ul li a {
      font-size: 12px;
      padding: 5px; }

  .bj-menu .logo-container .logo img {
    max-width: 90px; } }
@media (min-width: 992px) and (max-width: 1199px) {
  #main-nav ul li a {
    font-size: 14px; }

  .bj-menu .logo-container .logo {
    top: -30px;
    left: 30px; }
    .bj-menu .logo-container .logo img {
      max-width: 100px; } }
.flex-container {
  display: flex;
  align-items: center; }

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  /*   font-family: sans-serif;  */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /*   font-family: sans-serif;  */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -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); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 0 15px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-prev::before,
.slick-next::before {
  color: #262624 !important; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 1; }
  .slick-prev:before,
  .slick-next:before {
    content: "\f104";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #000;
    font-size: 28px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    left: 0; }

.slick-prev {
  left: -37px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -37px; }
  .slick-prev:before {
    /*content: $slick-prev-character;*/ }
    [dir="rtl"] .slick-prev:before {
      /*content: $slick-next-character;*/ }

.slick-next {
  right: -37px;
  transform: scale(-1) translate(0, 50%);
  -webkit-transform: scale(-1) translate(0, 50%);
  -moz-transform: scale(-1) translate(0, 50%);
  -ms-transform: scale(-1) translate(0, 50%);
  -o-transform: scale(-1) translate(0, 50%); }
  [dir="rtl"] .slick-next {
    left: -37px;
    right: auto; }
  .slick-next:before {
    /*content: $slick-next-character;*/ }
    [dir="rtl"] .slick-next:before {
      /*content: $slick-prev-character;*/ }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -13px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 48px;
        line-height: 20px;
        text-align: center;
        color: #f05c70;
        opacity: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      opacity: 0.75; }

@media all and (min-width: 320px) and (max-width: 991px) {
  .slick-prev {
    left: -15px; }
    [dir="rtl"] .slick-prev {
      right: -15px; }

  .slick-next {
    right: -15px; }
    [dir="rtl"] .slick-next {
      left: -15px; } }
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
  text-align: center;
  margin-bottom: 5px; }

ul.resp-tabs-list {
  margin-bottom: 20px; }

.resp-tabs-list li {
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  margin: 0 25px;
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #48484a; }
  @media screen and (min-width: 1024px) and (max-width: 1200px) {
    .resp-tabs-list li {
      margin: 0 10px; } }
  .resp-tabs-list li.selected {
    cursor: pointer;
    font-weight: bold;
    color: #0088cb;
    pointer-events: all; }
  .resp-tabs-list li.active, .resp-tabs-list li.selected.active {
    cursor: pointer;
    text-decoration: underline;
    pointer-events: all;
    color: #48484a;
    font-weight: normal; }

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left; }

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none; }

.resp-tab-content {
  display: none;
  padding: 15px 0 0px;
  margin-bottom: 20px; }

.resp-tab-active {
  border-bottom: 1px solid #000;
  margin-bottom: -1px !important;
  color: #000 !important; }

.resp-tab-active {
  background-color: #fff; }

.resp-content-active,
.resp-accordion-active {
  display: block; }

/*.resp-tab-content { border: 1px solid #c1c1c1; }*/
h2.resp-accordion {
  font-size: 13px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 600; }

h2.resp-tab-active {
  border: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important; }

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue; }

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%; }

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 15px 15px !important;
  margin: 0;
  cursor: pointer;
  float: none; }

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  float: left;
  width: 68%;
  min-height: 250px;
  border-radius: 4px;
  clear: none; }

.resp-vtabs .resp-tab-content {
  border: none; }

.resp-vtabs li.resp-tab-active {
  border-bottom: 1px solid #c1c1c1;
  border-right: none;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-right: -1px !important; }

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c1c1c1; }

h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #9b9797; }

.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none; }

.r-tabs .r-tabs-panel {
  display: none; }

.r-tabs .r-tabs-accordion-title {
  display: none; }

.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block; }

.single-device-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap; }

.r-tabs .r-tabs-panel .p-single-device-wrap {
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 20px; }
  @media screen and (max-width: 991px) {
    .r-tabs .r-tabs-panel .p-single-device-wrap {
      padding: 10px; } }
  @media screen and (max-width: 767px) {
    .r-tabs .r-tabs-panel .p-single-device-wrap:nth-child(2n) {
      border-right: none; } }

.r-tabs .r-tabs-panel .grid__item:nth-child(3n) {
  border-right: none; }

/* Tabs container */
/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
  position: relative;
  width: 33%;
  /* display: block; */
  white-space: nowrap;
  /* float: left; */ }

.r-tabs .r-tabs-nav .r-tabs-tab a {
  text-decoration: none; }

.r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active .r-tabs-anchor {
  border-bottom: 3px solid;
  font-weight: 600; }

.r-tabs .r-tabs-nav .r-tabs-anchor {
  display: inline-block;
  padding: 0 0;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  position: relative;
  font-size: 15px;
  white-space: normal; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .r-tabs .r-tabs-nav .r-tabs-anchor {
      font-size: 13px; } }

.r-tabs .r-tabs-nav .r-tabs-anchor:hover {
  color: #48484a; }

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled a {
  color: #48484a; }

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  text-shadow: none;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px; }

/* Tab panel */
.r-tabs .r-tabs-panel {
  background-color: white;
  border-left: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb; }
  @media screen and (max-width: 767px) {
    .r-tabs .r-tabs-panel {
      margin-bottom: 30px; } }

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  display: block;
  padding: 0px 0px 10px;
  /* background-color: #ffc802; */
  /* color: #fff; */
  font-weight: bold;
  text-decoration: none;
  /* text-shadow: 0 1px rgba(0, 0, 0, 0.4); */
  font-size: 14px;
  /* border-top-right-radius: 4px; */
  /* border-top-left-radius: 4px; */
  border-bottom: 1px solid;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 15px; }
  @media screen and (max-width: 767px) {
    .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
      font-size: 16px; } }

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  background-color: #fff;
  text-shadow: none;
  font-weight: 600; }

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
  opacity: 0.5; }

/* Info bar */
.info {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  width: 300px;
  line-height: 100%;
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 14px;
  color: #ffc802;
  border: 2px solid #00ab94;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer; }

/* Accordion responsive breakpoint */
/*-----------Accordion styles-----------*/
h2.resp-tab-active {
  background: #dbdbdb !important; }

.resp-easy-accordion h2.resp-accordion {
  display: block; }

.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1; }

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1 !important; }

.resp-jfit {
  width: 100%;
  margin: 0px; }

.resp-tab-content-active {
  display: block; }

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1 !important; }

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 767px) {
  ul.resp-tabs-list {
    display: none; }

  h2.resp-accordion {
    display: block; }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #c1c1c1; }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: initial;
    clear: none; }

  .resp-accordion-closed {
    display: none !important; }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important; } }
#jquery-script-menu {
  position: fixed;
  height: 90px;
  width: 100%;
  top: 0;
  left: 0;
  border-top: 5px solid #316594;
  background: #fff;
  -moz-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
  z-index: 999999;
  padding: 10px 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.jquery-script-center {
  width: 960px;
  margin: 0 auto; }

.jquery-script-center ul {
  width: 212px;
  float: left;
  line-height: 45px;
  margin: 0;
  padding: 0;
  list-style: none; }

.jquery-script-center a {
  text-decoration: none; }

.jquery-script-ads {
  width: 728px;
  height: 90px;
  float: right; }

.jquery-script-clear {
  clear: both;
  height: 0; }

/**
* jQuery asTooltip v0.4.3
* https://github.com/amazingSurge/jquery-asTooltip
*
* Copyright (c) amazingSurge
* Released under the LGPL-3.0 license
*/
.asTooltip {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.asTooltip-content {
  display: block; }

.asTooltip-inner {
  position: relative; }

.asTooltip-loading,
.asTooltip-close {
  display: none; }

.asTooltip-loading {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  text-align: center;
  -webkit-animation: chasingDotsRotate 2s infinite linear;
  animation: chasingDotsRotate 2s infinite linear; }

.asTooltip-loading:before,
.asTooltip-loading:after {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 60%;
  height: 60%;
  content: "";
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: chasingDotsBounce 2s infinite ease-in-out;
  animation: chasingDotsBounce 2s infinite ease-in-out; }

.asTooltip-loading:before {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s; }

@-webkit-keyframes chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes chasingDotsBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes chasingDotsBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.asTooltip_isLoading .asTooltip-loading {
  display: block; }

.asTooltip_isLoading .asTooltip-content {
  display: none; }

.asTooltip_hasClose .asTooltip-close {
  display: block; }

/* skin */
.asTooltip .asTooltip-inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.2em 0.6em;
  font-size: 1.1em;
  line-height: 1.5em;
  color: #fff;
  background-color: #434240;
  border-radius: 3px; }

.asTooltip .asTooltip-inner:before {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 6px; }

.asTooltip .asTooltip-loading:before,
.asTooltip .asTooltip-loading:after {
  background-color: white; }

.asTooltip.asTooltip-element-top .asTooltip-inner {
  margin-bottom: 6px; }

.asTooltip.asTooltip-element-top .asTooltip-inner:before {
  top: 100%;
  border-top-color: #434240; }

.asTooltip.asTooltip-element-left .asTooltip-inner {
  margin-right: 6px; }

.asTooltip.asTooltip-element-left .asTooltip-inner:before {
  left: 100%;
  border-left-color: #434240; }

.asTooltip.asTooltip-element-right .asTooltip-inner {
  margin-left: 6px; }

.asTooltip.asTooltip-element-right .asTooltip-inner:before {
  right: 100%;
  border-right-color: #434240; }

.asTooltip.asTooltip-element-bottom .asTooltip-inner {
  margin-top: 6px; }

.asTooltip.asTooltip-element-bottom .asTooltip-inner:before {
  bottom: 100%;
  border-bottom-color: #434240; }

.asTooltip.asTooltip-element-left.asTooltip-arrow-middle
.asTooltip-inner:before,
.asTooltip.asTooltip-element-right.asTooltip-arrow-middle
.asTooltip-inner:before {
  top: 50%;
  margin-top: -6px; }

.asTooltip.asTooltip-element-top.asTooltip-arrow-middle .asTooltip-inner:before,
.asTooltip.asTooltip-element-bottom.asTooltip-arrow-middle
.asTooltip-inner:before {
  left: 50%;
  margin-left: -6px; }

.asTooltip.asTooltip-arrow-left .asTooltip-inner:before {
  left: 6px; }

.asTooltip.asTooltip-arrow-right .asTooltip-inner:before {
  right: 6px; }

.asTooltip.asTooltip-arrow-top .asTooltip-inner:before {
  top: 6px; }

.asTooltip.asTooltip-arrow-bottom .asTooltip-inner:before {
  bottom: 6px; }

/* positons */
.position_tooltip {
  height: auto; }

/*.position_tooltip,.show {
    margin: 0.5em;
    background: #ddddff;
    padding: 10px;
    cursor: default;
    float:left;
    width: 150px;
    text-align: center;
}
.show {
    width: auto;
}*/
.trace {
  width: 200px;
  height: 100px; }

.positon_wrap {
  overflow: hidden; }

.position_tooltip:nth-child(3n + 1) {
  clear: left; }

/* Morph Button: Default Styles */
.morph-button {
  position: relative;
  display: block;
  margin: 0 auto; }

.morph-button > button {
  position: relative;
  padding: 0 1em;
  border: none;
  background-color: #e85657;
  color: #f9f6e5;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 80px;
  overflow: hidden; }

.morph-button.open > button {
  pointer-events: none; }

.morph-content {
  pointer-events: none; }

.morph-button.open .morph-content {
  pointer-events: auto; }

/* Common styles for overlay and modal type (fixed morph) */
.morph-button-fixed,
.morph-button-fixed .morph-content {
  width: 300px;
  height: 80px; }

.morph-button-fixed > button {
  z-index: 1000;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.1s 0.5s;
  transition: opacity 0.1s 0.5s; }

.morph-button-fixed.open > button {
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s; }

.morph-button-fixed .morph-content {
  position: fixed;
  z-index: 900;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
  transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s; }

.morph-button-fixed.open .morph-content {
  opacity: 1; }

.morph-button-fixed .morph-content > div {
  visibility: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
  transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s; }

.morph-button-fixed.open .morph-content > div {
  visibility: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.5s;
  transition: opacity 0.3s 0.5s; }

.morph-button-fixed.active > button {
  z-index: 2000; }

.morph-button-fixed.active .morph-content {
  z-index: 1900; }

/* Transitions for overlay button and sidebar button */
.morph-button-overlay .morph-content,
.morph-button-sidebar .morph-content {
  -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
  transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s; }

.morph-button-overlay.open .morph-content,
.morph-button-sidebar.open .morph-content {
  -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
  transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s; }

/* Morph Button Style: Overlay */
.morph-button.morph-button-overlay {
  margin: 50px auto; }

.morph-button-overlay .morph-content {
  overflow: hidden;
  background: #e85657; }

.morph-button-overlay.open .morph-content {
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%; }

/* Morph Button Style: Modal */
.morph-button-modal::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: none; }

.morph-button-modal.open::before {
  opacity: 1;
  pointer-events: auto; }

.morph-button-modal.active::before {
  z-index: 1800; }

.morph-button-modal .morph-content {
  overflow: hidden;
  -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
  transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s; }

.morph-button-modal.open .morph-content {
  top: 50% !important;
  left: 50% !important;
  margin: -210px 0 0 -300px;
  width: 600px;
  height: 420px;
  -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
  transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s; }

/* Colors and sizes for individual modals */
.morph-button.morph-button-modal-1 {
  float: left; }

.morph-button.morph-button-modal-2,
.morph-button.morph-button-modal-3 {
  display: inline-block;
  margin: 10px 15px; }

.morph-button-modal-1 > button,
.morph-button-modal-1 .morph-content {
  background-color: #553445; }

.morph-button-modal-2 > button,
.morph-button-modal-2 .morph-content,
.morph-button-modal-3 > button,
.morph-button-modal-3 .morph-content {
  background-color: #fef0e3;
  color: #e75854; }

.morph-button-modal-4 {
  display: inline-block; }

.morph-button-modal-4 > button,
.morph-button-modal-4 .morph-content {
  background-color: #faf1e0;
  color: #553445; }

.morph-button-modal-4 > button span,
.morph-button-modal-4 .morph-clone {
  padding-left: 10px;
  color: #286f81; }

.morph-button-modal-4 .morph-clone {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 100;
  letter-spacing: 1px;
  font-weight: 700;
  -webkit-transition: bottom 0.4s 0.1s, right 0.4s 0.1s;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s; }

.morph-button-modal-4.open .morph-clone,
.no-js .morph-button-modal-4 .morph-clone {
  right: 10px;
  bottom: 10px; }

.morph-button-modal-1::before {
  background: rgba(240, 221, 204, 0.7); }

.morph-button-modal-2.open .morph-content {
  margin: -210px 0 0 -170px;
  width: 340px;
  height: 420px; }

.morph-button-modal-3.open .morph-content {
  margin: -255px 0 0 -210px;
  width: 420px;
  height: 510px; }

.morph-button-modal-3.open .morph-content > div {
  height: 420px; }

.morph-button-modal-2.open .morph-content > div,
.morph-button-modal-3.open .morph-content > div {
  -webkit-transition: opacity 0.3s 0.3s;
  transition: opacity 0.3s 0.3s; }

.morph-button-modal-4.open .morph-content {
  margin: -200px 0 0 -320px;
  width: 640px;
  height: 400px; }

/* Morph Button Style: In the content flow */
.morph-button-inflow {
  overflow: hidden;
  max-width: 100%;
  height: 70px; }

.morph-button-inflow > button {
  width: 100%;
  line-height: 70px; }

.morph-button-inflow .morph-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.morph-button-inflow .morph-content .morph-clone {
  padding: 0;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 70px; }

/* Colors and sizes for individual in flow buttons */
.morph-button-inflow-1 {
  width: 600px;
  margin: 2em auto;
  -webkit-transition: height 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: height 0.5s cubic-bezier(0.7, 0, 0.3, 1); }

.morph-button-inflow-1 > button span {
  visibility: hidden; }

.morph-button-inflow-1 .morph-content .morph-clone {
  color: #f9f6e5;
  background: #e85657; }

.morph-button-inflow-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  background-color: #fef0e3;
  -webkit-transition: height 0.3s, width 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, width 0.3s, transform 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.morph-button-inflow-2 > button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: #e75854;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s; }

.morph-button-inflow-2.open > button {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.morph-button-inflow-2 .morph-content {
  width: 260px;
  height: 200px; }

.morph-button-inflow-2.open {
  width: 260px; }

/* Morph Button Style: Sidebar */
.morph-button-sidebar,
.morph-button-sidebar .morph-content {
  width: 60px;
  height: 60px; }

.morph-button-sidebar {
  position: fixed;
  bottom: 50px;
  left: 50px; }

.morph-button-sidebar > button {
  line-height: 60px;
  font-size: 1.6em;
  padding: 0; }

.morph-button-sidebar .morph-content {
  background: #e85657; }

.morph-button-sidebar.open .morph-content {
  top: 0 !important;
  left: 0 !important;
  width: 300px;
  height: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden; }

/* Let's add some nice easing for all cases */
.morph-button .morph-content,
.morph-button.open .morph-content,
.morph-button-modal-4 .morph-clone {
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }

/* Helper classes */
.noscroll {
  overflow: hidden; }

.morph-button-overlay.scroll .morph-content {
  overflow-y: scroll; }

.morph-button-sidebar.scroll .morph-content {
  overflow: auto; }

/* No JS fallback: let's hide the button and show the content */
.no-js .morph-button > button {
  display: none; }

.no-js .morph-button {
  margin: 10px 0;
  float: none; }

.no-js .morph-button,
.no-js .morph-button .morph-content,
.no-js .morph-button .morph-content > div {
  position: relative;
  width: auto;
  height: auto;
  opacity: 1;
  visibility: visible;
  top: auto;
  left: auto;
  -webkit-transform: none;
  transform: none;
  pointer-events: auto; }

.no-js .morph-button .morph-content .icon-close {
  display: none; }

.no-js .morph-button-sidebar {
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  height: 100%;
  background: #e85657;
  overflow: auto; }

.no-transition {
  -webkit-transition: none !important;
  transition: none !important; }

/* Media Queries */
@media screen and (max-width: 600px) {
  .morph-button-modal.open .morph-content {
    top: 0% !important;
    left: 0% !important;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
    transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s; } }
@media screen and (max-width: 400px) {
  .morph-button-fixed,
  .morph-button-fixed .morph-content {
    width: 200px;
    height: 80px; }

  .morph-button-fixed > button {
    font-size: 75%; }

  .morph-button-sidebar > button {
    font-size: 1.6em; }

  .morph-button-inflow .morph-content .morph-clone {
    font-size: 0.9em; }

  .morph-button-modal-4,
  .morph-button-modal-4 .morph-content {
    width: 220px;
    height: 120px; }

  .morph-button-modal-4 > button {
    font-size: 100%;
    line-height: 50px; }

  .morph-button-modal-4 > button span {
    display: block; }

  .morph-button-modal-4 .morph-clone {
    right: 83px;
    bottom: 26px; }

  .morph-button-sidebar,
  .morph-button-sidebar .morph-content {
    width: 100% !important;
    height: 60px !important; }

  .morph-button-sidebar {
    bottom: 0px;
    left: 0px; }

  .morph-button-sidebar.open .morph-content {
    height: 100% !important; } }
.banner {
  background: #e7e9ec;
  padding: 0;
  position: relative;
  height: calc(100vh - 104px);
  overflow: hidden;
  clear: both; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .banner {
      height: calc(100vh - 92px); } }
  @media screen and (max-width: 767px) {
    .banner {
      height: calc(100vh - 90px);
      min-height: 550px; } }
  .banner .gradient-bg {
    cursor: pointer; }
    @media screen and (max-width: 767px) {
      .banner .gradient-bg {
        margin-bottom: 10px; } }
  .banner h3 {
    margin-bottom: 0; }
  .banner h1 {
    margin-bottom: 50px;
    font-weight: 700; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .banner h1 {
        margin-bottom: 30px; } }
    @media screen and (max-width: 991px) {
      .banner h1 {
        margin-bottom: 20px; } }
  .banner .banner-inner {
    margin-bottom: 45px; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .banner .banner-inner {
        max-width: 768px;
        margin: 0 auto 20px; } }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      .banner .banner-inner {
        max-width: 460px;
        margin: 0 auto 20px; } }
    @media screen and (max-width: 480px) {
      .banner .banner-inner {
        max-width: 310px;
        margin: 0 auto 20px; } }
    .banner .banner-inner .circleBox {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-direction: column;
      -webkit-flex-direction: column;
      /*         @include  align-items(center); */
      border-radius: 50%;
      justify-content: center;
      -webkit-justify-content: center;
      box-shadow: 0 14px 42px 0px rgba(0, 0, 0, 0.12); }
  .banner .device-issue {
    position: relative; }
    .banner .device-issue > span {
      margin-left: -100px; }
      @media screen and (max-width: 767px) {
        .banner .device-issue > span {
          margin-left: auto; } }
    .banner .device-issue span {
      letter-spacing: 1px;
      margin-right: 10px; }
    .banner .device-issue .view-ml {
      font-weight: 600;
      position: relative; }
      @media screen and (max-width: 767px) {
        .banner .device-issue .view-ml {
          display: block; } }
    .banner .device-issue .view-more-popup-wrap {
      position: absolute;
      text-align: left;
      bottom: 45px;
      border: none !important;
      left: -250px;
      display: none;
      z-index: 99; }
      .banner .device-issue .view-more-popup-wrap.open {
        display: block; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .banner .device-issue .view-more-popup-wrap {
          left: -350px; } }
      @media screen and (max-width: 767px) {
        .banner .device-issue .view-more-popup-wrap {
          left: 0;
          right: 0;
          margin: 0 auto; } }
      .banner .device-issue .view-more-popup-wrap::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 14px solid #fff;
        left: 0;
        right: 0;
        bottom: -14px;
        margin: 0 auto; }
    .banner .device-issue .view-more-popup {
      max-height: 400px;
      overflow-y: auto;
      width: 590px;
      padding: 30px 40px;
      background: white;
      margin: 0 auto; }
      @media screen and (min-width: 992px) and (max-width: 1199px) {
        .banner .device-issue .view-more-popup {
          max-height: 200px; } }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .banner .device-issue .view-more-popup {
          padding: 20px;
          max-height: 270px; } }
      @media screen and (max-width: 767px) {
        .banner .device-issue .view-more-popup {
          width: 90%;
          padding: 10px;
          max-height: 160px; } }
      .banner .device-issue .view-more-popup .description {
        letter-spacing: 1px;
        margin-bottom: 10px;
        font-weight: 600; }
      .banner .device-issue .view-more-popup ul li {
        width: 33%;
        float: left;
        font-weight: 400;
        font-size: 14px;
        text-transform: capitalize;
        margin-bottom: 7px; }
        @media screen and (max-width: 767px) {
          .banner .device-issue .view-more-popup ul li {
            width: 50%;
            font-size: 12px;
            line-height: 1.2;
            margin-bottom: 4px;
            padding-right: 5px; } }
  .banner .explore-link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 1; }
    @media screen and (max-width: 991px) {
      .banner .explore-link {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 10px; } }
    .banner .explore-link h3 {
      font-weight: 600; }
    .banner .explore-link i {
      padding: 0 0 0 10px;
      font-size: 28px;
      font-weight: 500;
      line-height: 0.8;
      display: inline-block;
      vertical-align: bottom; }

.magento-bg {
  background: linear-gradient(100deg, #3584a7, #30cfd0);
  -webkit-animation: 30s ease infinite;
  -moz-animation: 30s ease infinite;
  -o-animation: 30s ease infinite;
  animation: 30s ease infinite; }
@-webkit-keyframes {
  0% {
    background-position: 0% 51%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 51%; } }
@-moz-keyframes {
  0% {
    background-position: 0% 51%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 51%; } }
@-o-keyframes {
  0% {
    background-position: 0% 51%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 51%; } }
@keyframes {
  0% {
    background-position: 0% 51%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 51%; } }
.gradient-bg {
  background-color: red;
  background-image: -webkit-gradient(linear, left top, right top, from(red), to(blue));
  background-image: -webkit-linear-gradient(left, right, red, blue);
  background-image: -moz-linear-gradient(left, right, red, blue);
  background-image: -ms-linear-gradient(left, right, red, blue);
  background-image: -o-linear-gradient(left, right, red, blue);
  background-image: linear-gradient(left, right, red, blue);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='red', endColorStr='blue');
  height: 200px;
  width: 200px;
  -webkit-animation: AnimationName 6s ease infinite;
  -moz-animation: AnimationName 6s ease infinite;
  animation: AnimationName 6s ease infinite; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .gradient-bg {
      height: 140px;
      width: 140px; } }
@-webkit-keyframes AnimationName {
  0% {
    background-position: 7% 0%; }
  50% {
    background-position: 94% 100%; }
  100% {
    background-position: 7% 0%; } }
@-moz-keyframes AnimationName {
  0% {
    background-position: 7% 0%; }
  50% {
    background-position: 94% 100%; }
  100% {
    background-position: 7% 0%; } }
@keyframes AnimationName {
  0% {
    background-position: 7% 0%; }
  50% {
    background-position: 94% 100%; }
  100% {
    background-position: 7% 0%; } }
.gradient-bg {
  height: 170px;
  margin: 0 auto;
  width: 170px;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .gradient-bg {
      height: 140px;
      width: 140px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .gradient-bg {
      height: 125px;
      width: 125px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .gradient-bg {
      height: 100px;
      width: 100px; } }
  @media screen and (max-width: 480px) {
    .gradient-bg {
      height: 90px;
      width: 90px; } }
  .gradient-bg.blue {
    background-color: #164d98;
    background-image: -webkit-gradient(linear, left top, right top, from(#164d98), to(#0088cb));
    background-image: -webkit-linear-gradient(left, right, #164d98, #0088cb);
    background-image: -moz-linear-gradient(left, right, #164d98, #0088cb);
    background-image: -ms-linear-gradient(left, right, #164d98, #0088cb);
    background-image: -o-linear-gradient(left, right, #164d98, #0088cb);
    background-image: linear-gradient(left, right, #164d98, #0088cb);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#164d98', endColorStr='#0088cb'); }
  .gradient-bg.purple {
    background-color: #621fb7;
    background-image: -webkit-gradient(linear, left top, right top, from(#621fb7), to(#b333dd));
    background-image: -webkit-linear-gradient(left, right, #621fb7, #b333dd);
    background-image: -moz-linear-gradient(left, right, #621fb7, #b333dd);
    background-image: -ms-linear-gradient(left, right, #621fb7, #b333dd);
    background-image: -o-linear-gradient(left, right, #621fb7, #b333dd);
    background-image: linear-gradient(left, right, #621fb7, #b333dd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#621fb7', endColorStr='#b333dd'); }
  .gradient-bg.magento {
    background-color: #3584a7;
    background-image: -webkit-gradient(linear, left top, right top, from(#3584a7), to(#30cfd0));
    background-image: -webkit-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: -moz-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: -ms-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: -o-linear-gradient(left, right, #3584a7, #30cfd0);
    background-image: linear-gradient(left, right, #3584a7, #30cfd0);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#3584a7', endColorStr='#30cfd0'); }
  .gradient-bg.pink {
    background-color: #e4267e;
    background-image: -webkit-gradient(linear, left top, right top, from(#e4267e), to(#fc6767));
    background-image: -webkit-linear-gradient(left, right, #e4267e, #fc6767);
    background-image: -moz-linear-gradient(left, right, #e4267e, #fc6767);
    background-image: -ms-linear-gradient(left, right, #e4267e, #fc6767);
    background-image: -o-linear-gradient(left, right, #e4267e, #fc6767);
    background-image: linear-gradient(left, right, #e4267e, #fc6767);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#e4267e', endColorStr='#fc6767'); }
  .gradient-bg.orange {
    background-color: #ff5e62;
    background-image: -webkit-gradient(linear, left top, right top, from(#ff5e62), to(#ff9966));
    background-image: -webkit-linear-gradient(left, right, #ff5e62, #ff9966);
    background-image: -moz-linear-gradient(left, right, #ff5e62, #ff9966);
    background-image: -ms-linear-gradient(left, right, #ff5e62, #ff9966);
    background-image: -o-linear-gradient(left, right, #ff5e62, #ff9966);
    background-image: linear-gradient(left, right, #ff5e62, #ff9966);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ff5e62', endColorStr='#ff9966'); }
  .gradient-bg.yellow {
    background-color: #ff8008;
    background-image: -webkit-gradient(linear, left top, right top, from(#ff8008), to(#ffc837));
    background-image: -webkit-linear-gradient(left, right, #ff8008, #ffc837);
    background-image: -moz-linear-gradient(left, right, #ff8008, #ffc837);
    background-image: -ms-linear-gradient(left, right, #ff8008, #ffc837);
    background-image: -o-linear-gradient(left, right, #ff8008, #ffc837);
    background-image: linear-gradient(left, right, #ff8008, #ffc837);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ff8008', endColorStr='#ffc837'); }

.banner-inner .gradient-bg .banner-image {
  margin-bottom: 10px; }
  @media screen and (max-width: 1199px) {
    .banner-inner .gradient-bg .banner-image {
      margin-bottom: 5px; } }
  @media screen and (max-width: 991px) {
    .banner-inner .gradient-bg .banner-image img {
      max-width: 42px;
      max-height: 32px; } }
.banner-inner .gradient-bg h4 {
  text-transform: uppercase;
  color: white;
  padding: 0 27px;
  margin-bottom: 0;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  font-size: 13px; }
  @media screen and (max-width: 991px) {
    .banner-inner .gradient-bg h4 {
      padding: 0 10px;
      line-height: 1; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .banner-inner .gradient-bg h4 {
      font-size: 10px; } }
  @media screen and (max-width: 480px) {
    .banner-inner .gradient-bg h4 {
      font-size: 10px;
      line-height: 1.2; } }

.diy-repairs {
  padding: 70px 0 80px;
  background: #fff; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .diy-repairs {
      padding: 40px 0 50px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .diy-repairs {
      padding: 30px 0 40px; } }
  @media screen and (max-width: 767px) {
    .diy-repairs {
      padding: 25px 0 25px; } }
  .diy-repairs .diy-shopping-section {
    margin-top: 85px;
    margin-bottom: 65px; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .diy-repairs .diy-shopping-section {
        margin-top: 50px;
        margin-bottom: 35px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .diy-repairs .diy-shopping-section {
        margin-top: 35px;
        margin-bottom: 35px; } }
    @media screen and (max-width: 767px) {
      .diy-repairs .diy-shopping-section {
        margin-top: 20px;
        margin-bottom: 20px; } }
    .diy-repairs .diy-shopping-section .diy-inner:last-child .diy-image::after {
      display: none; }
    .diy-repairs .diy-shopping-section .diy-inner .diy-image {
      height: 100px;
      margin-bottom: 35px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      position: relative; }
      @media screen and (min-width: 992px) and (max-width: 1199px) {
        .diy-repairs .diy-shopping-section .diy-inner .diy-image {
          margin-bottom: 25px; } }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .diy-repairs .diy-shopping-section .diy-inner .diy-image {
          margin-bottom: 15px; } }
      .diy-repairs .diy-shopping-section .diy-inner .diy-image::after {
        content: "\f105";
        font-family: FontAwesome;
        font-style: normal;
        position: absolute;
        right: -20px;
        font-size: 27px;
        color: #e4e4e4;
        font-weight: 600; }
        @media screen and (max-width: 767px) {
          .diy-repairs .diy-shopping-section .diy-inner .diy-image::after {
            display: none; } }
      .diy-repairs .diy-shopping-section .diy-inner .diy-image img {
        max-width: 100%;
        height: auto;
        max-height: 100%; }
    .diy-repairs .diy-shopping-section .diy-inner h4 {
      text-transform: uppercase;
      font-weight: 600; }
    .diy-repairs .diy-shopping-section .diy-inner p {
      padding: 0 20px; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .diy-repairs .diy-shopping-section .diy-inner p {
          padding: 0; } }
  .diy-repairs h2 {
    color: #0088cb; }

.home-section-heading h2 {
  margin-bottom: 8px;
  letter-spacing: 2px; }
.home-section-heading h4 {
  letter-spacing: 1px;
  line-height: 1.8; }
  @media screen and (max-width: 991px) {
    .home-section-heading h4 {
      line-height: 1.2; } }

.help-step-wrap {
  padding: 75px 0;
  background-image: linear-gradient(to bottom, #f1f1f1, #f3f3f3, #f4f5f4, #f6f6f6, #f8f8f8); }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .help-step-wrap {
      padding: 50px 0; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .help-step-wrap {
      padding: 30px 0; } }
  @media screen and (max-width: 767px) {
    .help-step-wrap {
      padding: 30px 0; } }
  .help-step-wrap .button-wrap a {
    box-shadow: 0 12px 42px 0 rgba(0, 0, 0, 0.12); }
  .help-step-wrap .home-section-heading {
    margin-bottom: 60px; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .help-step-wrap .home-section-heading {
        margin-bottom: 30px; } }
    @media screen and (max-width: 991px) {
      .help-step-wrap .home-section-heading {
        margin-bottom: 20px; } }
  .help-step-wrap .help-steps .help-steps-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 85px; }
    .help-step-wrap .help-steps .help-steps-inner .vdo {
      box-shadow: 0 40px 50px 0 rgba(0, 0, 0, 0.15); }
      @media screen and (max-width: 767px) {
        .help-step-wrap .help-steps .help-steps-inner .vdo {
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15); } }
    .help-step-wrap .help-steps .help-steps-inner:after {
      clear: both;
      display: block;
      content: ""; }
    @media screen and (max-width: 767px) {
      .help-step-wrap .help-steps .help-steps-inner {
        display: block;
        margin-bottom: 25px; } }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .help-step-wrap .help-steps .help-steps-inner {
        margin-bottom: 50px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .help-step-wrap .help-steps .help-steps-inner {
        margin-bottom: 30px; } }
    .help-step-wrap .help-steps .help-steps-inner .gradient-bg {
      height: 290px;
      width: 290px;
      float: left;
      z-index: 2;
      float: left;
      position: relative; }
      @media screen and (min-width: 992px) and (max-width: 1199px) {
        .help-step-wrap .help-steps .help-steps-inner .gradient-bg {
          height: 220px;
          width: 220px; } }
      @media screen and (max-width: 991px) {
        .help-step-wrap .help-steps .help-steps-inner .gradient-bg {
          height: 110px;
          width: 110px; } }
      @media screen and (max-width: 767px) {
        .help-step-wrap .help-steps .help-steps-inner .gradient-bg {
          float: none; } }
      @media screen and (max-width: 991px) {
        .help-step-wrap .help-steps .help-steps-inner .gradient-bg img {
          max-width: 60%;
          max-height: 60%; } }
    .help-step-wrap .help-steps .help-steps-inner .img-desc-wrap {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      @media screen and (max-width: 767px) {
        .help-step-wrap .help-steps .help-steps-inner .img-desc-wrap {
          display: block; } }
    .help-step-wrap .help-steps .help-steps-inner .step-desc {
      width: calc(100% - 290px);
      padding-left: 25px;
      padding-bottom: 30px;
      padding-top: 30px;
      padding-right: 20px;
      position: relative;
      z-index: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-direction: column;
      -webkit-flex-direction: column;
      justify-content: left;
      -webkit-justify-content: left;
      -moz-align-self: center;
      -o-align-self: center;
      -webkit-align-self: center;
      align-self: center;
      margin-right: 30px; }
      @media screen and (min-width: 992px) and (max-width: 1199px) {
        .help-step-wrap .help-steps .help-steps-inner .step-desc {
          width: calc(100% - 220px);
          padding-left: 15px;
          padding-bottom: 15px;
          padding-top: 15px;
          padding-right: 15px; } }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .help-step-wrap .help-steps .help-steps-inner .step-desc {
          width: calc(100% - 110px);
          padding-left: 15px;
          padding-bottom: 15px;
          padding-top: 15px;
          padding-right: 15px; } }
      @media screen and (max-width: 767px) {
        .help-step-wrap .help-steps .help-steps-inner .step-desc {
          width: 100%;
          padding-left: 15px;
          padding-bottom: 15px;
          padding-top: 65px;
          padding-right: 15px;
          display: block;
          clear: both;
          margin-top: -55px;
          margin-bottom: 15px; } }
      .help-step-wrap .help-steps .help-steps-inner .step-desc::after {
        background: white;
        position: absolute;
        content: "";
        height: 100%;
        width: calc(100% + 70px);
        top: 0;
        right: 0;
        z-index: -1;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        -moz-border-radius: 10px; }
        @media screen and (max-width: 767px) {
          .help-step-wrap .help-steps .help-steps-inner .step-desc::after {
            width: 100%; } }
      .help-step-wrap .help-steps .help-steps-inner .step-desc .step-heading {
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 5px; }
      @media screen and (max-width: 991px) {
        .help-step-wrap .help-steps .help-steps-inner .step-desc a {
          font-size: 10px; } }
      @media screen and (max-width: 991px) {
        .help-step-wrap .help-steps .help-steps-inner .step-desc a i {
          font-size: 15px;
          padding-left: 5px; } }
      .help-step-wrap .help-steps .help-steps-inner .step-desc p {
        line-height: 1.7; }
        @media screen and (min-width: 992px) and (max-width: 1199px) {
          .help-step-wrap .help-steps .help-steps-inner .step-desc p {
            line-height: 1.3; } }
      .help-step-wrap .help-steps .help-steps-inner .step-desc .step-links {
        margin-top: 20px; }
        @media screen and (max-width: 1199px) {
          .help-step-wrap .help-steps .help-steps-inner .step-desc .step-links {
            margin-top: 10px; } }
        .help-step-wrap .help-steps .help-steps-inner .step-desc .step-links li {
          float: left;
          width: 50%;
          text-transform: uppercase;
          font-weight: 600; }
          @media screen and (max-width: 991px) {
            .help-step-wrap .help-steps .help-steps-inner .step-desc .step-links li {
              width: 100%; } }
          @media screen and (min-width: 768px) and (max-width: 991px) {
            .help-step-wrap .help-steps .help-steps-inner .step-desc .step-links li a {
              font-size: 13px; } }
          @media screen and (min-width: 992px) and (max-width: 1199px) {
            .help-step-wrap .help-steps .help-steps-inner .step-desc .step-links li a {
              font-size: 14px; } }
  .help-step-wrap .button-wrap {
    margin-top: 33px; }
    @media screen and (max-width: 991px) {
      .help-step-wrap .button-wrap {
        margin-top: 15px; } }

.start-repair-section {
  padding: 80px 0;
  background: white; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .start-repair-section {
      padding: 50px 0; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .start-repair-section {
      padding: 30px 0; } }
  @media screen and (max-width: 767px) {
    .start-repair-section {
      padding: 25px 0; } }
  .start-repair-section .repair-sec-wrap {
    margin-bottom: 60px; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .start-repair-section .repair-sec-wrap {
        margin-bottom: 40px; } }
    @media screen and (max-width: 991px) {
      .start-repair-section .repair-sec-wrap {
        margin-bottom: 20px; } }
  .start-repair-section .device-image {
    height: 220px;
    margin-bottom: 35px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: flex-end;
    -webkit-flex-align: flex-end;
    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .start-repair-section .device-image {
        margin-bottom: 20px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .start-repair-section .device-image {
        height: 190px;
        margin-bottom: 20px; } }
    @media screen and (max-width: 767px) {
      .start-repair-section .device-image {
        margin-bottom: 20px; } }
    .start-repair-section .device-image .device-image-inner {
      position: relative; }
      .start-repair-section .device-image .device-image-inner:after {
        content: "";
        position: absolute;
        width: calc(100% + 50px);
        padding-top: calc(100% + 50px);
        top: 0;
        bottom: 0;
        margin: auto;
        height: 0;
        left: 50%;
        background-color: #164d98;
        background-image: -webkit-gradient(linear, left top, right top, from(#164d98), to(#0088cb));
        background-image: -webkit-linear-gradient(left, right, #164d98, #0088cb);
        background-image: -moz-linear-gradient(left, right, #164d98, #0088cb);
        background-image: -ms-linear-gradient(left, right, #164d98, #0088cb);
        background-image: -o-linear-gradient(left, right, #164d98, #0088cb);
        background-image: linear-gradient(left, right, #164d98, #0088cb);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#164d98', endColorStr='#0088cb');
        z-index: -1;
        border-radius: 50%;
        -webkit-transform: scale(0) translate(-50%, 0);
        -moz-transform: scale(0) translate(-50%, 0);
        -o-transform: scale(0) translate(-50%, 0);
        -ms-transform: scale(0) translate(-50%, 0);
        transform: scale(0) translate(-50%, 0);
        opacity: 1;
        transition: all 0.5s ease;
        transform-origin: left; }
      .start-repair-section .device-image .device-image-inner:hover:after {
        -webkit-transform: scale(1) translate(-50%, 0);
        -moz-transform: scale(1) translate(-50%, 0);
        -o-transform: scale(1) translate(-50%, 0);
        -ms-transform: scale(1) translate(-50%, 0);
        transform: scale(1) translate(-50%, 0);
        opacity: 1;
        z-index: 0; }
    .start-repair-section .device-image img {
      /*             box-shadow: 0 40px 90px 20px rgba(0,0,0,0.1), 0 15px 35px 0px rgba(0,0,0,0.1); */
      max-height: 100%;
      max-width: 100%;
      position: relative;
      z-index: 2;
     /*           	background: #dadada;
*/
      /*             @include at-query ($max, $pre-sm) {
                box-shadow: 0 10px 30px 10px rgba(0, 0, 0, 0.1), 0 5px 15px 0px rgba(0, 0, 0, 0.1);
            } */ }
  .start-repair-section .home-section-heading {
    margin-bottom: 35px; }
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .start-repair-section .home-section-heading {
        margin-bottom: 20px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .start-repair-section .home-section-heading {
        margin-bottom: 0; } }
    @media screen and (max-width: 767px) {
      .start-repair-section .home-section-heading {
        margin-bottom: 20px; } }
  .start-repair-section .prod-name {
    text-transform: uppercase; }

.aero-link i {
  font-size: 20px;
  font-weight: 600;
  padding-left: 10px; }

.home-link {
  font-weight: 600;
  word-spacing: 0px;
  letter-spacing: 1px; }
  .home-link span {
    font-weight: 500; }

.testimonials {
  padding: 70px 0;
  background: linear-gradient(45deg, #56ab2f, #a8e063);
  background-size: 100% 100%;
  -webkit-animation: AnimationName 25s ease infinite;
  -moz-animation: AnimationName 25s ease infinite;
  animation: AnimationName 25s ease infinite; }
@-webkit-keyframes AnimationName {
  0% {
    background-position: 51% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 51% 0%; } }
@-moz-keyframes AnimationName {
  0% {
    background-position: 51% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 51% 0%; } }
@keyframes AnimationName {
  0% {
    background-position: 51% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 51% 0%; } }
  @media screen and (max-width: 991px) {
    .testimonials {
      padding: 30px 0; } }
  .testimonials h4 {
    font-weight: 400; }
  .testimonials .home-section-heading {
    color: white; }
  .testimonials .single-testi {
    background: white;
    margin: 0 auto;
    padding: 35px 50px 35px 135px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    -moz-border-radius: 10px;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.05);
    opacity: 0.6; }
    @media screen and (max-width: 767px) {
      .testimonials .single-testi {
        padding: 20px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -o-border-radius: 8px;
        -ms-border-radius: 8px;
        -moz-border-radius: 8px;
        font-size: 13px;
        line-height: 1.4;
        box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.05); } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .testimonials .single-testi {
        box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.05); } }
    .testimonials .single-testi::after {
      position: absolute;
      background-image: url("testi-quote.png");
      top: 40px;
      left: 40px;
      height: 36px;
      width: 45px;
      content: ""; }
      @media screen and (max-width: 767px) {
        .testimonials .single-testi::after {
          top: 20px;
          left: 10px;
          height: 16px;
          width: 15px;
          content: "";
          background-size: 15px auto;
          background-repeat: no-repeat; } }
  .testimonials .client-name {
    margin-top: 20px;
    margin-bottom: 0px;
    font-weight: 600;
    color: #0088cb; }
  .testimonials .owl-carousel {
    text-align: center; }
    .testimonials .owl-carousel .owl-stage-outer {
      text-align: left; }
    .testimonials .owl-carousel .owl-stage {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      padding-top: 55px;
      padding-bottom: 55px; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .testimonials .owl-carousel .owl-stage {
          padding-top: 25px;
          padding-bottom: 25px; } }
      @media screen and (max-width: 767px) {
        .testimonials .owl-carousel .owl-stage {
          padding-top: 12px;
          padding-bottom: 35px; } }
      .testimonials .owl-carousel .owl-stage .owl-item.active .single-testi {
        padding: 70px 50px 70px 135px;
        opacity: 1; }
        .testimonials .owl-carousel .owl-stage .owl-item.active .single-testi::after {
          top: 70px; }
          @media screen and (max-width: 767px) {
            .testimonials .owl-carousel .owl-stage .owl-item.active .single-testi::after {
              top: 20px; } }
        @media screen and (max-width: 767px) {
          .testimonials .owl-carousel .owl-stage .owl-item.active .single-testi {
            padding: 20px; } }
    .testimonials .owl-carousel .owl-controls {
      width: auto;
      display: inline-block;
      float: none;
      margin: auto;
      position: relative; }
      .testimonials .owl-carousel .owl-controls .owl-nav {
        position: absolute;
        /* margin-top: 10px; */
        width: calc(100% + 100px);
        margin: auto;
        left: -50px;
        right: 0; }
        .testimonials .owl-carousel .owl-controls .owl-nav .owl-prev,
        .testimonials .owl-carousel .owl-controls .owl-nav .owl-next {
          font-size: 0;
          background: none;
          position: relative;
          padding: 0;
          height: auto;
          padding: 0;
          height: 20px;
          margin: 0;
          width: 10px; }
          .testimonials .owl-carousel .owl-controls .owl-nav .owl-prev:after,
          .testimonials .owl-carousel .owl-controls .owl-nav .owl-next:after {
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            text-decoration: inherit;
            font-size: 30px;
            padding-right: 0;
            position: absolute;
            left: 0;
            line-height: 1;
            top: -6px;
            height: 20px; }
            @media screen and (max-width: 767px) {
              .testimonials .owl-carousel .owl-controls .owl-nav .owl-prev:after,
              .testimonials .owl-carousel .owl-controls .owl-nav .owl-next:after {
                top: -10px; } }
        .testimonials .owl-carousel .owl-controls .owl-nav .owl-prev {
          float: left; }
          .testimonials .owl-carousel .owl-controls .owl-nav .owl-prev:after {
            content: "\f104"; }
        .testimonials .owl-carousel .owl-controls .owl-nav .owl-next {
          float: right; }
          .testimonials .owl-carousel .owl-controls .owl-nav .owl-next:after {
            content: "\f105"; }

.owl-theme .owl-dots .owl-dot {
  padding: 0 5px; }
  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    opacity: 1;
    background: #fff !important; }
  .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    background: #fff !important;
    opacity: 0.5; }

/*responsive slick*/
@media screen and (max-width: 767px) {
  .diy-repairs-slider {
    max-width: 250px;
    margin: 0 auto 20px; }

  .repair-sec-slider {
    max-width: 250px;
    margin: 0 auto; }

  .testi-carousal-wrap {
    max-width: 250px;
    margin: 0 auto; }

  .help-steps-slider {
    max-width: 85%;
    margin: 0 auto; }
    .help-steps-slider .img-desc-wrap {
      padding: 0; } }
.flex-div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.flex-center {
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.justify-content-center {
  justify-content: center;
  -webkit-justify-content: center; }

.pop-up-content {
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  color: white;
  top: 0;
  text-align: center;
  display: none;
  background-size: cover;
  background-repeat: no-repeat; }
  .pop-up-content .aero-link {
    color: #fff;
    bottom: 10px;
    position: absolute;
    left: 15px;
    font-weight: 600;
    text-shadow: 1px 0px 13px rgba(0, 0, 0, 0.55), 2px 0px 27px rgba(0, 0, 0, 0.55);
    text-transform: uppercase; }
    .pop-up-content .aero-link i {
      margin-left: 0;
      margin-right: 10px;
      display: inline-block;
      vertical-align: middle;
      margin-top: -3px; }
  .pop-up-content .pop-up-content-inner {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    /*max-width: 600px;*/
    max-height: 80vh;
    overflow-y: auto;
    width: 95%; }
    @media screen and (max-width: 767px) {
      .pop-up-content .pop-up-content-inner {
        max-height: 280px;
        overflow-y: scroll; } }
    .pop-up-content .pop-up-content-inner h5 {
      font-weight: 500;
      margin-top: 5px; }
    .pop-up-content .pop-up-content-inner .device-wrap {
      margin-top: 30px;
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      justify-content: center;
      -webkit-justify-content: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      margin-left: 0;
      margin-right: 0; }
      .pop-up-content .pop-up-content-inner .device-wrap img.loading {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }
      @media screen and (max-width: 767px) {
        .pop-up-content .pop-up-content-inner .device-wrap {
          margin-top: 10px;
          margin-left: 0;
          margin-right: 0; } }
      .pop-up-content .pop-up-content-inner .device-wrap .popDevice {
        width: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-flex-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap; }
      .pop-up-content .pop-up-content-inner .device-wrap .button-wrap {
        margin-bottom: 30px; }
        @media screen and (max-width: 767px) {
          .pop-up-content .pop-up-content-inner .device-wrap .button-wrap {
            margin-bottom: 10px; } }
        .pop-up-content .pop-up-content-inner .device-wrap .button-wrap .btn {
          padding-left: 10px;
          padding-right: 10px;
          word-break: break-word;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          justify-content: center;
          -webkit-justify-content: center;
          -webkit-box-align: center;
          -webkit-flex-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
          height: 100%;
          font-size: 15px; }
          @media screen and (min-width: 768px) and (max-width: 991px) {
            .pop-up-content .pop-up-content-inner .device-wrap .button-wrap .btn {
              font-size: 12px; } }
          @media screen and (max-width: 767px) {
            .pop-up-content .pop-up-content-inner .device-wrap .button-wrap .btn {
              font-size: 10px;
              letter-spacing: 0; } }

.PopupBox {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
  height: 170px;
  width: 170px;
  transform: scale(1);
  left: 0;
  top: 0;
  visibility: hidden;
  border-radius: 50%; }

.PopupBox.open {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transition: all 1.5s ease-in-out;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transform: scale(20);
  z-index: 9; }

#main-content {
  padding: 50px 0; }

.product-page {
  background: #fff;
  z-index: 0; }

.single-product {
  margin-bottom: 95px; }
  @media screen and (max-width: 991px) {
    .single-product {
      margin-bottom: 0; } }

.product-section {
  margin-bottom: 60px; }
  @media screen and (max-width: 991px) {
    .product-section {
      margin-bottom: 10px; } }
  .product-section h2 {
    margin-bottom: 50px; }
    @media screen and (max-width: 767px) {
      .product-section h2 {
        margin-bottom: 20px; } }
  .product-section .prod-image {
    height: 290px;
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 50px; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .product-section .prod-image {
        height: 200px;
        margin-bottom: 20px; } }
    .product-section .prod-image a {
      display: block;
      height: 100%; }
    .product-section .prod-image img {
      margin: 0 auto;
      max-height: 100%;
      max-width: 100%; }
  .product-section .product-name {
    padding: 0 20px;
    margin-bottom: 15px;
    display: block; }
  .product-section .price {
    font-weight: 400; }
    .product-section .price del {
      font-size: 13px;
      padding-left: 5px; }
  .product-section p {
    margin-bottom: 25px;
    line-height: 1.5; }

.single-prod-desc .heading {
  margin-bottom: 15px;
  font-size: 17px; }
  @media screen and (min-width: 320px) {
    .single-prod-desc .heading {
      font-size: calc( 17px + 8 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .single-prod-desc .heading {
      font-size: 25px; } }
  @media screen and (max-width: 767px) {
    .single-prod-desc .heading {
      text-align: center; } }
.single-prod-desc h3 {
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  clear: both; }
  @media screen and (max-width: 1199px) {
    .single-prod-desc h3 {
      margin-bottom: 10px; } }
  .single-prod-desc h3 img {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer; }
  .single-prod-desc h3 span {
    display: block;
    font-size: 14px;
    font-weight: 400; }
.single-prod-desc a {
  color: #0088cb;
  text-decoration: underline; }
  .single-prod-desc a:hover {
    color: #f05c70; }
.single-prod-desc p {
  margin-bottom: 25px;
  text-align: left; }
.single-prod-desc .single-prod-price {
  font-size: 18px;
  color: #0088cb;
  font-weight: 600; }
  @media screen and (min-width: 320px) {
    .single-prod-desc .single-prod-price {
      font-size: calc( 18px + 6 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .single-prod-desc .single-prod-price {
      font-size: 24px; } }
.single-prod-desc .video-wrap {
  margin-top: 30px; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .single-prod-desc .video-wrap {
      margin-top: 20px; } }
  .single-prod-desc .video-wrap h3 {
    margin-bottom: 25px; }

.price-item-wrap {
  margin-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px; }
  .price-item-wrap .item-stock span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    text-transform: capitalize;
    font-weight: 600; }
    @media screen and (max-width: 767px) {
      .price-item-wrap .item-stock span {
        margin-left: 6px; } }
    .price-item-wrap .item-stock span.meta-sku {
      color: #48484a;
      font-weight: normal;
      margin-left: 0;
      vertical-align: top; }
      @media screen and (min-width: 768px) and (max-width: 767px) {
        .price-item-wrap .item-stock span.meta-sku {
          vertical-align: middle; } }
    .price-item-wrap .item-stock span img {
      display: inline-block;
      vertical-align: middle;
      margin-right: 5px; }
      @media screen and (max-width: 767px) {
        .price-item-wrap .item-stock span img {
          margin-right: 4px;
          max-width: 16px;
          height: auto; } }

.prod-radio-section {
  margin-bottom: 35px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px; }

.product-page .breadcrumb {
  /*       span{
     font-weight: 600;
    } */ }
  @media screen and (max-width: 767px) {
    .product-page .breadcrumb {
      margin-bottom: 10px; } }
  .product-page .breadcrumb * {
    color: #fff; }
    @media screen and (max-width: 767px) {
      .product-page .breadcrumb * {
        color: #48484a; } }
.product-page .custom-checkbox-section {
  margin-bottom: 35px; }
  .product-page .custom-checkbox-section:last-child {
    margin-bottom: 0; }
  .product-page .custom-checkbox-section span {
    text-transform: uppercase; }
.product-page .custom-input-wrap .custom-input-wrapper {
  display: inline-block;
  margin-right: 40px; }
  .product-page .custom-input-wrap .custom-input-wrapper:last-child {
    margin-right: 0; }

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.flex-end {
  -webkit-box-align: flex-end;
  -webkit-flex-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end; }

.justify-content-between {
  justify-content: space-between;
  -webkit-justify-content: space-between; }

.align-item-center {
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.clearfix:after {
  clear: both;
  content: "";
  display: block; }

.guide-cart-section {
  margin-bottom: 10px;
  /*     border-top: 1px solid $colorBorder; */
  padding-top: 25px; }
  .guide-cart-section .SkipSummary,
  .guide-cart-section .addToCart {
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 1px;
    font-size: 15px;
    height: 100%; }
    @media screen and (min-width: 1200px) and (max-width: 1240px) {
      .guide-cart-section .SkipSummary,
      .guide-cart-section .addToCart {
        font-size: 14px; } }
  @media screen and (min-width: 1200px) and (max-width: 1240px) {
    .guide-cart-section #AddToCart {
      font-size: 14px; } }
  .guide-cart-section .incrementor-wrapper .numbers-row input {
    height: 100%; }
  @media screen and (max-width: 767px) {
    .guide-cart-section .btn {
      padding: 14px 15px;
      font-size: 14px; } }
  @media screen and (max-width: 767px) {
    .guide-cart-section {
      margin-bottom: 25px;
      border-top: none; } }
  @media screen and (max-width: 1199px) {
    .guide-cart-section {
      display: block; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .guide-cart-section {
      margin-bottom: 25px;
      padding-top: 15px; } }
  .guide-cart-section li {
    text-transform: uppercase;
    margin-bottom: 7px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    .guide-cart-section li img {
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
      margin-left: 0; }
  @media screen and (max-width: 1199px) {
    .guide-cart-section .guide {
      margin-bottom: 20px; } }

.incrementor-wrapper .numbers-row {
  position: relative; }

.incrementor-wrapper {
  position: relative;
  width: 30%;
  float: left;
  min-width: 85px; }
  .incrementor-wrapper .qty-button {
    position: absolute;
    right: 20px;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer; }
    .incrementor-wrapper .qty-button.dec {
      bottom: 0; }
    .incrementor-wrapper .qty-button.inc {
      top: 0; }
  .incrementor-wrapper .numbers-row input {
    margin: 0;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -o-border-radius: 24px;
    -ms-border-radius: 24px;
    -moz-border-radius: 24px;
    padding: 14px 25px; }

.repair-details {
  margin-bottom: 40px;
  clear: both; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .repair-details {
      margin-bottom: 20px; } }
  .repair-details p {
    font-size: 15px;
    margin-bottom: 12px; }
    @media screen and (max-width: 767px) {
      .repair-details p {
        font-size: 13px; } }
    .repair-details p span {
      font-weight: 500;
      text-transform: uppercase; }
  .repair-details .repair-image img {
    float: none;
    margin: 0 auto;
    display: none; }

.repair-skill-section img.skillLevel {
  float: left;
  margin: 30px 0;
  max-width: 300px; }
  @media screen and (max-width: 767px) {
    .repair-skill-section img.skillLevel {
      margin: 20px auto;
      float: none; } }
.repair-skill-section h3 {
  clear: both; }

.breadcrumb {
  font-size: 13px; }

#main-content {
  position: relative; }
  @media screen and (max-width: 767px) {
    #main-content {
      padding: 30px 0; } }

.cross_area.supplimentCross {
  background-color: #0f60a8;
  background-image: -webkit-gradient(linear, left top, right top, from(#0f60a8), to(#057abf));
  background-image: -webkit-linear-gradient(left, right, #0f60a8, #057abf);
  background-image: -moz-linear-gradient(left, right, #0f60a8, #057abf);
  background-image: -ms-linear-gradient(left, right, #0f60a8, #057abf);
  background-image: -o-linear-gradient(left, right, #0f60a8, #057abf);
  background-image: linear-gradient(left, right, #0f60a8, #057abf);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#0f60a8', endColorStr='#057abf');
  width: 50%;
  height: 100vh;
  overflow: hidden;
  display: block;
  position: fixed;
  top: 0;
  background-size: 180%;
  -webkit-transform: skewX(-39deg) skewY(0);
  -ms-transform: skewX(-39deg) skewY(0);
  -o-transform: skewX(-39deg) skewY(0);
  transform: skewX(-39deg) skewY(0);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  z-index: -1; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .cross_area.supplimentCross {
      width: 57%; } }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .cross_area.supplimentCross {
      width: 56%; } }

.product-page .device-name-option .swatch {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap; }

.product-selection-tab .device-name-option .thumb-desc-wrp {
  border: 1px solid #c4c7ca;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 8px;
  min-height: 85px;
  margin-bottom: 20px;
  min-height: 135px;
  padding: 10px 0; }
  .product-selection-tab .device-name-option .thumb-desc-wrp .mobile-thumb-image {
    float: left;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 100%; }
    .product-selection-tab .device-name-option .thumb-desc-wrp .mobile-thumb-image img {
      max-width: 100%;
      max-height: 100%; }
    @media screen and (min-width: 992px) and (max-width: 1024px) {
      .product-selection-tab .device-name-option .thumb-desc-wrp .mobile-thumb-image {
        width: 100px; } }
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      .product-selection-tab .device-name-option .thumb-desc-wrp .mobile-thumb-image {
        width: 80px; } }
    @media screen and (max-width: 767px) {
      .product-selection-tab .device-name-option .thumb-desc-wrp .mobile-thumb-image {
        width: 50px; } }
  .product-selection-tab .device-name-option .thumb-desc-wrp .desc {
    width: calc(100% - 150px);
    padding-left: 3px;
    text-align: left;
    float: left; }
    @media screen and (min-width: 992px) and (max-width: 1024px) {
      .product-selection-tab .device-name-option .thumb-desc-wrp .desc {
        width: calc(100% - 100px); } }
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      .product-selection-tab .device-name-option .thumb-desc-wrp .desc {
        width: calc(100% - 80px); } }
    @media screen and (max-width: 767px) {
      .product-selection-tab .device-name-option .thumb-desc-wrp .desc {
        width: calc(100% - 50px); } }
    .product-selection-tab .device-name-option .thumb-desc-wrp .desc p {
      margin-bottom: 0;
      text-align: left; }

#screenProtector .grid, #screenProtector .grid--rev, #screenProtector .grid--full,
#case .grid,
#case .grid--rev,
#case .grid--full,
#charger-cable .grid,
#charger-cable .grid--rev,
#charger-cable .grid--full {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.product-selection-tab {
  margin-bottom: 10px !important; }
  .product-selection-tab .custom-input-wrapper {
    margin-bottom: 20px; }
    @media screen and (max-width: 1199px) {
      .product-selection-tab .custom-input-wrapper {
        margin-bottom: 20px; } }
  .product-selection-tab .custom-radiobox label {
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    display: block;
    line-height: 22px;
    color: #48484a; }
    @media screen and (max-width: 991px) {
      .product-selection-tab .custom-radiobox label {
        font-size: 12px;
        line-height: 1.2; } }
    .product-selection-tab .custom-radiobox label:before {
      top: 0;
      transform: translate(0, 0); }
    .product-selection-tab .custom-radiobox label:after {
      top: 6px; }
  .product-selection-tab .quality .thumb-desc-wrp {
    flex-direction: column; }
    .product-selection-tab .quality .thumb-desc-wrp h6 {
      text-align: center; }
    .product-selection-tab .quality .thumb-desc-wrp img {
      margin-bottom: 6px; }
    .product-selection-tab .quality .thumb-desc-wrp .desc {
      padding: 0; }
      .product-selection-tab .quality .thumb-desc-wrp .desc p {
        text-align: center; }
  .product-selection-tab .input-label-wrap {
    position: relative;
    cursor: pointer; }
  .product-selection-tab input[type="checkbox"]:checked + label > div,
  .product-selection-tab input[type="radio"]:checked + label > div {
    border: 1px solid #0088cb;
    box-shadow: 0 0px 0px 1px #0088cb; }
  .product-selection-tab input[type="checkbox"]:hover + label > div,
  .product-selection-tab input[type="radio"]:hover + label > div {
    border: 1px solid #0088cb;
    box-shadow: 0 0px 0px 2px #0088cb; }
  .product-selection-tab input[type="checkbox"],
  .product-selection-tab input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    left: 0; }
    .product-selection-tab input[type="checkbox"]:disabled + label .thumb-desc-wrp, .product-selection-tab input[type="checkbox"].disable-radio + label .thumb-desc-wrp,
    .product-selection-tab input[type="radio"]:disabled + label .thumb-desc-wrp,
    .product-selection-tab input[type="radio"].disable-radio + label .thumb-desc-wrp {
      opacity: 0.7;
      cursor: not-allowed;
      background: #f5f5f5; }
  .product-selection-tab .thumb-desc-wrp {
    border: 1px solid #c4c7ca;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 8px;
    min-height: 85px;
    margin-bottom: 20px; }
    .product-selection-tab .thumb-desc-wrp .mobile-thumb-image {
      float: left;
      width: 80px; }
      @media screen and (max-width: 767px) {
        .product-selection-tab .thumb-desc-wrp .mobile-thumb-image {
          width: 50px; } }
    .product-selection-tab .thumb-desc-wrp .desc {
      width: calc(100% - 80px);
      padding-left: 3px;
      text-align: left;
      float: left; }
      @media screen and (max-width: 767px) {
        .product-selection-tab .thumb-desc-wrp .desc {
          width: calc(100% - 50px); } }
      .product-selection-tab .thumb-desc-wrp .desc p {
        margin-bottom: 0;
        text-align: left; }
      .product-selection-tab .thumb-desc-wrp .desc h5 {
        word-wrap: break-word;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.2;
        color: #48484a; }
        @media screen and (max-width: 767px) {
          .product-selection-tab .thumb-desc-wrp .desc h5 {
            font-size: 12px; } }
  .product-selection-tab .yes-no-selection.full-width-yes-no .thumb-desc-wrp {
    min-height: 140px;
    margin-bottom: 10px;
    width: 100%; }
  .product-selection-tab .yes-no-selection .thumb-desc-wrp {
    min-height: 0px;
    margin-bottom: 10px;
    width: 73%; }
    @media screen and (max-width: 1199px) {
      .product-selection-tab .yes-no-selection .thumb-desc-wrp {
        width: 100%; } }
    @media screen and (max-width: 767px) {
      .product-selection-tab .yes-no-selection .thumb-desc-wrp {
        min-height: 100px; } }
  .product-selection-tab .yes-no-selection .thumb-desc-wrp .mobile-thumb-image {
    width: 70px; }
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      .product-selection-tab .yes-no-selection .thumb-desc-wrp .mobile-thumb-image {
        width: 50px; } }
  .product-selection-tab .yes-no-selection .thumb-desc-wrp .desc {
    width: calc(100% - 70px);
    padding-left: 3px; }
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      .product-selection-tab .yes-no-selection .thumb-desc-wrp .desc {
        width: calc(100% - 50px); } }
    .product-selection-tab .yes-no-selection .thumb-desc-wrp .desc h5 {
      margin-bottom: 0;
      text-align: left; }
    @media screen and (max-width: 767px) {
      .product-selection-tab .yes-no-selection .thumb-desc-wrp .desc p {
        text-align: left; } }

.product-popup .remove,
.product-popup .remove a {
  font-weight: 600;
  text-transform: uppercase;
  color: #cd374d;
  font-size: 14px;
  display: block;
  margin-top: 8px; }
.product-popup .close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 9; }
  @media screen and (max-width: 767px) {
    .product-popup .close {
      right: 10px;
      top: 10px; } }
.product-popup .continue-shopping {
  text-align: center; }
  @media screen and (max-width: 767px) {
    .product-popup .continue-shopping {
      padding-top: 10px;
      border-top: 1px solid #ccc;
      width: 100%;
      text-align: center; } }
  .product-popup .continue-shopping a {
    font-size: 13px; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .product-popup .continue-shopping a {
        font-size: 10px; } }
  .product-popup .continue-shopping .btn {
    margin-top: 20px;
    font-size: 16px; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .product-popup .continue-shopping .btn {
        margin-top: 10px;
        font-size: 12px; } }
    @media screen and (max-width: 767px) {
      .product-popup .continue-shopping .btn {
        font-size: 13px;
        margin-top: 5px; } }
  .product-popup .continue-shopping p {
    text-transform: uppercase; }
.product-popup .product-cart {
  margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .product-popup .product-cart {
      margin-bottom: 10px; } }
  .product-popup .product-cart .product-cart-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap; }
  .product-popup .product-cart .continue-shopping-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-align-self: flex-end;
    -o-align-self: flex-end;
    -webkit-align-self: flex-end;
    align-self: flex-end; }
  @media screen and (max-width: 767px) {
    .product-popup .product-cart .sub-product {
      margin-bottom: 15px; } }
  @media screen and (max-width: 767px) {
    .product-popup .product-cart .main-prod {
      margin-bottom: 15px; } }
  @media screen and (max-width: 767px) {
    .product-popup .product-cart .main-prod .image-wrp img {
      max-height: 90px; } }
.product-popup .image-wrp {
  width: 30%;
  float: left; }
.product-popup .content {
  width: 70%;
  float: left;
  padding-left: 0; }
  @media screen and (max-width: 767px) {
    .product-popup .content {
      padding-left: 10px; } }
  .product-popup .content p {
    text-align: left; }
  .product-popup .content span {
    font-size: 13px;
    font-weight: 400; }
    .product-popup .content span.mainQty {
      opacity: 0.5; }
.product-popup .sub-product {
  min-height: 125px;
  overflow-y: auto;
  max-height: 160px;
  overflow-y: auto; }
  .product-popup .sub-product .sub-product-inner {
    margin-bottom: 0; }
    .product-popup .sub-product .sub-product-inner .content {
      width: 100%; }
  @media screen and (min-width: 768px) and (max-width: 1200px) {
    .product-popup .sub-product {
      max-height: 200px; } }
  @media screen and (max-width: 767px) {
    .product-popup .sub-product {
      height: auto;
      min-height: 1px;
      max-height: none; } }
  .product-popup .sub-product .image-wrp img {
    max-height: 50px;
    height: auto;
    width: auto; }
  .product-popup .sub-product .content {
    padding-left: 0; }
    .product-popup .sub-product .content h6 {
      font-weight: 600;
      letter-spacing: 0;
      margin-bottom: 2px; }
.product-popup .banner-description {
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .product-popup .banner-description {
      margin-bottom: 20px; } }
  .product-popup .banner-description img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: -1px; }
.product-popup .pop-up-prod-wrap,
.product-popup .pop-up-prod-wraps {
  border: 1px solid #ccc;
  padding-bottom: 30px; }
  .product-popup .pop-up-prod-wrap .slick-arrow,
  .product-popup .pop-up-prod-wraps .slick-arrow {
    z-index: 9; }
.product-popup .btn {
  font-size: 13px; }
.product-popup .product-section {
  margin-bottom: 0; }
  @media screen and (max-width: 767px) {
    .product-popup .product-section {
      padding-bottom: 20px; } }
  @media screen and (max-width: 767px) {
    .product-popup .product-section .pop-up-prod-wrap,
    .product-popup .product-section .pop-up-prod-wraps {
      clear: both;
      padding-bottom: 10px;
      padding-top: 10px;
      max-width: 230px;
      max-width: 90%;
      margin: 0 auto; } }
  .product-popup .product-section .product-name {
    padding: 0; }
  .product-popup .product-section .price {
    margin-bottom: 10px; }
  .product-popup .product-section h4 {
    padding-top: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 30px; }
    @media screen and (max-width: 767px) {
      .product-popup .product-section h4 {
        margin-bottom: 10px; } }
  .product-popup .product-section .prod-image {
    height: 90px;
    margin-bottom: 20px; }
    .product-popup .product-section .prod-image img {
      max-height: 100%;
      max-width: 100%;
      height: auto;
      width: auto; }

.template-product .product-section .prod-image.custom-prod-image-1 img{
  max-height: 200px;
}

@media only screen and (min-width:767px){
  .template-product .product-section .prod-image.custom-prod-image-1 img{
    max-height: 300px;
  }
}

.order-summery {
  padding-bottom: 25px; }
  @media screen and (max-width: 991px) {
    .order-summery {
      padding-bottom: 15px; } }
  .order-summery .summer-heading {
    position: relative;
    margin-bottom: 50px; }
    @media screen and (max-width: 991px) {
      .order-summery .summer-heading {
        margin-bottom: 30px; } }
    .order-summery .summer-heading .sub-title {
      font-weight: 700;
      line-height: 1.2; }
      .order-summery .summer-heading .sub-title img {
        display: inline-block;
        vertical-align: middle;
        padding-left: 10px; }
  .order-summery .image-wrap img {
    max-height: 150px;
    height: auto;
    width: auto; }
  .order-summery .content-wrap h4 {
    letter-spacing: 0px;
    word-spacing: 0;
    font-weight: 600; }
  .order-summery .content-wrap p {
    margin-bottom: 5px; }
    .order-summery .content-wrap p span {
      font-weight: 600; }

.single-prod-desc .back-link,
.single-prod-desc .back-link-without {
  position: absolute;
  left: 0;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  color: #48484a;
  line-height: 25px;
  top: -2px;
  background: white;
  z-index: 4; }
  @media screen and (max-width: 1199px) {
    .single-prod-desc .back-link,
    .single-prod-desc .back-link-without {
      position: relative; } }
  .single-prod-desc .back-link i,
  .single-prod-desc .back-link-without i {
    padding-right: 10px; }
@media screen and (max-width: 767px) {
  .single-prod-desc .back-link {
    display: none !important; } }

.withoutTab {
  position: relative; }

.product-section-slider {
  clear: both;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap; }
  @media screen and (max-width: 767px) {
    .product-section-slider {
      max-width: 500px;
      display: block;
      margin: 0 auto; } }
  @media screen and (max-width: 767px) {
    .product-section-slider .prod-image {
      height: auto;
      margin-bottom: 20px; } }
  @media screen and (max-width: 767px) {
    .product-section-slider .prod-image img {
      max-width: 200px;
      max-height: 200px;
      width: auto;
      height: auto; } }

/* .resp-tabs-container > div{
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
} */
.resp-tabs-container > div.active {
  opacity: 1;
  visibility: visible;
  height: auto; }

.product-selection-tab {
  position: relative; }

* {
  outline: none !important; }

.back-link {
  display: none; }

ul.resp-tabs-list {
  width: calc(100% - 65px);
  margin: 0 auto;
  white-space: nowrap;
  margin-bottom: 20px;
  overflow: hidden;
  padding-left: 0;
  margin-left: 0;
  float: right; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    ul.resp-tabs-list {
      margin-left: 0;
      width: 100%; } }

.resp-tabs-list li {
  margin: 0 20px; }

.resp-tabs-list li:first-child {
  margin-left: 0; }

.resp-tabs-list li:last-child {
  margin-right: 0; }

#horizontalTab.last-tab .resp-tabs-list {
  opacity: 0; }

body {
  background-color: #f1f1f1;
  background-image: -webkit-gradient(linear, left top, right top, from(#f1f1f1), to(#f9f9f9));
  background-image: -webkit-linear-gradient(left, right, #f1f1f1, #f9f9f9);
  background-image: -moz-linear-gradient(left, right, #f1f1f1, #f9f9f9);
  background-image: -ms-linear-gradient(left, right, #f1f1f1, #f9f9f9);
  background-image: -o-linear-gradient(left, right, #f1f1f1, #f9f9f9);
  background-image: linear-gradient(left, right, #f1f1f1, #f9f9f9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f1f1f1', endColorStr='#f9f9f9');
  -webkit-animation: AnimationName 6s ease infinite;
  -moz-animation: AnimationName 6s ease infinite;
  animation: AnimationName 6s ease infinite; }

.blog-wrap {
  padding-top: 20px; }
  .blog-wrap .blog-content .blog {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: white; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .blog-wrap .blog-content .blog {
        -webkit-box-align: center;
        -webkit-flex-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center; } }
    .blog-wrap .blog-content .blog .image-wrap {
      float: left;
      position: relative; }
      @media screen and (max-width: 767px) {
        .blog-wrap .blog-content .blog .image-wrap {
          margin-bottom: 10px; } }
      .blog-wrap .blog-content .blog .image-wrap a {
        display: block; }
        @media screen and (max-width: 767px) {
          .blog-wrap .blog-content .blog .image-wrap a {
            padding: 20px 0; } }
        .blog-wrap .blog-content .blog .image-wrap a img {
          height: auto;
          width: auto;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          position: absolute;
          left: 50%; }
          @media screen and (max-width: 767px) {
            .blog-wrap .blog-content .blog .image-wrap a img {
              position: relative;
              top: auto;
              bottom: auto;
              left: auto;
              object-fit: none;
              transform: none; } }
    .blog-wrap .blog-content .blog .content {
      float: left;
      padding: 30px 30px; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .blog-wrap .blog-content .blog .content {
          padding: 15px; } }
      @media screen and (max-width: 767px) {
        .blog-wrap .blog-content .blog .content {
          padding: 10px; } }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .blog-wrap .blog-content .blog .content .btn {
          padding: 6px 13px;
          font-size: 12px; } }
      .blog-wrap .blog-content .blog .content .date-cat-wrap {
        margin-bottom: 12px; }
        .blog-wrap .blog-content .blog .content .date-cat-wrap .cat {
          margin-bottom: 0;
          line-height: 1;
          letter-spacing: 0;
          color: #0088cb;
          font-weight: 500; }
        .blog-wrap .blog-content .blog .content .date-cat-wrap .date {
          text-transform: uppercase;
          margin-bottom: 0;
          line-height: 1;
          letter-spacing: 0;
          font-weight: 500;
          color: #989899; }
      .blog-wrap .blog-content .blog .content .sub-title {
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize; }
      .blog-wrap .blog-content .blog .content p {
        text-align: left;
        margin-bottom: 20px; }
        .blog-wrap .blog-content .blog .content p:last-child {
          margin-bottom: 0; }
        @media screen and (max-width: 767px) {
          .blog-wrap .blog-content .blog .content p {
            margin-bottom: 10px; } }

.sidebar .sidebar-inner-wrap {
  background: white;
  padding: 38px 20px;
  border-radius: 10px;
  box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.05); }
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .sidebar .sidebar-inner-wrap {
      padding: 15px; } }
  @media screen and (max-width: 767px) {
    .sidebar .sidebar-inner-wrap {
      padding: 15px;
      border-radius: 7px; } }
  .sidebar .sidebar-inner-wrap .sidebar-inner {
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ebebeb; }
    .sidebar .sidebar-inner-wrap .sidebar-inner:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none; }
    @media screen and (max-width: 767px) {
      .sidebar .sidebar-inner-wrap .sidebar-inner {
        margin-bottom: 15px;
        padding-bottom: 15px; } }
    .sidebar .sidebar-inner-wrap .sidebar-inner input {
      border-radius: 30px;
      /* min-height: 45px; */
      /* padding: 0 0; */
      box-shadow: none !important;
      padding: 9px 10px;
      line-height: 1.6;
      outline-offset: 0;
      outline: none !important;
      -webkit-appearance: none; }
      @media screen and (min-width: 768px) and (max-width: 1199px) {
        .sidebar .sidebar-inner-wrap .sidebar-inner input {
          border-radius: 20px;
          padding: 8px 10px; } }
    .sidebar .sidebar-inner-wrap .sidebar-inner h6 {
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 15px; }
      @media screen and (max-width: 767px) {
        .sidebar .sidebar-inner-wrap .sidebar-inner h6 {
          margin-bottom: 5px; } }
    .sidebar .sidebar-inner-wrap .sidebar-inner.search form {
      position: relative; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.search form input {
        width: 100%; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.search form button {
        background-image: url(search.png);
        position: absolute;
        top: -3px;
        font-size: 20px;
        right: 0;
        height: 20px;
        width: 20px;
        bottom: 0;
        margin: auto;
        right: 16px; }
        .sidebar .sidebar-inner-wrap .sidebar-inner.search form button:before {
          display: none; }
    .sidebar .sidebar-inner-wrap .sidebar-inner.social i {
      color: #0088cb; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.social i:hover {
        color: #48484a; }
    .sidebar .sidebar-inner-wrap .sidebar-inner.category li a {
      padding: 8px 0;
      display: block;
      font-size: 13px; }
    .sidebar .sidebar-inner-wrap .sidebar-inner.popular .popular-inner {
      margin-bottom: 20px; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.popular .popular-inner:last-child {
        margin-bottom: 0; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.popular .popular-inner .image-wrap {
        float: left;
        width: 86px; }
        @media screen and (min-width: 768px) and (max-width: 991px) {
          .sidebar .sidebar-inner-wrap .sidebar-inner.popular .popular-inner .image-wrap {
            width: 70px; } }
      .sidebar .sidebar-inner-wrap .sidebar-inner.popular .popular-inner .content {
        float: left;
        width: calc(100% - 86px);
        padding-left: 14px;
        font-weight: 300;
        font-size: 14px; }
        @media screen and (min-width: 768px) and (max-width: 991px) {
          .sidebar .sidebar-inner-wrap .sidebar-inner.popular .popular-inner .content {
            width: calc(100% - 70px); } }
    .sidebar .sidebar-inner-wrap .sidebar-inner.tags ul li {
      list-style: none;
      display: inline-block;
      margin-bottom: 7px; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.tags ul li a {
        border: 1px solid;
        padding: 8px 19px;
        font-size: 12px;
        word-wrap: break-word;
        white-space: normal;
        word-break: break-all;
        display: block; }
        @media screen and (min-width: 768px) and (max-width: 991px) {
          .sidebar .sidebar-inner-wrap .sidebar-inner.tags ul li a {
            padding: 6px 14px; } }
        .sidebar .sidebar-inner-wrap .sidebar-inner.tags ul li a:hover {
          border: 1px solid #0088cb;
          background: #0088cb;
          color: #fff; }
    .sidebar .sidebar-inner-wrap .sidebar-inner.newsletter h6 {
      margin-bottom: 8px; }
    .sidebar .sidebar-inner-wrap .sidebar-inner.newsletter p {
      font-size: 14px;
      letter-spacing: 0;
      text-align: left;
      margin-bottom: 14px;
      color: #989899; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.newsletter p.error-msg {
        position: absolute;
        margin-top: -5px; }
    .sidebar .sidebar-inner-wrap .sidebar-inner.newsletter .newsletter-inner {
      position: relative;
      margin-bottom: 8px; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.newsletter .newsletter-inner input {
        width: 100%;
        padding-right: 80px;
        padding: 11px 10px;
        height: auto; }
      .sidebar .sidebar-inner-wrap .sidebar-inner.newsletter .newsletter-inner button {
        position: absolute;
        right: 20px;
        bottom: 0;
        top: 0;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500;
        color: #0088cb; }
        .sidebar .sidebar-inner-wrap .sidebar-inner.newsletter .newsletter-inner button:hover {
          color: #48484a; }

.blog-detail .blog-content img {
  margin: 0 auto 35px; }
  @media screen and (max-width: 767px) {
    .blog-detail .blog-content img {
      margin-bottom: 20px; } }
.blog-detail .blog-content p {
  text-align: left;
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .blog-detail .blog-content p {
      margin-bottom: 20px; } }
.blog-detail .blog-heading {
  margin-bottom: 30px; }
  @media screen and (max-width: 991px) {
    .blog-detail .blog-heading {
      margin-bottom: 10px; } }
  .blog-detail .blog-heading span {
    color: #0088cb;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0px; }
  .blog-detail .blog-heading h2 {
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 00;
    word-spacing: 0; }
  .blog-detail .blog-heading p {
    text-transform: uppercase;
    margin-bottom: 0; }

.tag-social-wrap {
  padding: 30px 0 0;
  margin-top: 40px;
  border-top: 1px solid #ebebeb;
  margin-bottom: 0; }
  @media screen and (max-width: 991px) {
    .tag-social-wrap {
      padding: 15px 0 0;
      margin-top: 15px; } }
  .tag-social-wrap a {
    text-decoration: none; }
  .tag-social-wrap .tag {
    float: left; }
    .tag-social-wrap .tag span {
      text-transform: uppercase;
      font-size: 14px;
      margin-right: 10px; }
      @media screen and (max-width: 991px) {
        .tag-social-wrap .tag span {
          font-size: 11px;
          margin-right: 8px; } }
  .tag-social-wrap .social {
    float: right;
    text-transform: uppercase; }
    @media screen and (max-width: 991px) {
      .tag-social-wrap .social {
        font-size: 11px; } }
    .tag-social-wrap .social ul {
      display: inline-block;
      vertical-align: middle;
      padding-left: 14px;
      margin-bottom: 0; }
      @media screen and (max-width: 991px) {
        .tag-social-wrap .social ul {
          padding-left: 10px; } }
      @media screen and (max-width: 767px) {
        .tag-social-wrap .social ul {
          padding-left: 0; } }
      .tag-social-wrap .social ul li {
        float: left;
        margin-right: 15px;
        list-style: none;
        margin-left: 0; }
        .tag-social-wrap .social ul li:last-child {
          margin-right: 0; }
        @media screen and (max-width: 991px) {
          .tag-social-wrap .social ul li {
            margin-right: 7px; } }
        @media screen and (max-width: 767px) {
          .tag-social-wrap .social ul li {
            margin-right: 3px; } }
        .tag-social-wrap .social ul li a {
          display: block;
          height: 22px;
          width: 22px;
          text-align: center;
          border-radius: 50%;
          line-height: 20px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-box-align: center;
          -webkit-flex-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
          justify-content: center;
          -webkit-justify-content: center;
          text-decoration: none; }
          .tag-social-wrap .social ul li a.facebook {
            background: #537bbd; }
          .tag-social-wrap .social ul li a.twitter {
            background: #78cdf0; }
          .tag-social-wrap .social ul li a.pintrest {
            background: #eb5755; }
          .tag-social-wrap .social ul li a.google {
            background: #eb5755; }
          .tag-social-wrap .social ul li a.envelope {
            background: #7f807e; }
          .tag-social-wrap .social ul li a i {
            font-size: 12px;
            color: white; }

.next-prev-section {
  margin-bottom: 40px;
  position: relative; }
  .next-prev-section .prev-aero,
  .next-prev-section .next-aero {
    float: left;
    width: 20px;
    font-size: 24px;
    line-height: initial;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 35px;
    margin: auto;
    left: 15px; }
    @media screen and (max-width: 991px) {
      .next-prev-section .prev-aero,
      .next-prev-section .next-aero {
        line-height: 30px; } }
  .next-prev-section .next-aero {
    right: 15px;
    left: auto; }
    @media screen and (max-width: 767px) {
      .next-prev-section .next-aero {
        right: 0; } }
  @media screen and (max-width: 767px) {
    .next-prev-section .prev-aero {
      left: 10px; } }
  .next-prev-section .img-sec-wrap {
    float: left;
    width: calc(100% - 20px);
    margin-right: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  .next-prev-section .next {
    position: relative; }
  .next-prev-section .prev {
    position: relative; }
    @media screen and (max-width: 767px) {
      .next-prev-section .prev {
        margin-bottom: 20px; } }
    .next-prev-section .prev .img-sec-wrap {
      margin-left: 30px;
      margin-right: 0; }
  @media screen and (max-width: 991px) {
    .next-prev-section {
      margin-bottom: 20px; } }
  .next-prev-section .image-wrap {
    width: 90px;
    float: left; }
    @media screen and (max-width: 991px) {
      .next-prev-section .image-wrap {
        width: 50px; } }
    .next-prev-section .image-wrap img {
      margin-bottom: 0; }
  .next-prev-section .post-desc {
    width: calc(100% - 90px);
    float: left;
    padding-left: 25px;
    padding-top: 0;
    padding-bottom: 0; }
    @media screen and (max-width: 991px) {
      .next-prev-section .post-desc {
        width: calc(100% - 50px);
        padding-left: 15px;
        padding-top: 0;
        padding-bottom: 0; } }
    .next-prev-section .post-desc h6 {
      margin-bottom: 0;
      text-transform: uppercase;
      font-weight: 500; }
    .next-prev-section .post-desc p {
      margin-bottom: 0; }
  .next-prev-section .next .post-desc {
    padding-left: 0;
    padding-right: 25px;
    text-align: right; }
    .next-prev-section .next .post-desc p {
      text-align: right; }

.comment-list-section {
  padding: 30px;
  background: #fff;
  margin-bottom: 50px;
  border-radius: 10px; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .comment-list-section {
      padding: 15px;
      margin-bottom: 20px; } }
  @media screen and (max-width: 767px) {
    .comment-list-section {
      padding: 10px;
      margin-bottom: 20px; } }
  .comment-list-section .sub-title {
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
    color: #0088cb; }
    @media screen and (max-width: 767px) {
      .comment-list-section .sub-title {
        margin-bottom: 10px;
        padding-bottom: 10px; } }
  .comment-list-section .comment-list {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb; }
    .comment-list-section .comment-list:last-child {
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: none; }
    .comment-list-section .comment-list .name-date-wrap {
      margin-bottom: 10px; }
      .comment-list-section .comment-list .name-date-wrap .name {
        float: left; }
      .comment-list-section .comment-list .name-date-wrap .date {
        font-size: 14px;
        color: #999;
        float: right; }
    .comment-list-section .comment-list p {
      font-weight: 300;
      margin-bottom: 10px; }
      .comment-list-section .comment-list p:last-child {
        margin-bottom: 0; }

.leave-comment-section .sub-title {
  font-weight: 500;
  margin-bottom: 20px; }
  @media screen and (max-width: 991px) {
    .leave-comment-section .sub-title {
      margin-bottom: 10px; } }
.leave-comment-section span {
  font-size: 14px;
  margin-bottom: 15px;
  display: block; }
  @media screen and (max-width: 767px) {
    .leave-comment-section span {
      font-size: 10px;
      margin-bottom: 10px; } }
.leave-comment-section .input-wrap {
  margin-bottom: 20px; }
  @media screen and (max-width: 991px) {
    .leave-comment-section .input-wrap {
      margin-bottom: 15px; } }
  .leave-comment-section .input-wrap input {
    width: 100%;
    border: none;
    height: auto;
    padding: 12px 20px;
    border-radius: 0;
    line-height: 1.6; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .leave-comment-section .input-wrap input {
        height: 35px;
        font-size: 13px; } }
    @media screen and (max-width: 767px) {
      .leave-comment-section .input-wrap input {
        font-size: 16px;
        padding: 12px 10px;
        border-radius: 8px;
        line-height: 1.6; } }
  .leave-comment-section .input-wrap textarea {
    width: 100%;
    border: none;
    height: 160px;
    padding: 15px 20px;
    border-radius: 0; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .leave-comment-section .input-wrap textarea {
        height: 80px;
        font-size: 13px; } }
    @media screen and (max-width: 767px) {
      .leave-comment-section .input-wrap textarea {
        height: 50px;
        font-size: 16px;
        border-radius: 8px;
        padding: 12px 10px; } }

.single-blog-detail {
  padding: 30px;
  background: #fff;
  margin-bottom: 50px;
  border-radius: 10px; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .single-blog-detail {
      padding: 15px;
      margin-bottom: 20px; } }
  @media screen and (max-width: 767px) {
    .single-blog-detail {
      padding: 10px;
      margin-bottom: 20px; } }

.leave-comment-section {
  margin-bottom: 30px; }

.btn-update-add .btn {
  display: inline-block;
  vertical-align: top; }

.clear {
  clear: both;
  display: block; }

@media screen and (max-width: 767px) {
  .account_title.cart-main-title .cart-main-title-inner {
    display: block; } }
.account_title.cart-main-title h2 {
  font-size: 42px;
  font-weight: 800;
  text-transform: lowercase; }
  @media screen and (max-width: 767px) {
    .account_title.cart-main-title h2 {
      font-size: 26px;
      width: 100%;
      text-align: left;
      margin-bottom: 5px; } }
.account_title.cart-main-title .aero-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #0088cb; }
  @media screen and (max-width: 767px) {
    .account_title.cart-main-title .aero-link {
      text-transform: uppercase;
      letter-spacing: 1.5px;
      width: 100%;
      text-align: right;
      margin-bottom: 20px; } }
  .account_title.cart-main-title .aero-link:hover {
    color: #48484a; }

.order-summery-wrap {
  padding: 20px 20px;
  background: #fff;
  border-radius: 10px;
  z-index: 9 !important; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .order-summery-wrap {
      padding: 15px; } }
  @media screen and (max-width: 767px) {
    .order-summery-wrap {
      /*       padding: 15px;
      bottom: auto !important;
      top: auto;
      position: relative !important;
      z-index: 99 !important;
      margin: 0 auto !important;
      left: 0 !important; */ }
      .order-summery-wrap.scroll-to-fixed-fixed {
        border-radius: 0px;
        box-shadow: #8c8c8c 0px 0px 10px 0px;
        left: 0 !important;
        width: 100% !important; } }
  .order-summery-wrap > h6 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ebebeb; }
    @media screen and (max-width: 767px) {
      .order-summery-wrap > h6 {
        padding-bottom: 10px;
        margin-bottom: 15px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .order-summery-wrap > h6 {
        padding-bottom: 15px;
        margin-bottom: 15px; } }
  .order-summery-wrap .sub-total,
  .order-summery-wrap .price {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px; }
  .order-summery-wrap .subtotal-wrap {
    margin-bottom: 33px; }
    @media screen and (max-width: 767px) {
      .order-summery-wrap .subtotal-wrap {
        margin-bottom: 10px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .order-summery-wrap .subtotal-wrap {
        margin-bottom: 15px; } }
  .order-summery-wrap .button-wrap {
    text-align: center; }
    .order-summery-wrap .button-wrap .btn {
      width: 90%; }
    .order-summery-wrap .button-wrap .checkout-btn {
      background-color: #83bd3b;
      background-image: -webkit-gradient(linear, left top, right top, from(#83bd3b), to(#9ed559));
      background-image: -webkit-linear-gradient(left, right, #83bd3b, #9ed559);
      background-image: -moz-linear-gradient(left, right, #83bd3b, #9ed559);
      background-image: -ms-linear-gradient(left, right, #83bd3b, #9ed559);
      background-image: -o-linear-gradient(left, right, #83bd3b, #9ed559);
      background-image: linear-gradient(left, right, #83bd3b, #9ed559);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#83bd3b', endColorStr='#9ed559');
      border: none;
      height: auto;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        .order-summery-wrap .button-wrap .checkout-btn {
          height: 35px;
          font-size: 14px; } }
      .order-summery-wrap .button-wrap .checkout-btn:hover {
        border: none; }
      .order-summery-wrap .button-wrap .checkout-btn i {
        margin-right: 4px; }
    .order-summery-wrap .button-wrap .paypal-btn {
      background-color: #ffc520;
      background-image: url("paypal.png");
      background-position: center center;
      background-repeat: no-repeat;
      border: none;
      height: 42px; }
      @media screen and (max-width: 767px) {
        .order-summery-wrap .button-wrap .paypal-btn {
          height: 35px; } }
      .order-summery-wrap .button-wrap .paypal-btn:hover {
        border: none; }
  .order-summery-wrap .promocode-section {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #989899; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .order-summery-wrap .promocode-section {
        margin-top: 0; } }
    @media screen and (max-width: 767px) {
      .order-summery-wrap .promocode-section {
        margin-top: 20px; } }
    .order-summery-wrap .promocode-section span {
      margin-bottom: 3px;
      display: block;
      font-weight: 600; }
    .order-summery-wrap .promocode-section p {
      margin-bottom: 27px !important;
      font-size: 14px; }
      @media screen and (max-width: 991px) {
        .order-summery-wrap .promocode-section p {
          margin-bottom: 10px !important; } }
  .order-summery-wrap .or-section {
    text-align: center;
    margin: 22px auto;
    position: relative;
    z-index: 1;
    /* background: white; */
    /* display: inline-block; */ }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .order-summery-wrap .or-section {
        margin: 10px auto; } }
    @media screen and (max-width: 767px) {
      .order-summery-wrap .or-section {
        margin: 5px 0; } }
    .order-summery-wrap .or-section span {
      text-transform: uppercase;
      font-size: 14px;
      display: block;
      padding: 10px 10px;
      background: white;
      display: inline-block; }
    .order-summery-wrap .or-section:after {
      position: absolute;
      content: "";
      height: 1px;
      width: 100%;
      background: #333;
      top: 0;
      left: 0;
      bottom: 0;
      margin: auto;
      z-index: -1; }

.free-shipping-bar p {
  font-size: 14px; }

.free-shipping-bar-inner {
  height: 13px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  position: relative; }
  .free-shipping-bar-inner span {
    position: absolute;
    right: 0;
    height: 13px;
    width: 13px;
    align-items: center;
    border: 1px solid #646465;
    border-radius: 50%;
    top: -1px; }
    .free-shipping-bar-inner span i {
      font-size: 9px;
      display: inline-block;
      vertical-align: top;
      /* border: 1px solid; */
      /* border-radius: 50%; */
      line-height: 11px;
      color: #646465; }
  .free-shipping-bar-inner:after {
    /*     background: $colorSecondary;
    border-radius: 10px;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    content:"";
    position: absolute; */ }
  .free-shipping-bar-inner.full:after {
    width: 100%; }
  .free-shipping-bar-inner.full span {
    border: none;
    background: no-repeat;
    z-index: 1;
    height: 10px;
    top: 0px; }
    .free-shipping-bar-inner.full span i {
      color: #fff; }

.repair-guides {
  margin-bottom: 0px; }
  .repair-guides span {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500; }
  .repair-guides > div {
    display: inline-block;
    text-transform: lowercase; }

@media screen and (max-width: 767px) {
  .product-blog-content {
    margin-bottom: 10px !important; } }
.product-blog-content p {
  line-height: 1.7;
  padding-right: 10px; }

.start-repair-section.repair-guides-blog {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px; }
  @media screen and (max-width: 767px) {
    .start-repair-section.repair-guides-blog {
      padding-bottom: 0; } }
.start-repair-section .product-blog-item {
  margin-bottom: 50px; }
  @media screen and (max-width: 767px) {
    .start-repair-section .product-blog-item {
      margin-bottom: 20px; } }
  .start-repair-section .product-blog-item.product-blog-content {
    padding-left: 50px; }
    @media screen and (max-width: 767px) {
      .start-repair-section .product-blog-item.product-blog-content {
        padding-left: 7.5px; } }
  .start-repair-section .product-blog-item .device-image {
    height: 140px; }
    @media screen and (max-width: 767px) {
      .start-repair-section .product-blog-item .device-image {
        margin-bottom: 20px; } }
    .start-repair-section .product-blog-item .device-image .device-image-inner::after {
      width: calc(100% + 40px);
      padding-top: calc(100% + 40px); }
    .start-repair-section .product-blog-item .device-image img {
      max-height: 140px; }
  .start-repair-section .product-blog-item .prod-name {
    display: block; }

.repair-guides-all-blog p {
  line-height: 1.7;
  padding-right: 10px; }

.single-guide-vdo {
  margin-top: 45px;
  margin-bottom: 95px; }
  @media screen and (max-width: 767px) {
    .single-guide-vdo {
      margin-top: 25px;
      margin-bottom: 0; } }
  @media screen and (max-width: 767px) {
    .single-guide-vdo .single-guide-vdo-inner {
      margin-bottom: 30px; } }
  .single-guide-vdo .single-guide-vdo-inner .play-icon {
    cursor: pointer; }
  .single-guide-vdo .single-guide-vdo-inner .image-wrap {
    height: 170px;
    margin-bottom: 30px;
    position: relative; }
    @media screen and (max-width: 767px) {
      .single-guide-vdo .single-guide-vdo-inner .image-wrap {
        height: 110px;
        margin-bottom: 10px; } }
    .single-guide-vdo .single-guide-vdo-inner .image-wrap img {
      height: auto;
      width: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      max-height: 100%; }
  .single-guide-vdo .single-guide-vdo-inner .prod-name {
    display: block;
    text-align: center;
    text-transform: uppercase; }

.perticular-devices-guide-single .repair-guides {
  margin-bottom: 20px; }
.perticular-devices-guide-single ul li {
  list-style: none;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 3px; }

.guide-list-wrap {
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .guide-list-wrap {
      font-size: 14px;
      margin-bottom: 10px; } }
  @media screen and (max-width: 767px) {
    .guide-list-wrap ul {
      margin-bottom: 20px; } }

.guide-steps-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: white;
  min-height: 400px;
  margin-bottom: 30px;
  border-radius: 10px; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .guide-steps-inner {
      min-height: 300px; } }
  @media screen and (max-width: 767px) {
    .guide-steps-inner {
      min-height: 100px;
      margin-bottom: 30px;
      display: block; } }
  .guide-steps-inner .sub-title {
    font-weight: 800;
    margin-bottom: 10px; }
  .guide-steps-inner .content {
    padding: 60px 30px; }
    @media screen and (max-width: 767px) {
      .guide-steps-inner .content {
        padding: 10px; } }

.vdo-popup .popup-box {
  padding: 25px; }
  @media screen and (max-width: 767px) {
    .vdo-popup .popup-box {
      padding: 15px; } }
  .vdo-popup .popup-box .close {
    position: absolute;
    right: 10px;
    top: 10px; }
  .vdo-popup .popup-box .sub-title {
    margin-bottom: 15px; }

.single-product .product-image-wrap {
  width: 50%;
  min-height: 500px; }
  @media screen and (max-width: 767px) {
    .single-product .product-image-wrap {
      width: 100%;
      height: auto;
      min-height: 100px; } }
  .single-product .product-image-wrap .no-image {
    height: auto !important;
    width: auto !important;
    margin: auto;
    float: none; }
.single-product .single-prod-desc {
  width: 50%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: 0;
  padding-top: 50px;
  padding-bottom: 4rem;
  position: relative;
  float: right; }
  @media screen and (max-width: 767px) {
    .single-product .single-prod-desc {
      width: 100%;
      padding-bottom: 10px; } }

footer {
  background: #fff;
  position: relative;
  border-top: 1px solid #ebebeb; }

.product-section-wrap {
  background: #fff;
  position: relative; }

ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  ul .inner {
    padding-left: 22px;
    overflow: hidden;
    display: none;
    margin: 0;
    /* padding: 0; */ }
    ul .inner.show {
      /*display: block;*/ }
  ul li {
    margin: 0; }
    ul li a.toggle {
      width: 100%;
      display: block;
      /* background: rgba(0, 0, 0, 0.78); */
      /* color: #fefefe; */
      padding: 8px 0;
      /* border-radius: 0.15em; */
      transition: background 0.3s ease;
      text-transform: capitalize; }
      @media screen and (max-width: 767px) {
        ul li a.toggle {
          padding: 5px 0; } }

/*ul.inner.show1 li  {
color: $colorSecondary;
}*/
.accordion > li > ul.inner {
  padding: 8px 0;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 20px; }

ul.inner .inner li {
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 500; }

ul.inner > li,
ul.inner > li a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  margin-bottom: 12px; }
  @media screen and (max-width: 767px) {
    ul.inner > li,
    ul.inner > li a {
      margin-bottom: 5px; } }

ul .inner .inner li {
  font-weight: 500;
  margin-bottom: 10px; }

ul .inner .inner {
  padding: 0 0 0 27px; }

.product-left-sidebar {
  position: relative; }
  .product-left-sidebar:after {
    border-right: 1px solid #ebebeb;
    height: 100%;
    width: 1px;
    content: "";
    position: absolute;
    top: 50px;
    right: -1px; }
    @media screen and (max-width: 767px) {
      .product-left-sidebar:after {
        display: none; } }
  @media screen and (max-width: 767px) {
    .product-left-sidebar {
      margin-bottom: 30px; } }
  .product-left-sidebar h4 {
    line-height: 35px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 9px; }

.p-single-device .device-image {
  height: 160px;
  position: relative;
  margin-bottom: 10px; }
  @media screen and (max-width: 991px) {
    .p-single-device .device-image {
      height: 120px; } }
  .p-single-device .device-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%; }
@media screen and (max-width: 991px) {
  .p-single-device .device-content .prc-option-wrp {
    display: block;
    width: 100%;
    text-align: center; } }
.p-single-device .device-content .prc {
  line-height: 33px; }
  .p-single-device .device-content .prc del {
    font-size: 12px; }
    @media screen and (max-width: 767px) {
      .p-single-device .device-content .prc del {
        font-size: 10px; } }
  @media screen and (max-width: 991px) {
    .p-single-device .device-content .prc {
      display: block;
      width: 100%;
      text-align: center; } }
.p-single-device .device-content p {
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px; }
  @media screen and (max-width: 991px) {
    .p-single-device .device-content p {
      margin-bottom: 10px; } }
.p-single-device .device-content .btn {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.4;
  padding: 6px 15px;
  box-shadow: 0 14px 42px 0 rgba(0, 0, 0, 0.12); }
  @media screen and (max-width: 767px) {
    .p-single-device .device-content .btn {
      font-size: 11px;
      box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.12); } }
  @media screen and (max-width: 991px) {
    .p-single-device .device-content .btn {
      float: none !important;
      clear: both; } }

.collection-page {
  background: white; }

@media screen and (max-width: 767px) {
  .collection-page ul.inner > li a,
  .collection-page ul.inner > li {
    margin-bottom: 11px; } }
@media screen and (max-width: 767px) {
  .collection-page .accordion > li > ul.inner {
    padding: 0px 0; } }
.collection-page ul li a {
  display: block; }
.collection-page ul.accordion {
  max-width: 100%;
  height: calc(100vh - 250px);
  overflow-y: auto;
  padding-right: 12%; }
  @media screen and (max-width: 767px) {
    .collection-page ul.accordion {
      padding-right: 0%; } }
  @media screen and (max-width: 991px) {
    .collection-page ul.accordion {
      max-width: 100%; } }
  .collection-page ul.accordion > li {
    padding: 8px 0; }
    @media screen and (max-width: 767px) {
      .collection-page ul.accordion > li {
        text-transform: uppercase;
        font-size: 17px; } }
  .collection-page ul.accordion > li.has-dropdown {
    padding: 0; }
    .collection-page ul.accordion > li.has-dropdown > .inner > li a {
      opacity: 0.7; }
    .collection-page ul.accordion > li.has-dropdown > .inner > li > a {
      padding-left: 25px; }
    .collection-page ul.accordion > li.has-dropdown > a {
      position: relative;
      padding: 8px 0; }
      .collection-page ul.accordion > li.has-dropdown > a.active-main {
        color: #0088cb;
        opacity: 1 !important;
        font-weight: 600; }
        @media screen and (max-width: 767px) {
          .collection-page ul.accordion > li.has-dropdown > a.active-main {
            color: #fff; } }
      .collection-page ul.accordion > li.has-dropdown > a:after {
        content: "\f105";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
        color: inherit;
        font-size: 25px;
        padding-right: 0.5em;
        position: absolute;
        top: 4px;
        right: 0; }
        @media screen and (max-width: 767px) {
          .collection-page ul.accordion > li.has-dropdown > a:after {
            top: 4px; } }
      .collection-page ul.accordion > li.has-dropdown > a.open:after {
        content: "\f107"; }
  .collection-page ul.accordion li.has-has-dropdown li a {
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 500; }
.collection-page ul a:hover,
.collection-page ul a.open {
  color: #0088cb;
  opacity: 1 !important; }
  .collection-page ul a:hover:after,
  .collection-page ul a.open:after {
    color: #0088cb; }
.collection-page ul a.open {
  font-weight: 600; }
  @media screen and (max-width: 767px) {
    .collection-page ul a.open {
      font-weight: 500; } }
.collection-page ul li.selected a {
  color: #0088cb; }
  @media screen and (max-width: 767px) {
    .collection-page ul li.selected a {
      color: #79eeff !important; } }

ul.inner > li.has-has-dropdown > a {
  padding-left: 20px;
  position: relative;
  opacity: 0.7; }
  ul.inner > li.has-has-dropdown > a:after {
    content: "\f067";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /* color: #000; */
    font-size: 14px;
    padding-right: 0.5em;
    position: absolute;
    top: 0;
    left: 0; }
  ul.inner > li.has-has-dropdown > a.open:after {
    content: "\f068";
    opacity: 1; }

.product-slider-wrap {
  position: relative; }
  @media screen and (max-width: 767px) {
    .product-slider-wrap {
      display: block;
      margin-bottom: 60px; } }
  .product-slider-wrap .slider-nav {
    position: absolute;
    left: 0;
    width: 100px;
    z-index: 1;
    top: 0; }
    @media screen and (max-width: 767px) {
      .product-slider-wrap .slider-nav {
        bottom: auto;
        top: 20px; } }
    @media screen and (max-width: 767px) {
      .product-slider-wrap .slider-nav {
        width: 100px;
        position: relative;
        float: left; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .product-slider-wrap .slider-nav {
        width: 70px; } }
    .product-slider-wrap .slider-nav .slick-prev,
    .product-slider-wrap .slider-nav .slick-next {
      top: -20px;
      -webkit-transform: translate(0%, 0%);
      -ms-transform: translate(0%, 0%);
      -o-transform: translate(0%, 0%);
      transform: translate(0%, 0%);
      left: 0;
      margin: auto;
      right: 0; }
      .product-slider-wrap .slider-nav .slick-prev::before,
      .product-slider-wrap .slider-nav .slick-next::before {
        content: "\f106"; }
    .product-slider-wrap .slider-nav .slick-prev {
      top: auto;
      bottom: -20px; }
      .product-slider-wrap .slider-nav .slick-prev::before {
        content: "\f107"; }
    .product-slider-wrap .slider-nav .slick-slide {
      margin: 8px 0;
      height: 100px !important;
      position: relative;
      padding: 0;
      z-index: 9;
      cursor: pointer; }
      @media screen and (max-width: 991px) {
        .product-slider-wrap .slider-nav .slick-slide {
          height: 70px !important; } }
      @media screen and (max-width: 767px) {
        .product-slider-wrap .slider-nav .slick-slide {
          height: 80px !important;
          margin: 7px 0; } }
    .product-slider-wrap .slider-nav .slide-image img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      max-height: 95%;
      max-width: 95%; }
  .product-slider-wrap .product-image {
    width: calc(100% - 90px);
    float: right;
    min-height: 280px;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    padding-bottom: 20px; }
    @media screen and (max-width: 767px) {
      .product-slider-wrap .product-image {
        width: calc(100% - 100px);
        min-height: 100px; } }
    .product-slider-wrap .product-image.no-image-wrap {
      width: 100%; }

@media screen and (max-width: 767px) {
  .pop-up-content .breadcrumb-detail-section {
    margin-bottom: 10px; } }
.pop-up-content .breadcrumb-detail-section .breadcrumb {
  margin-bottom: 3px;
  opacity: 0.5; }
.pop-up-content.select-part-section {
  text-align: left;
  color: #48484a; }
  .pop-up-content.select-part-section .pop-up-content-inner {
    background: white;
    padding: 30px 45px;
    border-radius: 10px; }
    @media screen and (max-width: 767px) {
      .pop-up-content.select-part-section .pop-up-content-inner {
        padding: 10px;
        max-height: 370px; } }
  .pop-up-content.select-part-section .page-sub-heading {
    text-align: left;
    font-weight: 600;
    margin-bottom: 30px; }
    @media screen and (max-width: 767px) {
      .pop-up-content.select-part-section .page-sub-heading {
        margin-bottom: 10px; } }
  .pop-up-content.select-part-section .select-part-wrap {
    height: 440px;
    overflow-y: auto; }
    @media screen and (max-width: 767px) {
      .pop-up-content.select-part-section .select-part-wrap {
        height: 300px; } }
    .pop-up-content.select-part-section .select-part-wrap .collectionPage {
      width: 100%; }
    .pop-up-content.select-part-section .select-part-wrap > .grid, .pop-up-content.select-part-section .select-part-wrap > .grid--rev, .pop-up-content.select-part-section .select-part-wrap > .grid--full {
      margin: 0; }
    .pop-up-content.select-part-section .select-part-wrap .select-part-inner {
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid #ebebeb;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      @media screen and (max-width: 767px) {
        .pop-up-content.select-part-section .select-part-wrap .select-part-inner {
          display: block; } }
      .pop-up-content.select-part-section .select-part-wrap .select-part-inner p {
        font-weight: 500; }
      .pop-up-content.select-part-section .select-part-wrap .select-part-inner .stock-section {
        text-transform: capitalize; }
        @media screen and (max-width: 767px) {
          .pop-up-content.select-part-section .select-part-wrap .select-part-inner .stock-section {
            clear: both;
            margin-top: 10px;
            text-align: left !important; } }
        .pop-up-content.select-part-section .select-part-wrap .select-part-inner .stock-section img {
          display: inline-block;
          margin-right: 10px;
          vertical-align: middle; }
          @media screen and (min-width: 768px) and (max-width: 991px) {
            .pop-up-content.select-part-section .select-part-wrap .select-part-inner .stock-section img {
              margin-right: 2px;
              max-width: 20px; } }
      .pop-up-content.select-part-section .select-part-wrap .select-part-inner img {
        max-height: 100px;
        margin: 0; }
      .pop-up-content.select-part-section .select-part-wrap .select-part-inner h3 {
        text-align: left;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.2; }
        @media screen and (max-width: 767px) {
          .pop-up-content.select-part-section .select-part-wrap .select-part-inner h3 {
            margin-bottom: 5px; } }
      .pop-up-content.select-part-section .select-part-wrap .select-part-inner h5 {
        color: #0088cb;
        font-weight: 600; }
      @media screen and (min-width: 992px) and (max-width: 1199px) {
        .pop-up-content.select-part-section .select-part-wrap .select-part-inner .btn {
          font-size: 12px; } }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .pop-up-content.select-part-section .select-part-wrap .select-part-inner .btn {
          font-size: 13px;
          letter-spacing: 0;
          padding: 11px 6px;
          width: 100%; } }
      @media screen and (max-width: 767px) {
        .pop-up-content.select-part-section .select-part-wrap .select-part-inner .btn {
          padding: 10px 0;
          width: 100%;
          letter-spacing: 0;
          font-size: 12px; } }
      @media screen and (max-width: 767px) {
        .pop-up-content.select-part-section .select-part-wrap .select-part-inner .btn {
          margin-top: 5px; } }
.pop-up-content.productpart-popup .view-detail {
  font-weight: 600; }
  @media screen and (max-width: 767px) {
    .pop-up-content.productpart-popup .view-detail {
      font-weight: 400; } }
  .pop-up-content.productpart-popup .view-detail i {
    padding-left: 10px; }
.pop-up-content.productpart-popup p {
  margin-bottom: 10px; }
  .pop-up-content.productpart-popup p a {
    font-weight: 600;
    text-transform: capitalize; }
.pop-up-content.productpart-popup .page-sub-heading {
  font-size: 18px;
  margin-bottom: 0; }
  @media screen and (min-width: 320px) {
    .pop-up-content.productpart-popup .page-sub-heading {
      font-size: calc( 18px + 10 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .pop-up-content.productpart-popup .page-sub-heading {
      font-size: 28px; } }
.pop-up-content.productpart-popup .prc.left {
  font-size: 16px;
  font-weight: 600;
  color: #0088cb; }
  @media screen and (min-width: 320px) {
    .pop-up-content.productpart-popup .prc.left {
      font-size: calc( 16px + 8 * (100vw - 320px) / 1046 ); } }
  @media screen and (min-width: 1366px) {
    .pop-up-content.productpart-popup .prc.left {
      font-size: 24px; } }
.pop-up-content.productpart-popup .price-stock-section {
  margin-bottom: 10px; }
  .pop-up-content.productpart-popup .price-stock-section ul {
    margin: 0; }
  .pop-up-content.productpart-popup .price-stock-section * {
    display: inline-block;
    vertical-align: middle; }
    .pop-up-content.productpart-popup .price-stock-section * .stock {
      text-transform: capitalize;
      font-weight: 600;
      padding-left: 30px; }
      @media screen and (max-width: 767px) {
        .pop-up-content.productpart-popup .price-stock-section * .stock {
          padding-left: 4px; } }
.pop-up-content.productpart-popup .guide-cart-section {
  padding-left: 15px;
  padding-right: 15px; }
  @media screen and (max-width: 767px) {
    .pop-up-content.productpart-popup .guide-cart-section {
      margin-bottom: 15px;
      padding-top: 15px; } }
  .pop-up-content.productpart-popup .guide-cart-section ul {
    margin: 0; }
  @media screen and (max-width: 767px) {
    .pop-up-content.productpart-popup .guide-cart-section .incrementor-wrapper .numbers-row input {
      padding: 11px 25px; } }
  @media screen and (max-width: 767px) {
    .pop-up-content.productpart-popup .guide-cart-section .btn {
      padding: 11px 15px;
      font-size: 12px; } }
.pop-up-content.productpart-popup .feature-section {
  margin-bottom: 40px; }
  @media screen and (max-width: 991px) {
    .pop-up-content.productpart-popup .feature-section {
      margin-bottom: 20px; } }
  .pop-up-content.productpart-popup .feature-section ul {
    margin: 0; }
  .pop-up-content.productpart-popup .feature-section span {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: block; }
  .pop-up-content.productpart-popup .feature-section .feature-section-left {
    float: left;
    width: 50%; }
    @media screen and (max-width: 767px) {
      .pop-up-content.productpart-popup .feature-section .feature-section-left {
        width: 100%;
        margin-bottom: 15px; } }
  .pop-up-content.productpart-popup .feature-section .feature-section-right {
    float: left;
    width: 50%; }
    @media screen and (max-width: 767px) {
      .pop-up-content.productpart-popup .feature-section .feature-section-right {
        width: 100%; } }
.pop-up-content.productpart-popup .guide-cart-section {
  clear: both;
  border-top: 1px solid #ebebeb; }
.pop-up-content.select-optional-add .sub-title {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .pop-up-content.select-optional-add .sub-title {
      margin-bottom: 10px; } }
.pop-up-content.select-optional-add .selected-product-left {
  border-right: 1px solid #ebebeb; }
  .pop-up-content.select-optional-add .selected-product-left img {
    margin-bottom: 30px; }
  .pop-up-content.select-optional-add .selected-product-left .price {
    text-align: center;
    color: #0088cb;
    display: block;
    margin-top: 5px; }
.pop-up-content .ready-set-section h1 {
  margin-bottom: 14px; }
  @media screen and (max-width: 767px) {
    .pop-up-content .ready-set-section h1 {
      margin-bottom: 5px; } }
.pop-up-content .ready-set-section .acc-sub-title {
  font-weight: 500;
  margin-bottom: 22px; }
  @media screen and (max-width: 767px) {
    .pop-up-content .ready-set-section .acc-sub-title {
      margin-bottom: 10px; } }
  .pop-up-content .ready-set-section .acc-sub-title:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    background-image: url("checkmark.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 10px; }
.pop-up-content .ready-set-section .button-wrap {
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .pop-up-content .ready-set-section .button-wrap {
      margin-bottom: 15px; } }
  .pop-up-content .ready-set-section .button-wrap a {
    margin: 0 15px; }
    @media screen and (max-width: 767px) {
      .pop-up-content .ready-set-section .button-wrap a {
        margin: 0 5px; } }
.pop-up-content .tips-recom-section {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  margin-top: 50px; }
  @media screen and (max-width: 767px) {
    .pop-up-content .tips-recom-section {
      padding: 10px;
      margin-top: 20px; } }
  .pop-up-content .tips-recom-section .title-view-wrap {
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px; }
    @media screen and (max-width: 767px) {
      .pop-up-content .tips-recom-section .title-view-wrap {
        margin-bottom: 20px; } }
    .pop-up-content .tips-recom-section .title-view-wrap .sub-title {
      color: black;
      font-weight: 600;
      letter-spacing: 0px; }
    .pop-up-content .tips-recom-section .title-view-wrap .view-all {
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 2px; }
      .pop-up-content .tips-recom-section .title-view-wrap .view-all i {
        padding-left: 10px;
        font-size: 20px; }
  @media screen and (max-width: 767px) {
    .pop-up-content .tips-recom-section .image-content-wrap {
      margin-bottom: 15px; } }
  .pop-up-content .tips-recom-section .image-wrap {
    width: 37%;
    float: left; }
    @media screen and (min-width: 1400px) {
      .pop-up-content .tips-recom-section .image-wrap {
        height: 155px; } }
  .pop-up-content .tips-recom-section .content {
    width: 63%;
    float: left;
    text-align: left;
    padding-left: 30px;
    color: #48484a; }
    @media screen and (max-width: 767px) {
      .pop-up-content .tips-recom-section .content {
        padding-left: 10px; } }
    .pop-up-content .tips-recom-section .content h3 {
      margin-bottom: 6px; }
    .pop-up-content .tips-recom-section .content p {
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      font-weight: 400;
      color: #989899;
      font-size: 16px; }
      @media screen and (max-width: 767px) {
        .pop-up-content .tips-recom-section .content p {
          margin-bottom: 5px; } }

@media screen and (max-width: 767px) {
  body {
    font-size: 13px; } }

.product-selection-tab .thumb-desc-wrp {
  /*     min-height: 155px; */
  padding: 10px 5px; }
  @media screen and (max-width: 767px) {
    .product-selection-tab .thumb-desc-wrp {
      padding: 10px; } }
  .product-selection-tab .thumb-desc-wrp .mobile-thumb-image {
    width: 150px;
    height: 100%;
    max-width: 100%;
    display: flex;
    align-items: center; }
    .product-selection-tab .thumb-desc-wrp .mobile-thumb-image img {
      max-width: 100%;
      max-height: 100%; }
    @media screen and (min-width: 992px) and (max-width: 1099px) {
      .product-selection-tab .thumb-desc-wrp .mobile-thumb-image {
        width: 100px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .product-selection-tab .thumb-desc-wrp .mobile-thumb-image {
        width: 80px; } }
    @media screen and (max-width: 767px) {
      .product-selection-tab .thumb-desc-wrp .mobile-thumb-image {
        width: 100%; } }
  .product-selection-tab .thumb-desc-wrp .desc {
    width: calc(100% - 150px);
    padding-left: 3px;
    display: block; }
    @media screen and (min-width: 992px) and (max-width: 1099px) {
      .product-selection-tab .thumb-desc-wrp .desc {
        width: calc(100% - 10px); } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .product-selection-tab .thumb-desc-wrp .desc {
        width: calc(100% - 80px); } }
    @media screen and (max-width: 767px) {
      .product-selection-tab .thumb-desc-wrp .desc {
        width: 100%; } }
    .product-selection-tab .thumb-desc-wrp .desc .recomend {
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 0;
      color: #0088cb;
      word-break: break-all; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .product-selection-tab .thumb-desc-wrp .desc h5 {
        font-size: 12px; } }
  .product-selection-tab .thumb-desc-wrp .btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px; }
  .product-selection-tab .thumb-desc-wrp .price {
    margin-bottom: 10px; }
@media screen and (max-width: 767px) {
  .product-selection-tab .btn {
    padding: 10px; } }

.quality-inner {
  border: 1px solid #ebebeb;
  padding: 10px 0;
  border-radius: 5px; }
  @media screen and (max-width: 767px) {
    .quality-inner {
      height: 100%;
      /*     min-height: 155px; */ } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .quality-inner {
      height: 100%;
      /*     min-height: 155px; */ } }
  .quality-inner p,
  .quality-inner span {
    text-align: center !important;
    margin-bottom: 0; }
  .quality-inner .qua-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
    display: block; }
  .quality-inner img {
    margin-bottom: 10px; }

.quantityWrapper {
  position: relative; }
  .quantityWrapper input[type="radio"] {
    left: 0;
    top: 0; }

.product-page .r-tabs .r-tabs-panel {
  background-color: transparent;
  border-left: none;
  border-top: none; }
.product-page .r-tabs .r-tabs-nav .r-tabs-tab {
  padding: 0; }
  .product-page .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active .r-tabs-anchor {
    border-bottom: none;
    font-weight: 500;
    color: #48484a;
    word-wrap: break-word;
    white-space: normal; }
    .product-page .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active .r-tabs-anchor:after {
      content: "";
      position: absolute;
      bottom: -2px;
      height: 1px;
      background: #48484a;
      width: 100%;
      left: 0; }
  .product-page .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-default {
    font-weight: 600; }

.product-selection-tab .equal-width .thumb-desc-wrp .mobile-thumb-image {
  width: 150px; }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .product-selection-tab .equal-width .thumb-desc-wrp .mobile-thumb-image {
      width: 110px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .product-selection-tab .equal-width .thumb-desc-wrp .mobile-thumb-image {
      width: 70px; } }

.product-selection-tab .equal-width .thumb-desc-wrp .desc {
  width: calc(100% - 150px); }
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .product-selection-tab .equal-width .thumb-desc-wrp .desc {
      width: calc(100% - 110px); } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .product-selection-tab .equal-width .thumb-desc-wrp .desc {
      width: calc(100% - 70px); } }
  .product-selection-tab .equal-width .thumb-desc-wrp .desc .pack .thumb-desc-wrp .desc {
    width: auto;
    margin: 0 auto;
    text-align: center; }

.blog-detail .blog-wrap {
  padding: 0; }
  @media screen and (max-width: 767px) {
    .blog-detail .blog-wrap {
      margin-top: 10px; } }

.single-product .share-section {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }
  @media screen and (max-width: 991px) {
    .single-product .share-section {
      display: block; } }
  .single-product .share-section .tag-social-wrap {
    margin-top: 0;
    border-top: none;
    margin-bottom: 0;
    padding: 0 15px; }
    @media screen and (max-width: 991px) {
      .single-product .share-section .tag-social-wrap {
        margin-bottom: 20px; } }
.single-product .vdo-wrap {
  width: 90px;
  position: relative;
  float: left;
  height: 54px;
  box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
  margin-right: 10px; }
  @media screen and (max-width: 767px) {
    .single-product .vdo-wrap {
      display: inline-block;
      margin-right: 0;
      float: none; } }
  .single-product .vdo-wrap .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer; }
.single-product .repair-video-section {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600; }
  @media screen and (max-width: 767px) {
    .single-product .repair-video-section {
      display: block;
      text-align: center; } }
  @media screen and (max-width: 767px) {
    .single-product .repair-video-section a {
      display: block;
      text-align: center; } }

.product-image-wrap {
 /*   transition:all 0.5s;
*/ }
  .product-image-wrap .social {
    float: left;
    font-weight: 600; }
    @media screen and (max-width: 767px) {
      .product-image-wrap .social {
        text-align: center; } }

#main-content.product-page {
  padding-top: 0; }
  #main-content.product-page .product-image-wrap {
    padding-top: 15px;
    /*     transition: all 0.2s ease;
     */ }
    #main-content.product-page .product-image-wrap.is_stuck {
      padding-top: 80px; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        #main-content.product-page .product-image-wrap.is_stuck {
          padding-top: 65px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      #main-content.product-page .product-image-wrap {
        padding-top: 15px; } }
    @media screen and (max-width: 767px) {
      #main-content.product-page .product-image-wrap {
        padding-top: 20px; } }

.collection-page .r-tabs .r-tabs-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-evenly;
  -webkit-justify-content: space-evenly; }
  .collection-page .r-tabs .r-tabs-nav:after {
    display: none; }
.collection-page .r-tabs .r-tabs-nav .r-tabs-tab {
  width: auto;
  white-space: normal; }
.collection-page .r-tabs .r-tabs-nav .r-tabs-anchor {
  display: inline-block;
  padding: 10px 0;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  position: relative;
  font-size: 15px; }
.collection-page .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active .r-tabs-anchor {
  border-bottom: 3px solid;
  font-weight: 600; }

@media only screen and (max-width: 767px) {
  .collection-page .r-tabs .r-tabs-nav,
  .r-tabs .r-tabs-nav {
    display: none; }

  .r-tabs .r-tabs-accordion-title {
    display: block; } }
.header-section {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 0;
  background: white;
  width: 100%;
  z-index: 99; }
  @media screen and (max-width: 767px) {
    .header-section {
      z-index: 9999; } }

@media screen and (max-width: 767px) {
  .template-cart .account_title {
    display: block; } }
@media screen and (min-width: 768px) and (max-width: 991px) {
  .template-cart .account_title {
    margin-bottom: 10px; } }
@media screen and (max-width: 767px) {
  .template-cart .account_title .aero-link {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0; } }
@media screen and (max-width: 767px) {
  .template-cart .account_title .aero-link i {
    padding-left: 5px;
    top: 1px;
    position: relative; } }
.template-cart .incrementor-wrapper .numbers-row {
  height: 48px; }
  .template-cart .incrementor-wrapper .numbers-row .js-qty__adjust {
    display: none; }

.banner-inner .r-tabs .r-tabs-panel {
  background-color: transparent;
  border-left: none;
  border-top: none; }
@media screen and (max-width: 767px) {
  .banner-inner .r-tabs .r-tabs-accordion-title {
    display: none; } }

#CartDrawer .ajaxcart__qty {
  max-width: 105px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #c9cacc; }
  #CartDrawer .ajaxcart__qty .ajaxcart__qty-adjust {
    width: 35px; }
  #CartDrawer .ajaxcart__qty .ajaxcart__qty-num {
    width: 40px;
    text-align: center;
    padding: 5px 0;
    border-top: none;
    border-bottom: none;
    border-color: #c9cacc;
    border-radius: 0; }
  #CartDrawer .ajaxcart__qty span.visually-hidden {
    display: none; }
#CartDrawer .ajaxcart__row {
  padding-bottom: 15px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 15px;
  position: relative; }
#CartDrawer .ajaxcart__footer .footer-top {
  margin-bottom: 15px; }
#CartDrawer .ajax--prod-name {
  margin-bottom: 6px; }

#main-content.collection-page {
  padding-top: 0; }

.collection-banner {
  padding: 10px 0 25px;
  margin-bottom: 15px; }
  .collection-banner .breadcrumb {
    margin-bottom: 5px; }
  @media screen and (max-width: 767px) {
    .collection-banner {
      padding: 15px 0; } }
  .collection-banner h1,
  .collection-banner h4 {
    margin-bottom: 0;
    color: #fff; }
  .collection-banner .breadcrumb * {
    color: #fff; }
  .collection-banner .breadcrumb span {
    font-weight: 600; }

.popViewMore {
  position: absolute;
  display: inline-block; }
  @media screen and (max-width: 767px) {
    .popViewMore {
      display: block;
      clear: both;
      position: relative; } }
  .popViewMore .view-ml {
    cursor: pointer; }

.addOn-contents-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap; }

.tooltip_in {
  position: relative; }

.tool-hover {
  position: absolute;
  /*   background: white; */
  background: #0088cb;
  color: #fff;
  width: 400px;
  box-shadow: 0 20px 42px 0 rgba(0, 0, 0, 0.15);
  right: 18px;
  padding: 15px 40px 15px;
  z-index: 9;
  max-width: 85%;
  margin-top: -10px;
  bottom: calc(100% + 5px); }
  @media screen and (max-width: 767px) {
    .tool-hover {
      padding: 10px; } }
  .tool-hover h6 {
    color: #0088cb;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase; }

/* .pop-up-content{
.pop-up-content-inner{
.aero-link{
&.go-backs{
color: #0d61a7;
}
}
}
} */
.ajaxcart__footer .btn {
  color: white; }
  .ajaxcart__footer .btn:hover, .ajaxcart__footer .btn:focus {
    color: #0088cb; }

.selectAnotherRepairType {
  color: white; }
  .selectAnotherRepairType:hover, .selectAnotherRepairType:focus {
    color: #fff;
    text-shadow: 0 0px 0px #fff; }

.selector-wrapper {
  display: none !important; }

.center-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.itemNotAvailable {
  padding: 30px; }
  @media screen and (max-width: 767px) {
    .itemNotAvailable {
      padding: 0; } }

.freeShippingText {
  color: #9acc52; }

.itemAdded {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  line-height: 33px; }
  .itemAdded img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    max-width: 17px; }

select#productSelect.product-single__variants {
  display: none !important; }

.product-page .r-tabs-accordion-title.r-tabs-state-default a {
  color: black; }
.product-page .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  color: #0088cb;
  white-space: normal; }
.product-page .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  font-size: 16px;
  color: #48484a;
  white-space: normal; }

.page-content .img {
  text-align: left; }
.page-content p {
  margin: 0 0 22px 0; }
  .page-content p.question {
    margin: 0 0 3px 0; }
.page-content a {
  color: #0088cb;
  text-decoration: underline; }
.page-content h4,
.page-content h3 {
  margin-top: 25px; }
.page-content ul {
  margin: 0 0 36px 36px; }
  .page-content ul li {
    list-style: disc;
    list-style-position: inside;
    font-size: 15px; }
    .page-content ul li a {
      display: inline; }

#shopify-section-faq .page-content a {
  text-decoration: none; }

.form-vertical #contact_form input,
.form-vertical #contact_form select,
.form-vertical #contact_form textarea {
  display: inline-block;
  margin-bottom: 10px;
  padding: 12px;
  margin: 0 18px 10px 0;
  line-height: 1.6;
  /*       color:#757575; */ }
  @media screen and (max-width: 767px) {
    .form-vertical #contact_form input,
    .form-vertical #contact_form select,
    .form-vertical #contact_form textarea {
      font-size: 16px; } }
.form-vertical #contact_form .submit {
  margin-top: 22px; }

.form-vertical #contact_form select {
  color: #757575;
  -webkit-appearance: none; }

.sidebarFAQ h3 {
  font-size: 22px; }
.sidebarFAQ p {
  font-size: 14px;
  margin: 0 0 20px 0; }

.faqs.active p.question {
  color: #0088cb; }

.faqs {
  margin-bottom: 30px; }

.ajaxcart__product-meta,
.metaVariant {
  color: #777;
  font-size: 12px;
  margin-bottom: 9px; }

.cart__checkout {
  margin-bottom: 20px; }

.free-shipping-bar .for-progress {
  position: absolute;
  background: #0088cb;
  border-radius: 10px;
  left: 0;
  top: 0;
  height: 100%;
  position: absolute; }
  .free-shipping-bar .for-progress.free-shipping {
    width: 40%; }
  .free-shipping-bar .for-progress.qualifies {
    width: 60%; }

@media screen and (max-width: 767px) {
  .product-selection-tab .equal-width .thumb-desc-wrp .mobile-thumb-image,
  .product-selection-tab .equal-width .thumb-desc-wrp .desc {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-left: 0; } }

@media screen and (max-width: 767px) {
  .product-selection-tab .thumb-desc-wrp .desc p {
    width: 100%;
    text-align: left; } }

@media screen and (min-width: 768px) and (max-width: 1199px) {
  #shopify-section-faq .page-content {
    margin-top: 30px; } }

@media screen and (max-width: 767px) {
  #toolkit {
    width: 100%;
    text-align: center; } }

@media screen and (max-width: 480px) {
  .product-selection-tab .yes-no-selection .thumb-desc-wrp .mobile-thumb-image {
    width: 100% !important; } }

@media screen and (max-width: 480px) {
  .product-selection-tab .yes-no-selection .thumb-desc-wrp .desc {
    width: 100% !important;
    padding-left: 0 !important;
    text-align: center !important;
    margin-top: 10px !important; } }

@media screen and (max-width: 767px) {
  .news-letter-section .payment-option {
    margin-top: 30px; } }
.news-letter-section .payment-option ul {
  display: block; }
  .news-letter-section .payment-option ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px; }
    .news-letter-section .payment-option ul li a {
      display: inline-block; }

body.productPopupActive {
  overflow: hidden !important; }
  @media screen and (max-width: 1024px) {
    body.productPopupActive {
      position: fixed;
      left: 0;
      width: 100%; } }

.addCartBtnWrap #AddToCart {
  font-weight: 500; }

.pop-up-content-inner.product-selection-tab .input-label-wrap {
  height: 100%; }
.pop-up-content-inner.product-selection-tab .thumb-desc-wrp {
  border: 1px solid #c4c7ca;
  height: calc(100% - 20px); }
.pop-up-content-inner.product-selection-tab .desc .btn-ghost {
  background-color: transparent;
  color: #0088cb;
  border: 1px solid #0088cb; }
  .pop-up-content-inner.product-selection-tab .desc .btn-ghost:hover {
    background-color: #0088cb;
    color: #ffffff; }
  .pop-up-content-inner.product-selection-tab .desc .btn-ghost.Added {
    background-color: #0088cb;
    color: #ffffff; }
.pop-up-content-inner.product-selection-tab .desc .recomend {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px; }
  .pop-up-content-inner.product-selection-tab .desc .recomend img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px; }

.pop-up-content-inner .ready-set-section h1 {
  font-weight: 800; }

.pop-up-content-inner .repair-video-section {
  display: flex !important;
  align-items: center;
  margin: 20px 0; }
  .pop-up-content-inner .repair-video-section .vdo-wrap {
    width: 100px;
    position: relative; }
    .pop-up-content-inner .repair-video-section .vdo-wrap .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .pop-up-content-inner .repair-video-section .videoClick {
    margin-left: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px; }

.guide-cart-section .justify-content-between {
  justify-content: flex-end;
  -webkit-justify-content: flex-end; }
  @media screen and (max-width: 767px) {
    .guide-cart-section .justify-content-between {
      justify-content: center;
      -webkit-justify-content: center; } }
  .guide-cart-section .justify-content-between .addCartBtnWrap {
    margin-left: 15px; }
  .guide-cart-section .justify-content-between .button-wrap {
    margin-left: 15px; }

.pink {
  color: #fc6767; }

.magento {
  color: #30cfd0; }

.error-msg {
  color: red !important;
  margin-bottom: 10px;
  font-size: 12px; }

.footer-news-wrap .error-msg {
  margin-top: -15px; }

.footer-news-wrap {
  position: relative; }
  @media screen and (max-width: 767px) {
    .footer-news-wrap {
      display: block !important; } }

@media screen and (max-width: 767px) {
  .footer-links.news-letter-section .fa {
    display: none !important; } }

#search_page .search-bar {
  position: relative;
  display: block; }
#search_page .input-group-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: auto; }
#search_page .input-group .btn {
  height: 49px;
  border-radius: 0; }
  @media screen and (max-width: 767px) {
    #search_page .input-group .btn {
      height: 39px; } }
#search_page .input-group .input-group-field {
  width: 100%;
  height: 49px;
  border-radius: 0; }
  @media screen and (max-width: 767px) {
    #search_page .input-group .input-group-field {
      height: 39px; } }

#search_page {
  padding-top: 60px; }
  @media screen and (max-width: 991px) {
    #search_page {
      padding-top: 30px; } }

.all-collections {
  border-top: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  margin-bottom: 60px; }
  .all-collections .all-collections-inner {
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 20px; }
    @media screen and (max-width: 767px) {
      .all-collections .all-collections-inner {
        padding: 10px; } }
    .all-collections .all-collections-inner .grid__image {
      height: 160px;
      position: relative;
      margin-bottom: 10px;
      display: block; }
      @media screen and (max-width: 767px) {
        .all-collections .all-collections-inner .grid__image {
          height: 120px; } }
      .all-collections .all-collections-inner .grid__image img {
        max-height: 100%;
        max-width: 100%;
        height: auto;
        width: auto; }
    .all-collections .all-collections-inner .h6 {
      text-align: center;
      font-weight: 600;
      margin-bottom: 10px; }
    .all-collections .all-collections-inner p {
      text-align: center; }

.template-list-collections {
  background: white; }

.all-collections-heading {
  margin-bottom: 15px; }

.template-list-collections #PageContainer {
  padding: 60px 0; }
  @media screen and (max-width: 767px) {
    .template-list-collections #PageContainer {
      padding: 30px 0; } }

#CartDrawer .ajaxcart__footer {
  left: 0;
  position: relative;
  bottom: 0;
  padding: 20px 0 0;
  width: 100%; }

#CartDrawer .ajaxcart__inner {
  max-height: calc(100vh - 370px);
  overflow: auto;
  padding: 0 15px; }
  @media screen and (max-width: 767px) {
    #CartDrawer .ajaxcart__inner {
      max-height: none; } }

.sidebarFAQ h3 {
  margin-top: 0; }

.productPopupActive .mean-container .mean-bar {
  z-index: 99; }

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px; }

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); }

@media screen and (max-width: 1024px) {
  .sm-tablate--show {
    display: block !important; }

  #search_page .search-bar input {
    border: 1px solid #ebebeb; }

  .search-bar input {
    background: transparent;
    color: white;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 10px;
    border-radius: 0;
    width: calc(100% - 40px);
    font-size: 14px; }
  .search-bar button {
    position: absolute;
    height: 100%;
    top: 0;
    width: 40px;
    background: red;
    right: 0;
    background-image: url(search.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: white; }
  .search-bar ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */ }
  .search-bar :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff; }
  .search-bar ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff; } }
@media screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .bj-menu.sticky_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; }

  .bj-menu {
    position: relative; } }
h1.repair-guides {
  position: relative; }
  h1.repair-guides .goback {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    left: 0;
    color: black;
    bottom: -40px; }
    @media screen and (max-width: 767px) {
      h1.repair-guides .goback {
        bottom: -20px; } }

.template-search {
  background: white; }
  .template-search .product-section {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    border-left: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb; }
    .template-search .product-section .product-wrap {
      border-right: 1px solid #ebebeb;
      border-bottom: 1px solid #ebebeb;
      padding-bottom: 20px;
      padding-top: 20px; }
      @media screen and (max-width: 767px) {
        .template-search .product-section .product-wrap .product-name {
          padding: 0; } }
      @media screen and (max-width: 767px) {
        .template-search .product-section .product-wrap .prod-image {
          height: 190px;
          margin-bottom: 0px; } }
      .template-search .product-section .product-wrap .prod-image a {
        max-height: 100%;
        height: 100%; }
        .template-search .product-section .product-wrap .prod-image a img {
          max-width: 100%;
          height: AUTO;
          max-height: 100%; }

.search-page-bar {
  margin-bottom: 20px; }
  .search-page-bar .search_btn .fallback-text {
    /* 		font-size: 0; */ }

.perticular-single-guide-vdo {
  margin: 30px 0; }
  .perticular-single-guide-vdo .video-wrapper {
    margin-bottom: 30px; }

.template-product .product-selection-tab {
  border-bottom: 1px solid #ebebeb; }
  .template-product .product-selection-tab .resp-tabs-container {
    clear: both; }

.product-page .product-section-slider .slick-dots {
  display: none !important; }
.product-page .product-section-slider .slick-prev {
  left: 10px; }
.product-page .product-section-slider .slick-next {
  right: 10px; }

#registerLoginForm {
  /*   .content {
} */ }
  #registerLoginForm ::-webkit-input-placeholder {
    color: #48484a;
    opacity: 0.7; }
  #registerLoginForm ::-moz-placeholder {
    color: #48484a;
    opacity: 0.7; }
  #registerLoginForm :-ms-input-placeholder {
    color: #48484a;
    opacity: 0.7; }
  #registerLoginForm :-moz-placeholder {
    color: #48484a;
    opacity: 0.7; }
  #registerLoginForm label[for] {
    margin-bottom: 5px;
    cursor: pointer;
    display: inline-block; }
  #registerLoginForm .form-group {
    margin-bottom: 15px; }
  #registerLoginForm input {
    margin-bottom: 0;
    padding: 12px;
    border-radius: 0; }
  #registerLoginForm input[type="checkbox"] {
    margin: 3px 0;
    border: none;
    margin-right: 0; }
  #registerLoginForm input[type="checkbox"] + label {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.4; }
  #registerLoginForm .form-wrap {
    margin-bottom: 40px; }
  #registerLoginForm .select-wrap {
    position: relative;
    margin-bottom: 15px; }
    @media screen and (max-width: 767px) {
      #registerLoginForm .select-wrap {
        margin-bottom: 10px; } }
    #registerLoginForm .select-wrap:after {
      position: absolute;
      top: 0;
      content: "";
      right: 10px;
      border-top: 4px solid black;
      border-right: 4px solid transparent;
      border-left: 4px solid transparent;
      bottom: 0;
      margin: auto;
      height: 6px; }
    #registerLoginForm .select-wrap select {
      margin-bottom: 0;
      width: 100%;
      background: white;
      border-radius: 0;
      position: relative;
      padding: 12px; }

.template-customers-login .r-tabs .r-tabs-panel {
  border-left: none;
  border-top: none; }
.template-customers-login textarea {
  border-radius: 0; }
.template-customers-login .tab-layout {
  padding: 40px 0; }

.template-search #shopify-section-search-result .btn.search_btn {
  padding: 0 20px;
  border-radius: 0; }
  @media only screen and (max-width: 1024px) {
    .template-search #shopify-section-search-result .btn.search_btn {
      position: relative;
      top: 0;
      width: auto;
      background: #0088cb !important;
      right: 0;
      background-image: none;
      background-repeat: no-repeat;
      background-position: center center;
      background-color: white;
      border: 1px solid; } }

.product-selection-tab .equal-width .otherSwatch .thumb-desc-wrp .desc,
.product-selection-tab .equal-width .pack .thumb-desc-wrp .desc {
  width: auto;
  margin: 0 auto; }

@media screen and (max-width: 767px) {
  .product-selection-tab .equal-width .otherSwatch .thumb-desc-wrp,
  .product-selection-tab .equal-width .pack .thumb-desc-wrp {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    word-break: break-all; } }

.custombannerBG.r-tabs .r-tabs-panel {
  background-color: transparent;
  border-left: none;
  border-top: none; }

/* #main-nav ul.menu-list ul.third-level-ul{

&:after{
position: absolute;
content: "";
background: url('/cdn/shop/t/37/assets/apple-menu-bg1.png?8915');;
height: 100%;
width: 100%;
background-size: contain;
right: 0%;
top: 0;
z-index: -1;
background-repeat: no-repeat;
background-position: right bottom;
}

} */
.banner .r-tabs .r-tabs-accordion-title {
  display: none !important; }

.list-heading {
  font-size: 17px;
  text-transform: uppercase;
  color: #167ac6;
  margin-bottom: 10px;
  font-weight: 700;
  /* text-decoration: underline; */ }

.repair-guides-all-blog {
  background: white;
  border-bottom: 1px solid #ebebeb; }

.product-page .repair-details h4 {
  font-weight: 600; }
.product-page .repair-details ul {
  margin-bottom: 30px; }
  .product-page .repair-details ul ul {
    margin-bottom: 0; }
  .product-page .repair-details ul li {
    margin-left: 40px;
    list-style: disc; }

.DescMain ul {
  margin-bottom: 30px; }
  .DescMain ul li {
    margin-left: 40px;
    list-style: disc; }

.product-section-wrap .slick-prev {
  left: 20px;
  z-index: 8; }
.product-section-wrap .slick-next {
  right: 20px;
  z-index: 8; }

.collection-page .single-device-tab {
  margin-bottom: 20px; }
.collection-page .viewmore {
  text-align: center; }

#shopify-section-contact-page form {
  position: relative; }

.template-product .breadcrumb {
  max-width: 78%; }
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .template-product .breadcrumb {
      max-width: 85%; } }
  @media screen and (max-width: 767px) {
    .template-product .breadcrumb {
      max-width: 100%; } }

#cart-items .incrementor-wrapper {
  min-width: 105px; }

#shopify-section-search-result .product-section .prod-image {
  justify-content: center;
  -webkit-justify-content: center; }

#account .r-tabs .r-tabs-nav .r-tabs-tab {
  display: inline-block !important;
  width: auto; }
#account .r-tabs-tab:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 2px;
  background-color: #e1e1e1;
  left: -2px;
  top: 50%;
  transform: translateY(-50%); }
#account .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active .r-tabs-anchor {
  border-bottom: none; }
#account .r-tabs .r-tabs-nav .r-tabs-anchor {
  color: #aaa;
  padding: 0px 40px;
  font-size: 21px;
  letter-spacing: 4px;
  text-shadow: none;
  font-weight: 600; }
  @media screen and (max-width: 767px) {
    #account .r-tabs .r-tabs-nav .r-tabs-anchor {
      padding: 0px 20px;
      font-size: 16px;
      letter-spacing: 4px; } }
#account .r-tabs-tab:first-child::before {
  display: none; }
#account .r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  color: #454545; }

.r-tabs .r-tabs-nav .r-tabs-anchor {
  word-wrap: break-word;
  word-break: break-all; }

@media screen and (max-width: 767px) {
  .collection-page .r-tabs .r-tabs-panel {
    border-left: none;
    border-top: none; } }

.blur-up {
  -webkit-filter: blur(4px);
  filter: blur(4px);
  transition: filter 400ms, -webkit-filter 400ms; }

.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0); }

.single-blog-detail ul {
  margin-bottom: 20px; }
  .single-blog-detail ul li {
    list-style: disc;
    margin-left: 40px; }
.single-blog-detail a {
  text-decoration: underline;
  color: #0088cb; }
  .single-blog-detail a:hover {
    color: #f05c70; }
.single-blog-detail .videoWrapper {
  margin-bottom: 30px; }

ol {
  margin-bottom: 30px; }
  ol li {
    margin-left: 30px;
    margin-bottom: 5px; }

.shopify-challenge__container {
  padding: 50px 0; }

.page-content .errors ul {
  margin: 0; }

#CartDrawer .update-loader.visible {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  /* left: 0; */
  height: 100%;
  z-index: 9;
  width: 400px;
  max-width: 95%; }

/* .collection-page{
.r-tabs .r-tabs-panel .p-single-device-wrap {
opacity: 0;
transition: all 0.5s ease;
}
.r-tabs .r-tabs-panel.r-tabs-state-active .p-single-device-wrap {
opacity: 1;
}
}
*/
div#CustomerLoginForm input {
  border-radius: 0; }
  div#CustomerLoginForm input.btn-login-submit {
    margin-bottom: 0; }
  div#CustomerLoginForm input .notice {
    text-align: center; }
div#CustomerLoginForm .login_custom input[type="email"] {
  border: 1px solid #ebebeb !important;
  padding: 12px;
  line-height: normal; }

#message,
.errorMsg {
  color: red;
  font-size: 12px;
  margin-bottom: 0; }

@media (min-width: 1025px) and (max-width: 1400px) {
  .pop-up-content .pop-up-content-inner {
    max-height: 70vh; }

  /*   .pop-up-content .ready-set-section .acc-sub-title {
  margin-bottom: 0;
} */
  .pop-up-content.select-part-section .select-part-wrap {
    height: 340px; } }
.select-part-section .customProductList h6 {
  font-weight: 600;
  color: #0088cb; }
.select-part-section .stock-section p {
  font-weight: 600 !important; }

@media screen and (max-width: 767px) {
  input {
    font-size: 16px; } }

select {
  background-color: #fff;
  -webkit-appearance: none;
  border-radius: 0; }

.product-section-slider > div {
  width: 100%; }
  @media screen and (max-width: 767px) {
    .product-section-slider > div {
      width: auto; } }

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  z-index: 9999;
  position: relative; }

.js-drawer-open .header-section {
  position: fixed; }

#shopify-section-collection-template
.product-popup
.product-cart
.continue-shopping-wrap {
  -moz-align-self: flex-end;
  -o-align-self: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-start;
  justify-content: flex-end;
  text-align: right; }
  #shopify-section-collection-template
  .product-popup
  .product-cart
  .continue-shopping-wrap .continue-shopping {
    text-align: right; }
  #shopify-section-collection-template
  .product-popup
  .product-cart
  .continue-shopping-wrap .btn {
    margin-top: 12px;
    font-size: 16px; }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      #shopify-section-collection-template
      .product-popup
      .product-cart
      .continue-shopping-wrap .btn {
        font-size: 15px;
        padding: 10px 20px; } }

.cart_subtotal_sticky_mobile {
  /* border: 1px solid;  */
  /* background: white none repeat scroll 0 0; */
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 999;
  text-align: center;
  padding: 20px;
  display: none;
  width: 100%;
  margin: 0 auto;
  background: white;
  box-shadow: #8c8c8c 0px 0px 10px 0px;
  /* border-bottom: none; */
  /* border-radius: 6px 6px 0 0; */ }
  @media screen and (max-width: 767px) {
    .cart_subtotal_sticky_mobile {
      display: none; } }
  @media screen and (max-width: 767px) {
    .cart_subtotal_sticky_mobile.active {
      display: block; } }
  .cart_subtotal_sticky_mobile .order-summery-wrap {
    padding: 0; }
    .cart_subtotal_sticky_mobile .order-summery-wrap .sub-total,
    .cart_subtotal_sticky_mobile .order-summery-wrap .price {
      margin-bottom: 0; }
    .cart_subtotal_sticky_mobile .order-summery-wrap .promocode-section {
      margin-top: 10px; }

.collection-page .itemNotAvailable {
  text-align: center;
  height: calc(100vh - 460px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .collection-page .itemNotAvailable {
      height: auto;
      display: block; } }

.product-left-sidebar {
  transition: all 0.5s ease; }
  .product-left-sidebar.scroll-active {
    padding-top: 84px; }

.login-form .content {
  max-width: 430px;
  margin: 0 auto; }

.activate-customer input {
  padding: 12px; }
.activate-customer .button-wrap .btn {
  display: inline-block; }

body #address_default_address_708219273279 {
  opacity: 0;
  display: block; }

.perticular-devices-guide {
  width: 100%; }

#main_content.repair-guides-all-blog {
  padding-bottom: 0; }

.btn.disabled {
  background: #dcd6d6;
  border-color: #dcd6d6;
  color: #333;
  pointer-events: none; }

.template-product #PageContainer {
  position: relative; }

.mean-container-body {
  height: 100%;
  overflow: hidden; }

.product-section-slider .slick-track {
  margin: auto; }

.no-Products {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.viewLess,
.viewMore {
  border: 1px solid #0088cb !important; }
  .viewLess:hover,
  .viewMore:hover {
    border: 1px solid #0088cb !important;
    background: white !important;
    color: #0088cb !important; }

.preloader-site #horizontalTab-collection,
.preloader-site .viewmore {
  display: none; }
.preloader-site .preloader {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-62%, -50%);
  -ms-transform: translate(-62%, -50%);
  -o-transform: translate(-62%, -50%);
  transform: translate(-62%, -50%);
  left: 62%; }
  @media screen and (max-width: 767px) {
    .preloader-site .preloader {
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      left: 50%; } }

/* .resultPopup .popup-box{
width: 100%;
z-index:99999;
} */
.view-more-less a,
.view-more-less .viewLess,
.view-more-less .viewMore {
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 600;
  border: none !important;
  text-transform: uppercase;
  color: #0088cb; }
  .view-more-less a:hover,
  .view-more-less .viewLess:hover,
  .view-more-less .viewMore:hover {
    color: #48484a; }

.menu-list {
  clear: both; }

.toggle-search {
  position: absolute;
  background: white;
  top: 0;
  width: 100%;
  left: 0;
  border-top: 1px solid #ebebeb;
  box-shadow: 0 14px 42px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease; }
  .toggle-search.open {
    top: 100%;
    opacity: 1; }
  .toggle-search input {
    width: 100%;
    border: none;
    padding: 16px;
    position: relative;
    font-size: 16px; }
  .toggle-search button {
    background-image: url(search.png);
    position: absolute;
    top: 0px;
    font-size: 20px;
    right: 0;
    height: 17px;
    width: 17px;
    bottom: 0;
    margin: auto;
    right: 16px;
    background-size: 100% auto;
    background-repeat: no-repeat; }

@media screen and (max-width: 767px) {
  .collection-page ul a:hover:after,
  .collection-page ul a.open:after,
  .collection-page ul a:hover,
  .collection-page ul a.open,
  .collection-page ul li.selected a {
    color: #79eeff !important; }

  .product-left-sidebar {
    position: fixed;
    top: 0;
    z-index: 999999;
    left: -100%;
    top: 0;
    background: white;
    height: 100vh;
    background: -webkit-gradient(linear, left top, right top, from(#3584a7), to(#30cfd0)); }
    .product-left-sidebar * {
      color: #fff; }
      .product-left-sidebar *:hover, .product-left-sidebar *:focus {
        color: #fff !important; }
    .product-left-sidebar.open {
      left: 0%; }
    .product-left-sidebar h4 {
      padding: 10px 15px;
      font-size: 15px; }
    .product-left-sidebar ul.accordion {
      padding: 0 15px 20px;
      height: calc(100vh - 70px); }

  a.btn-filter {
    text-transform: uppercase;
    font-size: 18px;
    padding: 5px 21px;
    border: 2px solid #3196ad;
    margin: 2px;
    /* outline: 1px solid red; */
    display: inline-block;
    /* outline: red; */
    box-shadow: 3px 3px 31px 0 rgba(0, 0, 0, 0.35);
    color: #30839e;
    position: fixed;
    background: white;
    bottom: 20px;
    z-index: 99;
    left: 20px; }

  .close-filter {
    position: absolute;
    right: 20px;
    top: 20px; }
    .close-filter img {
      max-width: 20px; }

  .collection-page ul.accordion > li.has-dropdown > a:after {
    content: "\f067";
    font-size: 19px; }

  .collection-page ul.accordion > li.has-dropdown > a.open:after {
    content: "\f068"; }

  .collection-page ul.accordion > li.has-dropdown > a {
    font-size: 17px;
    text-transform: uppercase; }

  .collection-page ul.accordion > li.has-dropdown > .inner > li a {
    opacity: 1;
    font-size: 15px;
    font-weight: normal; } }
.banner .sub-title {
  font-size: 16px;
  padding: 20px 0 10px;
  clear: both; }
  .banner .sub-title img {
    display: inline-block;
    position: relative;
    top: 2px; }
  .banner .sub-title span {
    display: block;
    font-size: 12px; }
.banner .back-link {
  position: absolute;
  left: 0;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  color: #48484a;
  line-height: 25px;
  top: -2px;
  background: white;
  z-index: 4; }

.unavailable {
  font-size: 12px; }

.question {
  cursor: pointer; }

/* Home page custom builder  */
.withColor_customProductList {
  width: 100%; }
  .withColor_customProductList .input-label-wrap {
    position: relative;
    cursor: pointer; }
    .withColor_customProductList .input-label-wrap input[type="checkbox"] {
      opacity: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      cursor: pointer;
      display: inline-block;
      margin-bottom: 10px; }
      .withColor_customProductList .input-label-wrap input[type="checkbox"]:checked + label > div {
        border: 2px solid #c4c7ca; }
    .withColor_customProductList .input-label-wrap .thumb-desc-wrp {
      border: 1px solid #c4c7ca;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      border-radius: 8px;
      min-height: 85px;
      margin-bottom: 20px; }
    .withColor_customProductList .input-label-wrap .mobile-thumb-image {
      width: 150px; }
    .withColor_customProductList .input-label-wrap .desc {
      width: calc(100% - 150px);
      padding-left: 3px;
      display: block;
      text-align: left;
      float: left; }
      .withColor_customProductList .input-label-wrap .desc h5 {
        word-wrap: break-word;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.2; }
      .withColor_customProductList .input-label-wrap .desc p {
        margin-bottom: 0;
        text-align: left; }

.color-heading {
  text-align: left;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 32px; }

.withColor_customProductList_variant {
  width: 100%; }

.device-wrap input[type="radio"] {
  display: none; }

.tooltip-container {
  position: absolute !important;
  /* margin-top: -10px; */
  position: absolute;
  background: white;
  width: 100%;
  left: 0;
  word-wrap: break-word;
  padding: 0;
  z-index: 9;
  max-width: 100%;
  text-align: center;
  font-size: 13px;
  top: calc(100% + 12px); }
  .tooltip-container.open {
    /*       box-shadow: 0 20px 42px 10px rgba(0,0,0,0.15);
    padding: 10px; */
    background: #0088cb;
    color: white;
    padding: 15px 30px;
    border-radius: 8px; }
    .tooltip-container.open.odd::after {
      right: auto;
      left: 35px; }
    .tooltip-container.open::after {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #0088bc;
      top: -10px;
      right: 35px; }

.template-product .header-section {
  z-index: 9; }

.product-page .resp-tabs-container {
  padding-bottom: 58px; }
  @media screen and (min-width: 1025px) and (max-width: 1200px) {
    .product-page .resp-tabs-container {
      padding-bottom: 63px; } }
  @media screen and (max-width: 1024px) {
    .product-page .resp-tabs-container {
      padding-bottom: 30px; } }

.product-page .r-tabs .r-tabs-panel#quality h5 {
  text-align: center !important; }
.product-page .r-tabs .r-tabs-panel#quality .desc {
  margin: 0 auto;
  width: 100%; }

.pop-up-content-inner .product-selection-tab {
  padding-bottom: 50px; }

.banner .go-back,
.banner .go-backs,
.pop-up-content .go-back,
.pop-up-content .go-backs {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  width: 100%;
  text-align: center;
  left: auto;
  margin: 15px 0;
  letter-spacing: 2px; }
  .banner .go-back i,
  .banner .go-backs i,
  .pop-up-content .go-back i,
  .pop-up-content .go-backs i {
    padding-left: 0; }
.banner h2,
.pop-up-content h2 {
  margin-bottom: 0; }

.accordion-custom-banner ul .inner.select-device > li > a {
  padding-left: 0;
  padding-right: 0; }

.change-modal {
  padding-bottom: 30px; }

.change-modal ul {
  text-align: center; }

.change-modal ul li {
  display: inline-block;
  height: 23px;
  width: 23px;
  color: white;
  border-radius: 50%;
  line-height: 23px;
  font-weight: 500;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  cursor: pointer; }

.change-modal ul li.active {
  background: white;
  color: black; }

.change-modal ul li:last-child::after {
  display: none; }

.change-modal ul li:after {
  position: absolute;
  height: 2px;
  width: 104%;
  left: 100%;
  top: 0;
  content: "";
  background: white;
  bottom: 0;
  margin: auto; }

.custom-builder-banner
.pop-up-content.select-part-section
.pop-up-content-inner {
  padding: 10px;
  max-height: none;
  transform: none;
  left: auto;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  right: auto;
  top: auto;
  overflow: hidden;
  position: relative;
  border-radius: 0; }

.custom-builder-banner .pop-up-content {
  position: relative;
  left: 0;
  right: 0;
  top: auto;
  display: block;
  overflow: hidden; }

.custom-builder-banner .pop-up-content.select-part-section .select-part-wrap {
  height: auto;
  overflow-y: hidden; }

.custom-builder-banner .pop-up-content .pop-up-content-inner .device-wrap {
  margin-left: 0;
  margin-right: 0; }

.custom-builder-banner
.pop-up-content.select-part-section
.select-part-wrap
.select-part-inner {
  flex-wrap: wrap; }

.accordion-custom-banner ul li {
  margin-bottom: 0 !important; }
  .accordion-custom-banner ul li a {
    border-bottom: 1px solid #0a6baf;
    margin-bottom: 0 !important;
    font-weight: 500; }
.accordion-custom-banner a.toggle,
.accordion-custom-banner a.toggle-a {
  padding: 12px 19px;
  color: #333333;
  display: block; }
  .accordion-custom-banner a.toggle::after,
  .accordion-custom-banner a.toggle-a::after {
    content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: inherit;
    font-size: 34px;
    padding-right: 0;
    position: absolute;
    margin: auto;
    top: 10px;
    right: 20px;
    height: 25px;
    line-height: 25px;
    left: auto;
    /* bottom: 0; */
    /* margin: auto; */
    pointer-events: none; }
.accordion-custom-banner > ul {
  background: #fff; }
  .accordion-custom-banner > ul > li {
    position: relative; }
    .accordion-custom-banner > ul > li.disabled {
      opacity: 0.5;
      pointer-events: none; }
.accordion-custom-banner ul .inner {
  padding-left: 0; }
  .accordion-custom-banner ul .inner.select-device {
    background: #efefef; }
    .accordion-custom-banner ul .inner.select-device > li {
      margin-left: 20px; }
      .accordion-custom-banner ul .inner.select-device > li > a {
        border-bottom: 1px solid #c7c7c7;
        padding-left: 0;
        padding-right: 0;
        display: block; }
.accordion-custom-banner .static-option {
  padding: 13px 20px;
  display: block;
  border-bottom: none;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  background: white; }

.accordion-custom-banner-heading {
  padding: 23px 50px;
  margin: 0;
  font-size: 18px;
  position: relative;
  color: white; }
  .accordion-custom-banner-heading::after {
    content: "\f104";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: inherit;
    font-size: 34px;
    padding-right: 0.5em;
    position: absolute;
    margin: auto;
    top: 0;
    left: 20px;
    height: 25px;
    line-height: 25px;
    bottom: 0;
    margin: auto; }

.builder-white-bg {
  background: #fff;
  padding-top: 12px;
  padding-bottom: 12px; }

.select-part-builder .stock-section {
  clear: both; }
.select-part-builder .select-part-inner {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebebeb; }
  .select-part-builder .select-part-inner:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }
  .select-part-builder .select-part-inner h3 {
    margin-bottom: 6px; }
  .select-part-builder .select-part-inner h6 {
    color: #0088cb;
    margin-bottom: 6px;
    font-weight: 600; }
  .select-part-builder .select-part-inner p {
    margin-bottom: 6px; }

#custom-banner-mobile {
  position: fixed;
  z-index: 999;
  top: 70px;
  width: 100%;
  left: 0;
  bottom: 0;
  max-height: calc(100vh - 70px);
  overflow: auto; }
  #custom-banner-mobile .incrementor-wrapper .qty-button {
    height: 20px;
    line-height: 10px; }
  #custom-banner-mobile .incrementor-wrapper .numbers-row input {
    padding: 10px 25px; }
  #custom-banner-mobile .r-tabs .r-tabs-panel {
    background-color: white;
    border-left: none;
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
    margin-bottom: 0 !important; }
  #custom-banner-mobile .pop-up-content-inner .product-selection-tab {
    padding-bottom: 0;
    margin-bottom: 0 !important; }
  #custom-banner-mobile .stock img {
    display: inline-block;
    vertical-align: middle;
    max-width: 22px;
    margin-right: 5px; }
  #custom-banner-mobile .btn {
    padding: 10px 15px;
    font-size: 12px;
    letter-spacing: 1px; }
  #custom-banner-mobile .stock-section {
    line-height: 38px; }
    #custom-banner-mobile .stock-section p {
      margin-bottom: 0;
      font-weight: 600; }
  #custom-banner-mobile .add-to-cart-builder.level-2 .product-content {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px; }
  #custom-banner-mobile .add-to-cart-builder.level-3 .sub-title {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 19px !important; }
  #custom-banner-mobile .add-to-cart-builder .guide-cart-section .guide {
    margin-bottom: 12px; }
  #custom-banner-mobile .add-to-cart-builder .guide-cart-section li {
    margin-bottom: 13px; }
  #custom-banner-mobile .add-to-cart-builder .prc {
    display: block;
    width: 100%;
    margin: 8px 0;
    color: #0088cb;
    font-weight: 600;
    font-size: 16px; }
  #custom-banner-mobile .add-to-cart-builder .page-sub-heading {
    clear: both;
    margin-bottom: 10px;
    line-height: 1.2; }
    #custom-banner-mobile .add-to-cart-builder .page-sub-heading .h5,
    #custom-banner-mobile .add-to-cart-builder .page-sub-heading h5 {
      font-weight: 600; }
  #custom-banner-mobile .add-to-cart-builder .price-stock-section ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; }
    #custom-banner-mobile .add-to-cart-builder .price-stock-section ul li {
      margin: 0 5px; }
  #custom-banner-mobile .add-to-cart-builder .price-stock-section .stock {
    font-weight: 600; }
    #custom-banner-mobile .add-to-cart-builder .price-stock-section .stock img {
      display: inline-block;
      vertical-align: middle;
      max-width: 22px;
      margin-right: 5px; }
  #custom-banner-mobile .add-to-cart-builder p a {
    color: #0088cb; }
  #custom-banner-mobile .guide-cart-section .cart-wrap .button-wrap .btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%; }
  #custom-banner-mobile .sub-title {
    font-size: 16px;
    padding: 0px 0 10px;
    clear: both; }
  #custom-banner-mobile .add-to-cart-builder.level-3 .thumb-desc-wrp {
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px; }
    #custom-banner-mobile .add-to-cart-builder.level-3 .thumb-desc-wrp h5 {
      line-height: 1.1;
      font-weight: 500; }
    #custom-banner-mobile .add-to-cart-builder.level-3 .thumb-desc-wrp .btn.btn-ghost {
      border-color: #c5c8cb;
      color: #373737; }
      #custom-banner-mobile .add-to-cart-builder.level-3 .thumb-desc-wrp .btn.btn-ghost:hover, #custom-banner-mobile .add-to-cart-builder.level-3 .thumb-desc-wrp .btn.btn-ghost:focus, #custom-banner-mobile .add-to-cart-builder.level-3 .thumb-desc-wrp .btn.btn-ghost.active, #custom-banner-mobile .add-to-cart-builder.level-3 .thumb-desc-wrp .btn.btn-ghost.Added {
        border-color: #0088cb;
        color: #fff;
        background: #0088cb; }
  #custom-banner-mobile .add-to-cart-builder.level-3 .price {
    margin-bottom: 8px; }
  #custom-banner-mobile .add-to-cart-builder.level-3 .button-wrap {
    margin-bottom: 4px; }
  #custom-banner-mobile .recomend {
    color: #0088cb;
    margin-bottom: 8px;
    font-weight: 600; }
  #custom-banner-mobile .last-ready .acc-sub-title {
    margin-bottom: 15px; }
  #custom-banner-mobile .last-ready .sub-title {
    font-weight: 500;
    padding: 0px 0 20px; }
    #custom-banner-mobile .last-ready .sub-title img {
      margin: 0 auto 5px;
      display: block; }
  #custom-banner-mobile .last-ready .view-all i {
    color: #0088cb; }
  #custom-banner-mobile .last-ready .title-view-wrap {
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px; }
    #custom-banner-mobile .last-ready .title-view-wrap * {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
      /* width: 100%; */
      padding-bottom: 0;
      clear: both; }
    #custom-banner-mobile .last-ready .title-view-wrap i {
      display: inline-block;
      font-weight: 600;
      font-size: 17px;
      top: 2px;
      position: relative;
      padding-left: 4px; }
  #custom-banner-mobile .last-ready .button-wrap {
    margin-bottom: 20px; }
    #custom-banner-mobile .last-ready .button-wrap .btn {
      display: block;
      max-width: 190px;
      margin: 0 auto 10px; }
      #custom-banner-mobile .last-ready .button-wrap .btn.btn-ghost {
        border-color: #0088cb; }
        #custom-banner-mobile .last-ready .button-wrap .btn.btn-ghost:hover, #custom-banner-mobile .last-ready .button-wrap .btn.btn-ghost:focus, #custom-banner-mobile .last-ready .button-wrap .btn.btn-ghost.active {
          background: #0088cb; }
  #custom-banner-mobile .last-ready .image-content-wrap {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb; }
    #custom-banner-mobile .last-ready .image-content-wrap h3 {
      margin-bottom: 3px; }
    #custom-banner-mobile .last-ready .image-content-wrap p {
      margin-bottom: 6px;
      opacity: 0.8; }

.open-custombanner {
  position: fixed;
  overflow: hidden;
  top: 0;
  width: 100%; }

@media screen and (max-width: 481px) {
  #custom-banner-mobile .btn.collectionPage {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%; } }

.banner .no-Products {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  margin-top: 0; }
  .banner .no-Products p {
    font-size: 20px; }

.diy-repairs .button-wrap .btn {
  box-shadow: 0 12px 42px 0 rgba(0, 0, 0, 0.12); }

.productCollectionPopupFirst.productCollectionPopupFirst .popup-box {
  max-width: 850px; }
.productCollectionPopupFirst .popup-box .form-vertical {
  margin-bottom: 0; }
.productCollectionPopupFirst .popup-box .single-product .single-prod-desc {
  padding-top: 0;
  padding-bottom: 0; }
.productCollectionPopupFirst .popup-box .product-page .r-tabs .r-tabs-panel {
  padding-bottom: 17px; }
.productCollectionPopupFirst .popup-box .single-product {
  margin-bottom: 0; }
.productCollectionPopupFirst .popup-box #main-content {
  padding: 0; }
.productCollectionPopupFirst .popup-box .guide-cart-section {
  margin-bottom: 0;
  padding-top: 0; }

@media only screen and (max-width: 992) {
  .p-single-device .device-content .btn {
    clear: both; } }
@media screen and (max-width: 767px) {
  .p-single-device .device-content .btn.mobile--show {
    display: inline-block !important;
    clear: both; } }

.single-prod-desc .wholeDesc p,
.single-prod-desc .wholeDesc span,
.single-prod-desc .wholeDesc ul,
.single-prod-desc .wholeDesc li {
  color: #48484a !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-family: "Poppins", sans-serif !important; }
.single-prod-desc .wholeDesc strong {
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-family: "Poppins", sans-serif !important; }

/*  .banner {
.pop-up-content .pop-up-content-inner{
overflow: visible;
.go-backs , .go-back {
position: absolute;
top: -25px;
left: 0;
right: 0;
margin: auto;
bottom: auto;
}
}
}  */
.banner .pop-up-content-inner-wrap {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) translateZ(0);
  -ms-transform: translate3d(-50%, -50%, 0) translateZ(0);
  -o-transform: translate3d(-50%, -50%, 0) translateZ(0);
  transform: translate3d(-50%, -50%, 0) translateZ(0);
  position: absolute;
  max-height: 80vh;
  overflow-y: visible;
  width: 95%;
  backface-visibility: visible; }
  .banner .pop-up-content-inner-wrap .go-backs {
    /*       position: absolute; */
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: auto;
    text-align: center; }
  .banner .pop-up-content-inner-wrap .pop-up-content-inner {
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
    width: 95%; }
    .banner .pop-up-content-inner-wrap .pop-up-content-inner .addOn-contents {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }

.header-wrap {
  position: relative; }

.text-blue {
  color: #0088cb; }

.vertical-menu {
  max-height: 70vh;
  overflow-y: auto; }

/* .heading.apple-product::first-letter {
text-transform: lowercase;
}
*/
.template-search .product-section .prod-image {
  height: 140px;
  margin-bottom: 20px; }
.custom-product-popup-product .desktop{
  display: none;
}
.custom-product-wrap-with-banner .prod-image.custom-prod-image-1 .custom-desktop-image{
  display: none;
}

@media screen and (min-width: 767px) {
  .custom-product-wrap-with-banner .custom-product-popup-product-1{
    max-width: 100%;
    position: relative;
  }
  .template-product .product-section .custom-product-wrap-with-banner .prod-image.custom-prod-image-1{
    height: auto;
    margin: 0;
  }
  .custom-product-wrap-with-banner .prod-image.custom-prod-image-1 .custom-mobile-image{
    display: none;
  }
  .custom-product-wrap-with-banner .prod-image.custom-prod-image-1 .custom-desktop-image{
    display: block;
  }
  .custom-product-wrap-with-banner .prod-text-custom-mobile{
    display: none;
  }
  .custom-product-popup-product-1{
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }
  .custom-product-wrap-with-banner .custom-prod-btn-wrap{
    position: absolute;
    bottom: 2%;
    right: 8%;
  }
  .template-product .product-section .custom-product-wrap-with-banner .prod-image.custom-prod-image-1 img{
    max-height: 100%;
  }
  .custom-product-popup-product-1 .mobile{
    display: none;
  }
  .custom-product-popup-product-1 .desktop{
    display: block;
  }
  .template-product .product-section .prod-image.custom-prod-image-1{
    height: 300px;
    margin: 0 30px 0 0;
  }
  .custom-product-popup-product-1 .prod-text-custom{
    flex: 1;
    text-align: left;
  }
}
.template-product .product-section .prod-image {
  height: 200px;
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .template-product .product-section .prod-image {
      height: auto;
      max-height: 200px;
      margin-bottom: 10px; } }

.swatch {
  text-align: center; }
  .swatch .otherSwatch,
  .swatch .color {
    float: none;
    display: inline-block;
    margin: 0 -4px; }

@media screen and (max-width: 767px) {
  .template-collection .r-tabs .r-tabs-accordion-title,
  .template-product .r-tabs .r-tabs-accordion-title {
    position: relative; }
    .template-collection .r-tabs .r-tabs-accordion-title a::after,
    .template-product .r-tabs .r-tabs-accordion-title a::after {
      content: "\f107";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      font-size: 28px;
      padding-right: 0;
      position: absolute;
      top: 0;
      right: 0;
      line-height: 20px; }
    .template-collection .r-tabs .r-tabs-accordion-title.r-tabs-state-active a::after,
    .template-product .r-tabs .r-tabs-accordion-title.r-tabs-state-active a::after {
      content: "\f106"; }
    .template-collection .r-tabs .r-tabs-accordion-title.done a::after,
    .template-product .r-tabs .r-tabs-accordion-title.done a::after {
      content: "\f00c";
      font-size: 17px;
      color: green; }

  .template-product .incrementor-wrapper .numbers-row input {
    padding: 11px 25px; }
  .template-product .guide-cart-section .justify-content-between .button-wrap {
    margin-left: 10px; }
    .template-product .guide-cart-section .justify-content-between .button-wrap .btn {
      padding: 14px 30px; } }
    @media screen and (max-width: 767px) and (min-width: 320px) and (max-width: 360px) {
      .template-product .guide-cart-section .justify-content-between .button-wrap .btn {
        padding: 14px 13px; } }
@media screen and (max-width: 767px) {
  .template-product .incrementor-wrapper {
    width: 100%;
    max-width: 100px; } }
.template-product .price-item-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .template-product .price-item-wrap .price-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    @media screen and (max-width: 767px) {
      .template-product .price-item-wrap .price-wrapper .single-prod-price {
        font-size: 15px; } }
    .template-product .price-item-wrap .price-wrapper del {
      padding-left: 6px; }
  .template-product .price-item-wrap:after {
    display: none; }
  .template-product .price-item-wrap .item-stock {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .template-product .price-item-wrap .item-stock {
        padding: 0 9px; } }
    .template-product .price-item-wrap .item-stock span {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .template-product .price-item-wrap .item-stock span {
          margin-left: 5px;
          white-space: nowrap;
          margin-right: 10px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .template-product .price-item-wrap .item-stock span.meta-sku {
          word-break: break-all;
          white-space: unset;
          padding-right: 10px;
          margin-right: 0; } }

/*  For mozila only */
@-moz-document url-prefix() {
  #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu {
    column-count: unset;
    -moz-column-count: unset;
    -webkit-column-count: unset; }
    #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu.apple-dropdown {
      column-count: unset;
      -moz-column-count: unset;
      -webkit-column-count: unset; }

  #main-nav
  ul.menu-list
  li.has-level-2
  ul.second-level-ul.vertical-menu
  .second-level-li {
    float: left;
    width: 14%; } }
/*  */
.product-selection-tab .no-thanks-class .thumb-desc-wrp .desc h5 {
  margin-bottom: 0;
  display: flex;
  align-items: center; }

.without-capitalization {
  text-transform: initial !important; }

.without-capitalization:first-letter {
  text-transform: lowercase !important; }

.padding-bottom-40 {
  padding-bottom: 47px; }
  @media screen and (max-width: 1200px) and (min-width: 1025px) {
    .padding-bottom-40 {
      padding-bottom: 63px; } }
  @media screen and (max-width: 1024px) {
    .padding-bottom-40 {
      padding-bottom: 30px; } }

.pop-up-content .pop-up-content-inner.popwith-locating {
  padding: 20px;
  background: transparent; }
  .pop-up-content .pop-up-content-inner.popwith-locating .select-part-wrap {
    height: auto; }
  .pop-up-content .pop-up-content-inner.popwith-locating .device-wrap {
    flex-direction: column; }
    .pop-up-content .pop-up-content-inner.popwith-locating .device-wrap img.loading {
      position: relative;
      top: auto;
      -webkit-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      max-height: 65px;
      margin-bottom: 20px; }
    .pop-up-content .pop-up-content-inner.popwith-locating .device-wrap h3 {
      text-align: center;
      color: #0088cb;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      color: #fff; }

.wholeTotal {
  border-top: 1px solid #ebebeb;
  padding-top: 12px;
  margin-top: 12px; }

.locating-part {
  text-align: center;
  color: #0088cb; }
  @media screen and (max-width: 767px) {
    .locating-part {
      margin-top: 5px; } }

@media screen and (max-width: 767px) {
  .noProducts {
    text-align: center; } }

#main-nav ul.menu-list li.top-level-link.otherparts-dropdown ul.third-level-ul {
  background: #fff !important; }

.collection-horizontal {
  /*min-height:500px;*/ }

.preloader-wrapper.tools-preloader-wrapper .preloader {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  left: 50%; }

.device-wrap .price-wrap del {
  font-size: 11px; }

.vertical-menu {
  max-height: 80vh; }

#main-nav
ul.menu-list
li.has-level-2
ul.second-level-ul.vertical-menu.more-dropdown {
  column-count: 6;
  -moz-column-count: 6;
  -webkit-column-count: 6;
  /*   column-fill: auto; */ }
  #main-nav
  ul.menu-list
  li.has-level-2
  ul.second-level-ul.vertical-menu.more-dropdown .second-level-li ul.third-level-ul .third-level-li.with-dropdown-nav > a {
    color: #0088cb; }

@-moz-document url-prefix() {
  #main-nav
  ul.menu-list
  li.has-level-2
  ul.second-level-ul.vertical-menu.more-dropdown
  .second-level-li {
    float: none;
    width: auto; } }
@media all and (-ms-high-contrast: none) {
  #main-nav
  ul.menu-list
  li.has-level-2
  ul.second-level-ul.vertical-menu.more-dropdown
  .second-level-li {
    -webkit-column-break-inside: auto;
    page-break-inside: auto;
    break-inside: auto; } }
@media screen and (max-width: 767px) {
  .disclaimer-popup .popup-box {
    max-height: 70vh; } }
.disclaimer-popup .close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 9; }
.disclaimer-popup .disclaimer-wrap {
  margin-bottom: 30px; }
  .disclaimer-popup .disclaimer-wrap p {
    margin-bottom: 5px; }
  .disclaimer-popup .disclaimer-wrap h4 {
    margin-bottom: 0px; }
  .disclaimer-popup .disclaimer-wrap:last-child {
    margin-bottom: 0; }

#search-results .collection-banner {
  margin-bottom: 0; }
#search-results section {
  background: #fff; }

div.snize div.snize-main-panel-controls ul li a.active,
div.snize div.snize-main-panel-controls ul li a:hover {
  background: #fff !important; }

div.snize-ac-results li.snize-recent,
div.snize div.snize-search-results-header a {
  color: #0088cb !important; }

#snize-search-results-grid-mode li.snize-product {
  margin: 0 !important;
  border-right: 1px solid #ebebeb !important;
  border-bottom: 1px solid #ebebeb !important; }

#snize-search-results-grid-mode ul {
  border-left: 1px solid #ebebeb !important;
  border-top: 1px solid #ebebeb !important; }

body div.snize div.snize-pagination a.snize-pagination-load-more {
  background: #fff;
  color: #0088cb;
  border: 2px solid #0088cb;
  border-radius: 30px; }
  body div.snize div.snize-pagination a.snize-pagination-load-more:hover, body div.snize div.snize-pagination a.snize-pagination-load-more:focus {
    background: #0088cb;
    color: #fff; }

body div.snize li.snize-product .snize-price-list {
  color: #0088cb; }

body div.snize ul.snize-product-filters-list li .snize-filter-checkbox span {
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.2); }

@media screen and (min-width: 768px) {
  body div.snize ul.snize-product-filters-list li .snize-filter-checkbox {
    margin-top: 4px; } }

body
div.snize
div.snize-product-filters-title.open
i.snize-product-filters-close,
body
div.snize
i.snize-product-filters-open
body
div.snize
div.snize-product-filters-wrapper-title.open
i.snize-product-filters-close {
  top: -2px; }

body div.snize div.snize-product-filters-title {
  line-height: 18px;
  font-weight: 600; }
body div.snize div.snize-filters-dropdown-content {
  z-index: 9; }
body div.snize ul.snize-product-filters-list li label > span {
  /*     @include flexbox();  */ }
body div.snize ul.snize-product-filters-list li .snize-filter-checkbox {
  margin: 3px 6px 0 0; }
body div.snize ul.snize-product-filters-list li label > span {
  display: block;
  line-height: 20px; }
body span.snize-filter-variant-count {
  vertical-align: -2px; }

@media screen and (max-width: 767px) {
  body #snize-search-results-list-mode li.snize-product span.snize-title {
    font-size: 15px; }
  body .snize-filter-variant-count {
    line-height: 1 !important; } }
.descImages {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 30px; }
  .descImages img {
    margin: 0 !important; }
    @media screen and (max-width: 767px) {
      .descImages img.skillLevel {
        max-width: 245px; } }
    @media screen and (min-width: 768px) and (max-width: 992px) {
      .descImages img.skillLevel {
        max-width: 245px; } }
    @media screen and (max-width: 767px) {
      .descImages img.warrantyImage {
        max-width: 100px; } }
    @media screen and (min-width: 768px) and (max-width: 992px) {
      .descImages img.warrantyImage {
        max-width: 120px; } }

@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .collection-page .r-tabs .r-tabs-nav .r-tabs-tab {
    width: 16%;
    text-align: center; } }
.inner-testimonial-banner {
  background-color: #164d98;
  background-image: -webkit-gradient(linear, left top, right top, from(#164d98), to(#0088cb));
  background-image: -webkit-linear-gradient(left, right, #164d98, #0088cb);
  background-image: -moz-linear-gradient(left, right, #164d98, #0088cb);
  background-image: -ms-linear-gradient(left, right, #164d98, #0088cb);
  background-image: -o-linear-gradient(left, right, #164d98, #0088cb);
  background-image: linear-gradient(left, right, #164d98, #0088cb);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#164d98', endColorStr='#0088cb');
  padding: 30px 0 60px; }
  @media screen and (max-width: 767px) {
    .inner-testimonial-banner {
      padding: 20px 0; } }
  @media screen and (max-width: 767px) {
    .inner-testimonial-banner .breadcrumb {
      margin-bottom: 20px; } }
  .inner-testimonial-banner * {
    color: #fff; }
  .inner-testimonial-banner h1 {
    margin-bottom: 36px; }
    @media screen and (min-width: 768px) and (max-width: 992px) {
      .inner-testimonial-banner h1 {
        margin-bottom: 26px; } }
    @media screen and (max-width: 767px) {
      .inner-testimonial-banner h1 {
        margin-bottom: 16px;
        line-height: 1.1; } }
  .inner-testimonial-banner .inner-testi {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      .inner-testimonial-banner .inner-testi {
        display: block; } }
    .inner-testimonial-banner .inner-testi .inner-testimonial-wrap {
      border: 1px solid white;
      height: 100%;
      border-radius: 9px;
      padding: 26px 30px; }
      @media screen and (max-width: 767px) {
        .inner-testimonial-banner .inner-testi .inner-testimonial-wrap {
          margin-bottom: 20px;
          padding: 9px; } }
      @media screen and (min-width: 768px) and (max-width: 992px) {
        .inner-testimonial-banner .inner-testi .inner-testimonial-wrap {
          padding: 12px; } }
      .inner-testimonial-banner .inner-testi .inner-testimonial-wrap .inner-testi-img-wrap {
        min-height: 60px;
        display: flex;
        align-items: center;
        margin-bottom: 20px; }
        @media screen and (min-width: 768px) and (max-width: 992px) {
          .inner-testimonial-banner .inner-testi .inner-testimonial-wrap .inner-testi-img-wrap {
            margin-bottom: 14px; } }
        @media screen and (max-width: 767px) {
          .inner-testimonial-banner .inner-testi .inner-testimonial-wrap .inner-testi-img-wrap {
            margin-bottom: 10px; } }
        .inner-testimonial-banner .inner-testi .inner-testimonial-wrap .inner-testi-img-wrap img {
          max-height: 60px; }
      .inner-testimonial-banner .inner-testi .inner-testimonial-wrap .star-image {
        margin-bottom: 20px;
        max-width: 197px; }
        @media screen and (min-width: 768px) and (max-width: 992px) {
          .inner-testimonial-banner .inner-testi .inner-testimonial-wrap .star-image {
            margin-bottom: 17px; } }
      .inner-testimonial-banner .inner-testi .inner-testimonial-wrap h4 {
        font-weight: 400; }

#testimonials .container {
  max-width: 1270px;
  width: 100%; }

.loading_image img {
  max-height: 65px;
  max-width: 65px;
  width: auto;
  height: auto; }

.product-popup .product-section .pop-up-prod-wrap,
.product-popup .product-section .pop-up-prod-wraps {
  text-align: center; }
  .product-popup .product-section .pop-up-prod-wrap .product-wrap,
  .product-popup .product-section .pop-up-prod-wraps .product-wrap {
    float: none;
    display: inline-block;
    margin: 0 -2px; }
  .product-popup .product-section .pop-up-prod-wrap .slick-track,
  .product-popup .product-section .pop-up-prod-wraps .slick-track {
    display: inline-block; }

.pop-up-content
.pop-up-content-inner
.device-wrap
.button-wrap
[data-id="tablet"].btn {
  word-break: unset; }

/*  For IE only */
@media all and (-ms-high-contrast: none) {
  #main-nav
  ul.menu-list
  li.has-level-2
  ul.second-level-ul.vertical-menu
  .second-level-li {
    float: left;
    width: 14%; }

  #main-nav
  ul.menu-list
  li.has-level-2
  ul.second-level-ul.vertical-menu.more-dropdown
  .second-level-li {
    width: 11.11%;
    padding-right: 10px; }

  #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu {
    column-count: auto;
    -moz-column-count: auto;
    -webkit-column-count: auto; }
    #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu.apple-dropdown, #main-nav ul.menu-list li.has-level-2 ul.second-level-ul.vertical-menu.more-dropdown {
      column-count: auto;
      -moz-column-count: auto;
      -webkit-column-count: auto; } }
@-moz-document url-prefix() {
  .start-repair-section .device-image .device-image-inner::after {
    transform: scale(0) translate(-50%, -50%);
    -o-transform: scale(0) translate(-50%, -50%);
    -ms-transform: scale(0) translate(-50%, -50%);
    -moz-transform: scale(0) translate(-50%, -50%);
    -webkit-transform: scale(0) translate(-50%, -50%);
    top: 50%; }

  .start-repair-section .device-image .device-image-inner:hover::after {
    transform: scale(1) translate(-50%, -50%);
    -o-transform: scale(1) translate(-50%, -50%);
    -ms-transform: scale(1) translate(-50%, -50%);
    -moz-transform: scale(1) translate(-50%, -50%);
    -webkit-transform: scale(1) translate(-50%, -50%); } }
.reset-pass-form input {
  height: 49px; }
  @media screen and (max-width: 767px) {
    .reset-pass-form input {
      height: 45px; } }

.login-form .content.cform {
  text-align: center; }
  .login-form .content.cform input {
    padding: 12px;
    height: auto;
    line-height: 1.6; }
.login-form .btn-form {
  margin-top: 0; }
  .login-form .btn-form input.btn {
    display: inline-block; }

div#CustomerLoginForm input.btn,
#registerLoginForm input.btn {
  border-radius: 20px; }

#RecoverPasswordForm .form-vertical input {
  margin-bottom: 15px;
  border-radius: 0; }

#RecoverPasswordForm .button-container input.btn {
  border-radius: 20px; }

#CartDrawer .additional_checkout_buttons {
  text-align: center;
  margin: 15px 0 0; }

#account_page .individual-add-wrap {
  margin-bottom: 40px; }
#account_page .individual-add {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.357rem;
  /* padding: 20px 20px; */
  margin-bottom: 20px; }
  #account_page .individual-add .sub-title {
    padding: 15px 15px 5px;
    text-transform: uppercase;
    font-weight: 600; }
    #account_page .individual-add .sub-title span {
      color: #333;
      background-color: #ffc107;
      font-size: 10px;
      padding: 4px;
      text-transform: capitalize;
      font-weight: 600;
      border-radius: 19px; }
  #account_page .individual-add .address-text {
    padding: 0 15px; }
  #account_page .individual-add .edit-address-link {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    padding: 15px 15px;
    background: #f5f5f5;
    border-bottom-right-radius: 0.345rem;
    border-bottom-left-radius: 0.345rem;
    margin-bottom: 0; }

.edit-address-wrap .form-vertical {
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
  border-radius: 0.357rem; }
.edit-address-wrap .section_title {
  padding: 15px 15px 15px !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-size: 15px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important; }
.edit-address-wrap .edit-address-inner {
  padding: 15px 15px 0; }
.edit-address-wrap .set-default-add {
  padding: 0 15px; }
.edit-address-wrap .btn-update-add {
  padding: 15px 15px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.125) !important; }
  .edit-address-wrap .btn-update-add .btn {
    margin: 0 15px 0 0;
    padding: 10px 10px;
    font-size: 13px;
    letter-spacing: 1px; }

@media only screen and (min-width: 992px) and (max-width: 1100px) {
  #account_page .btn {
    font-size: 13px;
    letter-spacing: 1px; } }

#shopify-section-faq .collection-banner {
  margin-bottom: 0; }
#shopify-section-faq .collection-banner + section {
  padding-top: 30px;
  background: white; }

.viewmore img {
  max-width: 80px; }

#account_page .add-address-form#AddAddress {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.357rem;
  margin-bottom: 20px;
  padding-bottom: 5px; }
  #account_page .add-address-form#AddAddress .section_title {
    padding: 15px 15px 15px !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important; }
  #account_page .add-address-form#AddAddress .add-address-wrap {
    padding: 10px 15px; }
  #account_page .add-address-form#AddAddress .default-add-wrap {
    padding: 0 15px; }
  #account_page .add-address-form#AddAddress .btn-update-add {
    padding: 15px 15px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.125) !important; }
    #account_page .add-address-form#AddAddress .btn-update-add .btn {
      margin: 0 15px 0 0;
      padding: 10px 10px;
      font-size: 13px;
      letter-spacing: 1px; }

.loading_image {
  max-width: 125px; }
  @media screen and (max-width: 767px) {
    .loading_image {
      max-width: 50px; } }

.drawer__close span {
  font-weight: 600;
  font-size: 19px; }

/*
@include at-query ($max , $pre-sm){
  .pop-up-prod-wraps  .slick-slider .slick-list{
    width: 100% !important;
  }
  .pop-up-prod-wraps .product-wrap{
    width: 100% !important;
  }
} */
.pop-up-prod-wraps .slick-next {
  right: 10px; }
.pop-up-prod-wraps .slick-prev {
  left: 10px; }

@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  #registerLoginForm input,
  .login-form .content.cform input {
    height: auto;
    line-height: 1.6; } }
@supports (-webkit-marquee-repetition: infinite) and (object-fit: fill) {
  #registerLoginForm input,
  .login-form .content.cform input {
    height: auto;
    line-height: 1.6; } }
.product-section {
  background-color: #fff;
  position: relative; }

.single-prod-desc .wholeDesc p a {
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-family: "Poppins", sans-serif !important; }

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .p-single-device .device-content .btn {
    padding: 5px 4px;
    font-size: 12px; } }

#main-content.product-page .product-image-wrap + div {
  float: left !important; }

.collection-page .collection-desc {
  padding: 30px; }
  @media screen and (max-width: 767px) {
    .collection-page .collection-desc {
      padding: 0; } }
  .collection-page .collection-desc p {
    margin-bottom: 15px;
    text-align: left; }
  .collection-page .collection-desc a {
    color: #0088cb; }
    .collection-page .collection-desc a:hover {
      text-decoration: underline; }
  .collection-page .collection-desc ul {
    margin-bottom: 20px;
    padding: 0 0 0 20px; }
    .collection-page .collection-desc ul li {
      list-style: disc; }

/* these styles are for the zoom*/
.zoom {
  display: inline-block;
  position: relative; }

/* magnifying glass icon */
.zoom:after {
  content: "";
  display: block;
  width: 33px;
  height: 33px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(icon.png); }

.zoom img {
  display: block; }

.zoom img::selection {
  background-color: transparent; }

/* Error page with header Footer 19/04/2019 */
#error-page.with-header-footer {
  width: 100%;
  position: relative;
  height: auto;
  overflow: visible; }
  #error-page.with-header-footer .error-content {
    text-align: center;
    padding: 100px 0; }
    #error-page.with-header-footer .error-content .brand-name {
      display: none; }
    #error-page.with-header-footer .error-content .error_msg {
      max-width: 570px;
      width: auto;
      padding: 0 10px;
      display: inline-block;
      text-align: center;
      position: relative;
      top: auto;
      left: auto;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: none; }
    #error-page.with-header-footer .error-content .bottom_social {
      display: none; }

/* Added for scrolldown  */
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite; }

.chevron:first-child {
  animation: move 3s ease-out 1s infinite; }

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite; }

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #0b6ab1; }

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg); }

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg); }

@keyframes move {
  25% {
    opacity: 1; }
  33% {
    opacity: 1;
    transform: translateY(30px); }
  67% {
    opacity: 1;
    transform: translateY(40px); }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5); } }
@keyframes pulse {
  to {
    opacity: 1; } }
.scroll-down-logo-container {
  display: none;
  text-align: right;
  position: absolute;
  bottom: 95px;
  right: 33px; }
  @media screen and (max-width: 767px) {
    .scroll-down-logo-container {
      display: block; } }

.scroll-down-logo {
  display: block;
  height: 66px;
  width: 30px;
  text-align: right;
  cursor: pointer; }

.product-image-wrap-inner {
  position: relative; }

.itemNotAvailable.itemNotAvailable-withText {
  height: auto;
  justify-content: left;
  padding-bottom: 0; }

.single-device-tab.loader-open {
  display: block; }

/* 06/05/2019 */
.product-page .resp-tabs-container {
  padding-bottom: 0; }

.yes-no-selection .tooltip-container.open:after {
  right: auto;
  left: 15px; }

.product-selection-tab .yes-no-selection .thumb-desc-wrp {
  margin-bottom: 0;
  margin-top: 15px; }

/*# sourceMappingURL=styles.css.liquid.map */
