/*============================================================================
Haravan Timber v2.1.0 | github.com/haravan/timber
Copyright 2015 Haravan Inc.
Author Carson Shold @cshold
Built with Sass - http://sass-lang.com/

Some things to know about this file:
- Sass is compiled on Haravan's server so you don't need to convert it to CSS yourself
- The output CSS is compressed and comments are removed
- This file merges your stylesheets into one master at assets/timber.scss.liquid
==============================================================================*/
/*================ Variables, theme settings, and Sass mixins ================*/
/*============================================================================
#Sass Mixins
==============================================================================*/
.clearfix:after {
  content: '';
  display: table;
  clear: both; }

/*================ Functions ================*/
/*================ Animations and keyframes ================*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

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

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

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

@-webkit-keyframes fadeIn {
  0%, 35% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0%, 35% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-keyframes fadeIn {
  0%, 35% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0%, 35% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }
  60% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }
  60% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-ms-keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }
  60% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }
  60% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

/*============================================================================
Dependency-free breakpoint mixin
- http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*================ Color variables ================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//theme.hstatic.net/1000092436/1001373118/14/icons.eot?v=1554");
  src: url("//theme.hstatic.net/1000092436/1001373118/14/icons.eot?v=1554#iefix") format("embedded-opentype"), url("//theme.hstatic.net/1000092436/1001373118/14/icons.woff?v=1554") format("woff"), url("//theme.hstatic.net/1000092436/1001373118/14/icons.ttf?v=1554") format("truetype"), url("//theme.hstatic.net/1000092436/1001373118/14/icons.svg?v=1554#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*================ Global | Normalize ================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0; }

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

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

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

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

/*================ Site-wide styles ================*/
/*================ Partials | Layout Styles ================*/
html,
body {
  background-color: #ffffff; }

[tabindex='-1']:focus {
  outline: none; }

.wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 0px !important; }
  @media screen and (min-width: 591px) {
    .wrapper {
      padding: 0 30px; } }

.main-content {
  display: block;
  padding-top: 35px; }
  @media screen and (min-width: 591px) {
    .main-content {
      /*padding-bottom: 40px;*/ } }
  @media screen and (min-width: 769px) {
    .main-content {
      padding-top: 0; } }

hr {
  clear: both;
  border-top: solid #1c1d1d;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ Partials | Typography styles ================*/
body,
input,
textarea,
button,
select {
  font-size: 16px;
  line-height: 1.6;
  font-family: Inter;
  color: #1c1d1d;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: initial; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: Inter;
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.4;
  text-rendering: initial; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 2.25em; }

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

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

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

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

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

p {
  margin: 0 0 15px 0;
  text-rendering: optimizeLegibility; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  margin: 0;
  padding: 15px 30px 40px; }
  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, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

/*================ Partials | Lists ================*/
ul, ol {
  margin: 0 0 15px 20px;
  padding: 0;
  text-rendering: optimizeLegibility; }

ol ol {
  list-style: lower-alpha; }

ol {
  list-style: decimal; }

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: 0.25em; }

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

/*================ Partials | Tables ================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

.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 #1c1d1d; }

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

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
Drop relative positioning into silent classes which can't take advantage of
the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
Grid Setup
1. Allow the grid system to be used on lists.
2. Remove any margins and paddings that might affect the grid system.
3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -15px; }
  @media screen and (min-width: 591px) {
    .grid, .grid--rev, .grid--full,
    .grid-uniform {
      margin-left: -15px; } }

.grid__item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  vertical-align: top;
  width: 100%; }
  @media screen and (min-width: 591px) {
    .grid__item {
      padding-left: 30px; } }

.grid--small {
  margin-left: -10px; }
  .grid--small .grid__item {
    padding-left: 10px; }

/*============================================================================
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; }
  .lt-ie9 .grid--full {
    margin-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 (max-width: 590px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }
  /* Halves */
  .small--one-half {
    width: 50%; }
  /* Thirds */
  .small--one-third {
    width: 33.333%; }
  .small--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .small--one-quarter {
    width: 25%; }
  .small--two-quarters {
    width: 50%; }
  .small--three-quarters {
    width: 75%; }
  /* Fifths */
  .small--one-fifth {
    width: 20%; }
  .small--two-fifths {
    width: 40%; }
  .small--three-fifths {
    width: 60%; }
  .small--four-fifths {
    width: 80%; }
  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }
  .small--two-sixths {
    width: 33.333%; }
  .small--three-sixths {
    width: 50%; }
  .small--four-sixths {
    width: 66.666%; }
  .small--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }
  .small--two-eighths {
    width: 25%; }
  .small--three-eighths {
    width: 37.5%; }
  .small--four-eighths {
    width: 50%; }
  .small--five-eighths {
    width: 62.5%; }
  .small--six-eighths {
    width: 75%; }
  .small--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small--one-tenth {
    width: 10%; }
  .small--two-tenths {
    width: 20%; }
  .small--three-tenths {
    width: 30%; }
  .small--four-tenths {
    width: 40%; }
  .small--five-tenths {
    width: 50%; }
  .small--six-tenths {
    width: 60%; }
  .small--seven-tenths {
    width: 70%; }
  .small--eight-tenths {
    width: 80%; }
  .small--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }
  .small--two-twelfths {
    width: 16.666%; }
  .small--three-twelfths {
    width: 25%; }
  .small--four-twelfths {
    width: 33.333%; }
  .small--five-twelfths {
    width: 41.666%; }
  .small--six-twelfths {
    width: 50%; }
  .small--seven-twelfths {
    width: 58.333%; }
  .small--eight-twelfths {
    width: 66.666%; }
  .small--nine-twelfths {
    width: 75%; }
  .small--ten-twelfths {
    width: 83.333%; }
  .small--eleven-twelfths {
    width: 91.666%; }
  .small--show {
    display: block !important; }
  .small--hide {
    display: none !important; }
  .small--text-left {
    text-align: left !important; }
  .small--text-right {
    text-align: right !important; }
  .small--text-center {
    text-align: center !important; }
  .small--left {
    float: left !important; }
  .small--right {
    float: right !important; }
  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 591px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }
  /* Halves */
  .medium--one-half {
    width: 50%; }
  /* Thirds */
  .medium--one-third {
    width: 33.333%; }
  .medium--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium--one-quarter {
    width: 25%; }
  .medium--two-quarters {
    width: 50%; }
  .medium--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium--one-fifth {
    width: 20%; }
  .medium--two-fifths {
    width: 40%; }
  .medium--three-fifths {
    width: 60%; }
  .medium--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }
  .medium--two-sixths {
    width: 33.333%; }
  .medium--three-sixths {
    width: 50%; }
  .medium--four-sixths {
    width: 66.666%; }
  .medium--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }
  .medium--two-eighths {
    width: 25%; }
  .medium--three-eighths {
    width: 37.5%; }
  .medium--four-eighths {
    width: 50%; }
  .medium--five-eighths {
    width: 62.5%; }
  .medium--six-eighths {
    width: 75%; }
  .medium--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium--one-tenth {
    width: 10%; }
  .medium--two-tenths {
    width: 20%; }
  .medium--three-tenths {
    width: 30%; }
  .medium--four-tenths {
    width: 40%; }
  .medium--five-tenths {
    width: 50%; }
  .medium--six-tenths {
    width: 60%; }
  .medium--seven-tenths {
    width: 70%; }
  .medium--eight-tenths {
    width: 80%; }
  .medium--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }
  .medium--two-twelfths {
    width: 16.666%; }
  .medium--three-twelfths {
    width: 25%; }
  .medium--four-twelfths {
    width: 33.333%; }
  .medium--five-twelfths {
    width: 41.666%; }
  .medium--six-twelfths {
    width: 50%; }
  .medium--seven-twelfths {
    width: 58.333%; }
  .medium--eight-twelfths {
    width: 66.666%; }
  .medium--nine-twelfths {
    width: 75%; }
  .medium--ten-twelfths {
    width: 83.333%; }
  .medium--eleven-twelfths {
    width: 91.666%; }
  .medium--show {
    display: block !important; }
  .medium--hide {
    display: none !important; }
  .medium--text-left {
    text-align: left !important; }
  .medium--text-right {
    text-align: right !important; }
  .medium--text-center {
    text-align: center !important; }
  .medium--left {
    float: left !important; }
  .medium--right {
    float: right !important; }
  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }
  /* Halves */
  .medium-down--one-half {
    width: 50%; }
  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }
  .medium-down--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }
  .medium-down--two-quarters {
    width: 50%; }
  .medium-down--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }
  .medium-down--two-fifths {
    width: 40%; }
  .medium-down--three-fifths {
    width: 60%; }
  .medium-down--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }
  .medium-down--two-sixths {
    width: 33.333%; }
  .medium-down--three-sixths {
    width: 50%; }
  .medium-down--four-sixths {
    width: 66.666%; }
  .medium-down--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }
  .medium-down--two-eighths {
    width: 25%; }
  .medium-down--three-eighths {
    width: 37.5%; }
  .medium-down--four-eighths {
    width: 50%; }
  .medium-down--five-eighths {
    width: 62.5%; }
  .medium-down--six-eighths {
    width: 75%; }
  .medium-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }
  .medium-down--two-tenths {
    width: 20%; }
  .medium-down--three-tenths {
    width: 30%; }
  .medium-down--four-tenths {
    width: 40%; }
  .medium-down--five-tenths {
    width: 50%; }
  .medium-down--six-tenths {
    width: 60%; }
  .medium-down--seven-tenths {
    width: 70%; }
  .medium-down--eight-tenths {
    width: 80%; }
  .medium-down--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }
  .medium-down--two-twelfths {
    width: 16.666%; }
  .medium-down--three-twelfths {
    width: 25%; }
  .medium-down--four-twelfths {
    width: 33.333%; }
  .medium-down--five-twelfths {
    width: 41.666%; }
  .medium-down--six-twelfths {
    width: 50%; }
  .medium-down--seven-twelfths {
    width: 58.333%; }
  .medium-down--eight-twelfths {
    width: 66.666%; }
  .medium-down--nine-twelfths {
    width: 75%; }
  .medium-down--ten-twelfths {
    width: 83.333%; }
  .medium-down--eleven-twelfths {
    width: 91.666%; }
  .medium-down--show {
    display: block !important; }
  .medium-down--hide {
    display: none !important; }
  .medium-down--text-left {
    text-align: left !important; }
  .medium-down--text-right {
    text-align: right !important; }
  .medium-down--text-center {
    text-align: center !important; }
  .medium-down--left {
    float: left !important; }
  .medium-down--right {
    float: right !important; }
  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }
  /* Halves */
  .large--one-half {
    width: 50%; }
  /* Thirds */
  .large--one-third {
    width: 33.333%; }
  .large--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .large--one-quarter {
    width: 25%; }
  .large--two-quarters {
    width: 50%; }
  .large--three-quarters {
    width: 75%; }
  /* Fifths */
  .large--one-fifth {
    width: 20%; }
  .large--two-fifths {
    width: 40%; }
  .large--three-fifths {
    width: 60%; }
  .large--four-fifths {
    width: 80%; }
  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }
  .large--two-sixths {
    width: 33.333%; }
  .large--three-sixths {
    width: 50%; }
  .large--four-sixths {
    width: 66.666%; }
  .large--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }
  .large--two-eighths {
    width: 25%; }
  .large--three-eighths {
    width: 37.5%; }
  .large--four-eighths {
    width: 50%; }
  .large--five-eighths {
    width: 62.5%; }
  .large--six-eighths {
    width: 75%; }
  .large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large--one-tenth {
    width: 10%; }
  .large--two-tenths {
    width: 20%; }
  .large--three-tenths {
    width: 30%; }
  .large--four-tenths {
    width: 40%; }
  .large--five-tenths {
    width: 50%; }
  .large--six-tenths {
    width: 60%; }
  .large--seven-tenths {
    width: 70%; }
  .large--eight-tenths {
    width: 80%; }
  .large--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }
  .large--two-twelfths {
    width: 16.666%; }
  .large--three-twelfths {
    width: 25%; }
  .large--four-twelfths {
    width: 33.333%; }
  .large--five-twelfths {
    width: 41.666%; }
  .large--six-twelfths {
    width: 50%; }
  .large--seven-twelfths {
    width: 58.333%; }
  .large--eight-twelfths {
    width: 66.666%; }
  .large--nine-twelfths {
    width: 75%; }
  .large--ten-twelfths {
    width: 83.333%; }
  .large--eleven-twelfths {
    width: 91.666%; }
  .large--show {
    display: block !important; }
  .large--hide {
    display: none !important; }
  .large--text-left {
    text-align: left !important; }
  .large--text-right {
    text-align: right !important; }
  .large--text-center {
    text-align: center !important; }
  .large--left {
    float: left !important; }
  .large--right {
    float: right !important; }
  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }

/*============================================================================
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: 591px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }
  .push--medium--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }
  .push--medium--two-quarters {
    left: 50%; }
  .push--medium--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }
  .push--medium--two-fifths {
    left: 40%; }
  .push--medium--three-fifths {
    left: 60%; }
  .push--medium--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }
  .push--medium--two-sixths {
    left: 33.333%; }
  .push--medium--three-sixths {
    left: 50%; }
  .push--medium--four-sixths {
    left: 66.666%; }
  .push--medium--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }
  .push--medium--two-eighths {
    left: 25%; }
  .push--medium--three-eighths {
    left: 37.5%; }
  .push--medium--four-eighths {
    left: 50%; }
  .push--medium--five-eighths {
    left: 62.5%; }
  .push--medium--six-eighths {
    left: 75%; }
  .push--medium--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }
  .push--medium--two-tenths {
    left: 20%; }
  .push--medium--three-tenths {
    left: 30%; }
  .push--medium--four-tenths {
    left: 40%; }
  .push--medium--five-tenths {
    left: 50%; }
  .push--medium--six-tenths {
    left: 60%; }
  .push--medium--seven-tenths {
    left: 70%; }
  .push--medium--eight-tenths {
    left: 80%; }
  .push--medium--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }
  .push--medium--two-twelfths {
    left: 16.666%; }
  .push--medium--three-twelfths {
    left: 25%; }
  .push--medium--four-twelfths {
    left: 33.333%; }
  .push--medium--five-twelfths {
    left: 41.666%; }
  .push--medium--six-twelfths {
    left: 50%; }
  .push--medium--seven-twelfths {
    left: 58.333%; }
  .push--medium--eight-twelfths {
    left: 66.666%; }
  .push--medium--nine-twelfths {
    left: 75%; }
  .push--medium--ten-twelfths {
    left: 83.333%; }
  .push--medium--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }
  .push--medium-down--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }
  .push--medium-down--two-quarters {
    left: 50%; }
  .push--medium-down--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }
  .push--medium-down--two-fifths {
    left: 40%; }
  .push--medium-down--three-fifths {
    left: 60%; }
  .push--medium-down--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }
  .push--medium-down--two-sixths {
    left: 33.333%; }
  .push--medium-down--three-sixths {
    left: 50%; }
  .push--medium-down--four-sixths {
    left: 66.666%; }
  .push--medium-down--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }
  .push--medium-down--two-eighths {
    left: 25%; }
  .push--medium-down--three-eighths {
    left: 37.5%; }
  .push--medium-down--four-eighths {
    left: 50%; }
  .push--medium-down--five-eighths {
    left: 62.5%; }
  .push--medium-down--six-eighths {
    left: 75%; }
  .push--medium-down--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }
  .push--medium-down--two-tenths {
    left: 20%; }
  .push--medium-down--three-tenths {
    left: 30%; }
  .push--medium-down--four-tenths {
    left: 40%; }
  .push--medium-down--five-tenths {
    left: 50%; }
  .push--medium-down--six-tenths {
    left: 60%; }
  .push--medium-down--seven-tenths {
    left: 70%; }
  .push--medium-down--eight-tenths {
    left: 80%; }
  .push--medium-down--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }
  .push--medium-down--two-twelfths {
    left: 16.666%; }
  .push--medium-down--three-twelfths {
    left: 25%; }
  .push--medium-down--four-twelfths {
    left: 33.333%; }
  .push--medium-down--five-twelfths {
    left: 41.666%; }
  .push--medium-down--six-twelfths {
    left: 50%; }
  .push--medium-down--seven-twelfths {
    left: 58.333%; }
  .push--medium-down--eight-twelfths {
    left: 66.666%; }
  .push--medium-down--nine-twelfths {
    left: 75%; }
  .push--medium-down--ten-twelfths {
    left: 83.333%; }
  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (min-width: 769px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }
  /* Halves */
  .push--large--one-half {
    left: 50%; }
  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }
  .push--large--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }
  .push--large--two-quarters {
    left: 50%; }
  .push--large--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }
  .push--large--two-fifths {
    left: 40%; }
  .push--large--three-fifths {
    left: 60%; }
  .push--large--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }
  .push--large--two-sixths {
    left: 33.333%; }
  .push--large--three-sixths {
    left: 50%; }
  .push--large--four-sixths {
    left: 66.666%; }
  .push--large--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }
  .push--large--two-eighths {
    left: 25%; }
  .push--large--three-eighths {
    left: 37.5%; }
  .push--large--four-eighths {
    left: 50%; }
  .push--large--five-eighths {
    left: 62.5%; }
  .push--large--six-eighths {
    left: 75%; }
  .push--large--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }
  .push--large--two-tenths {
    left: 20%; }
  .push--large--three-tenths {
    left: 30%; }
  .push--large--four-tenths {
    left: 40%; }
  .push--large--five-tenths {
    left: 50%; }
  .push--large--six-tenths {
    left: 60%; }
  .push--large--seven-tenths {
    left: 70%; }
  .push--large--eight-tenths {
    left: 80%; }
  .push--large--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }
  .push--large--two-twelfths {
    left: 16.666%; }
  .push--large--three-twelfths {
    left: 25%; }
  .push--large--four-twelfths {
    left: 33.333%; }
  .push--large--five-twelfths {
    left: 41.666%; }
  .push--large--six-twelfths {
    left: 50%; }
  .push--large--seven-twelfths {
    left: 58.333%; }
  .push--large--eight-twelfths {
    left: 66.666%; }
  .push--large--nine-twelfths {
    left: 75%; }
  .push--large--ten-twelfths {
    left: 83.333%; }
  .push--large--eleven-twelfths {
    left: 91.666%; } }

/*============================================================================
PULL
- Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*================ Partials | Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both; }

.is-transitioning {
  display: block !important;
  visibility: visible !important; }

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

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

@media screen and (min-width: 769px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }
  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }

.visually-hidden {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

/*============================================================================
#OOCSS Media Object
- http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 30px; }

.media-img-right {
  float: right;
  margin-left: 30px; }

.media-img img,
.media-img-right img {
  display: block; }

/*================ Partials | Links and Buttons ================*/
a,
.text-link {
  color: #ef4237;
  text-decoration: none;
  background: transparent; }
  a:hover,
  .text-link:hover {
    color: #1c1d1d; }

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn, .rte .btn--secondary {
  display: inline-block;
  padding: 8px 10px;
  margin: 0;
  width: auto;
  line-height: 1.42;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  /*================ Set primary button colors - can override later ================*/
  background-color: #1c1d1d;
  color: #fff;
  -webkit-transition: background-color 0.4s ease-out;
  -moz-transition: background-color 0.4s ease-out;
  -ms-transition: background-color 0.4s ease-out;
  -o-transition: background-color 0.4s ease-out;
  transition: background-color 0.4s ease-out; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover, .rte .btn--secondary:hover {
    -webkit-transition: background-color 0.15s ease-out;
    -moz-transition: background-color 0.15s ease-out;
    -ms-transition: background-color 0.15s ease-out;
    -o-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
    background-color: #ef4137;
    color: #fff; }
  .btn:active, .btn--secondary:active,
  .rte .btn:active, .rte .btn--secondary:active {
    -webkit-transition: background-color 0.15s ease-out;
    -moz-transition: background-color 0.15s ease-out;
    -ms-transition: background-color 0.15s ease-out;
    -o-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
    background-color: #585b5b;
    color: #fff; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled], .rte [disabled].btn--secondary,
  .rte .btn.disabled, .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #ef4237; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #f36f66;
    color: #1c1d1d; }
  .btn--secondary:active,
  .rte .btn--secondary:active {
    background-color: #e11e12;
    color: #1c1d1d; }

.btn--small {
  padding: 4px 5px;
  font-size: 0.75em; }

.btn--large {
  padding: 12px 15px;
  font-size: 1em; }

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

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

/*================ Partials | Images, SVG, 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; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

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

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

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 768px) {
  input,
  textarea {
    font-size: 16px; } }

button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

fieldset {
  border: 1px solid #1c1d1d;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #1c1d1d;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 0; }
  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; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  margin: 0 10px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox; }

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//theme.hstatic.net/1000092436/1001373118/14/ico-select.svg?v=1554");
  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 {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 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; }

/*================ Vertical Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }

.form-vertical input[type="checkbox"],
.form-vertical input[type="radio"],
.form-vertical .btn,
.form-vertical .btn--secondary {
  display: inline-block; }

.form-vertical .btn, .form-vertical .btn--secondary {
  display: inline-block; }

/*================ Error styles ================*/
input.error,
textarea.error {
  border-color: #d02e2e;
  background-color: #fff6f6;
  color: #d02e2e; }

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group
  .rte .input-group-btn:first-child > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary,
  .input-group
  .rte input[type="hidden"]:first-child + .input-group-btn > .btn--secondary {
    border-radius: 0 0 0 0; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary,
  .input-group
  .rte .input-group-btn:last-child > .btn--secondary {
    border-radius: 0 0 0 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary,
.input-group .input-group-field {
  height: 37px; }

.input-group .input-group-field {
  width: 100%; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

/*================ Selector wrapper ================*/
.selector-wrapper label {
  margin-right: 10px; }
  @media (max-width: 480px) {
    .selector-wrapper label {
      margin-right: 5px;
      font-size: 14px;
      display: inline-flex;
      min-width: 80px; } }

.selector-wrapper + .selector-wrapper {
  margin: 15px 15px 0 0;
  display: inline-block; }
  @media (max-width: 480px) {
    .selector-wrapper + .selector-wrapper {
      margin: 15px 5px 0 0; } }

/*================ Partials | Icons ================*/
@font-face {
  font-family: 'icons';
  src: url("//theme.hstatic.net/1000092436/1001373118/14/icons.eot?v=1554");
  src: url("//theme.hstatic.net/1000092436/1001373118/14/icons.eot?v=1554#iefix") format("embedded-opentype"), url("//theme.hstatic.net/1000092436/1001373118/14/icons.woff?v=1554") format("woff"), url("//theme.hstatic.net/1000092436/1001373118/14/icons.ttf?v=1554") format("truetype"), url("//theme.hstatic.net/1000092436/1001373118/14/icons.svg?v=1554#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block; }

/*============================================================================
A generic way to visually hide content while
remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*================ Icon mapping ================*/
.icon-american_express:before {
  content: "\41"; }

.icon-arrow-down:before {
  content: "\e607"; }

.icon-bitcoin:before {
  content: "\42"; }

.icon-cart:before {
  content: "\e600"; }

.icon-cirrus:before {
  content: "\43"; }

.icon-customer:before {
  content: "\e605"; }

.icon-dankort:before {
  content: "\64"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-facebook:before {
  content: "\e609"; }

.icon-fancy:before {
  content: "\46"; }

.icon-google:before {
  content: "\67"; }

.icon-google_wallet:before {
  content: "\47"; }

.icon-hamburger:before {
  content: "\e601"; }

.icon-instagram:before {
  content: "\69"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

.icon-minus:before {
  content: "\e602"; }

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\e608"; }

.icon-plus:before {
  content: "\e603"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\73"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-x:before {
  content: "\e604"; }

.icon-youtube:before {
  content: "\79"; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
  margin-bottom: 0; }
  .payment-icons li {
    margin: 0 7.5px 7.5px;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons .icon {
  padding-right: 4px; }

/*================ Partials | Drawers ================*/
.js-drawer-open {
  overflow: hidden; }

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 15px 15px;
  max-width: 95%;
  z-index: 10;
  color: #ffffff;
  background-color: #1f1f1f;
  -webkit-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -moz-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -ms-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -o-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1); }
  @media screen and (min-width: 769px) {
    .drawer {
      padding: 0 30px 30px; } }
  .drawer a {
    color: #ffffff; }
    .drawer a:hover {
      color: #ffffff; }
  .drawer input[type="text"],
  .drawer input[type="email"],
  .drawer input[type="number"],
  .drawer textarea {
    border-color: #343535; }
  .drawer .btn--secondary {
    background-color: #c7ac7f;
    color: #ffffff; }

.drawer--left {
  width: 300px;
  left: -300px; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -ms-transform: translateX(300px);
    -o-transform: translateX(300px);
    transform: translateX(300px); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 300px;
  right: -300px; }
  @media screen and (min-width: 591px) {
    .drawer--right {
      width: 400px;
      right: -400px; } }
  .js-drawer-open-right .drawer--right {
    display: block;
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    transform: translateX(-300px); }
    @media screen and (min-width: 591px) {
      .js-drawer-open-right .drawer--right {
        -webkit-transform: translateX(-400px);
        -moz-transform: translateX(-400px);
        -ms-transform: translateX(-400px);
        -o-transform: translateX(-400px);
        transform: translateX(-400px); } }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

/*#PageContainer {
overflow: hidden;
}*/
.is-moved-by-drawer {
  -webkit-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -moz-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -ms-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -o-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -ms-transform: translateX(300px);
    -o-transform: translateX(300px);
    transform: translateX(300px); }
  .js-drawer-open-right .is-moved-by-drawer {
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    transform: translateX(-300px); }
    @media screen and (min-width: 591px) {
      .js-drawer-open-right .is-moved-by-drawer {
        -webkit-transform: translateX(-400px);
        -moz-transform: translateX(-400px);
        -ms-transform: translateX(-400px);
        -o-transform: translateX(-400px);
        transform: translateX(-400px); } }

.drawer__header {
  display: table;
  height: 80px;
  width: 100%;
  margin-bottom: 15px;
  border-bottom: 1px solid #343535; }

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

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center; }

.drawer__close-button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close-button:active {
    background-color: #121212; }

.drawer__close--left {
  text-align: left; }
  .drawer__close--left .drawer__close-button {
    right: auto;
    left: -20px; }

.drawer__close--right {
  text-align: right; }
  .drawer__close--right .drawer__close-button {
    left: auto;
    right: -20px; }

/*================ Cart-specific styles ================*/
.supports-csstransforms .drawer--is-loading .drawer__cart {
  min-height: 100px; }
  .supports-csstransforms .drawer--is-loading .drawer__cart:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 60px;
    margin-left: -12px;
    border-radius: 50%;
    border: 3px solid #343535;
    border-top-color: transparent;
    -webkit-animation: spin 1s infinite linear;
    -moz-animation: spin 1s infinite linear;
    -o-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear; }

/*================ Module-specific styles ================*/
/*================ Module | Footer ================*/
.site-footer {
  padding-bottom: 30px;
  padding-top: 60px;
  background: #ef4237;
  color: #ffffff;
  font-weight: 600; }
  .site-footer hr {
    margin-top: 0;
    border-top-color: #ffffff; }
  @media screen and (max-width: 590px) {
    .site-footer .grid__item {
      padding-bottom: 5px; } }
  .site-footer a {
    color: #ffffff; }
    .site-footer a:hover {
      color: #cccccc; }

@media screen and (min-width: 591px) {
  .site-footer__linklist {
    margin-bottom: 15px; } }

/*================ Module | Notes and Form Feedback ================*/
.note,
.errors {
  border-radius: 0;
  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: #1c1d1d; }

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

/*================ Module | Pagination ================*/
.pagination {
  font-family: Inter;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  padding: 60px 0 0;
  text-align: center;
  font-size: 0.875em; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }
  .pagination .page.current {
    color: #ef4237; }
  .pagination .next,
  .pagination .prev {
    font-family: arial, helvetica, sans-serif; }

/*================ Module | Rich Text Editor ================*/
.rte {
  margin-bottom: 15px; }
  .rte:after {
    content: '';
    display: table;
    clear: both; }
  .rte ul,
  .rte ol {
    margin-bottom: 25px; }
  .rte ul ul {
    margin-bottom: 0; }
  .rte a {
    text-decoration: none; }
  .rte .text-link {
    border-bottom: 1px solid #ef4237; }
    .rte .text-link:hover, .rte .text-link:focus {
      border-bottom: 1px solid #1c1d1d; }
  .rte h1, .rte .h1, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em;
    margin-bottom: 2em; }
  .rte h2, .rte .h2, .rte h3, .rte .h3 {
    margin-top: 4em;
    margin-bottom: 2em; }
  .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
    margin-top: 0; }
  .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
    text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0; }
  .rte > p:last-child {
    margin-bottom: 0; }

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

.rte--nomargin {
  margin-bottom: 0; }

/*================ Indented article/page images and blockquotes ================*/
.rte--indented-images img:not([style]),
.rte--indented-images img[style="float: none;"] {
  max-width: 120%;
  margin-left: -10%; }
  .rte--indented-images img:not([style]).rte__no-indent,
  .rte--indented-images img[style="float: none;"].rte__no-indent {
    margin: 0 auto;
    max-width: 100%; }

.rte--indented-images img[style="float: right;"] {
  margin: 0 -10% 15px 15px; }

.rte--indented-images img[style="float: left;"] {
  margin: 0 15px 15px -10%; }

@media screen and (min-width: 769px) {
  .rte blockquote {
    width: 120%;
    margin-left: -10%;
    padding-left: 0;
    padding-right: 0; }
    .rte blockquote p {
      margin-bottom: 0; } }

/*================ Module | Site Header ================*/
.site-header {
  padding: 0; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  /*a.site-header__logo-link {
	margin: 0 auto;
}*/ }
  .site-header__logo a,
  .site-header__logo a:hover {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0 auto;
    max-width: 180px; }

/*================ Module | Search Bar ================*/
.search-bar {
  max-width: 100%; }

.search-bar--page {
  max-width: 400px;
  margin: 0 auto; }
  .search-bar--page .input-group-field {
    display: inline-block;
    width: 60%; }
  .search-bar--page .select_search {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    width: 40%;
    border-left: 1px solid #ddd;
    border-left: 1px solid #ddd;
    display: inline-block;
    vertical-align: middle; }

.search-bar--modal {
  max-width: 300px;
  margin: 20% auto 0; }

.search-bar--header {
  max-width: 330px; }
  .search-bar--header .input-group-field {
    display: inline-block;
    width: 60%;
    vertical-align: middle; }
  .search-bar--header .select_search {
    width: 40%;
    border-left: 1px solid #ddd;
    border-left: 1px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    padding: 7px 10px 8px;
    line-height: inherit; }
    @media (max-width: 767px) {
      .search-bar--header .select_search {
        margin-top: -1px; } }
  .is-dark .search-bar--header input {
    background-color: #e9e9e9; }

.search-bar--drawer {
  margin-bottom: 15px; }

/*================ Module | Section Headers ================*/
.section-header {
  margin-bottom: 30px; }

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

@media screen and (min-width: 769px) {
  .section-header {
    display: table;
    width: 100%;
    position: relative; }
  .section-header__title {
    margin-bottom: 12px; }
  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1, .section-header__left h2, .section-header__left .h2, .section-header__left h3, .section-header__left .h3, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .h3, .section-header__left .h4 {
      margin-bottom: 0; } }

/*================ Module | Site Nav and Dropdowns ================*/
.site-nav, .site-nav--mobile {
  cursor: default;
  margin: 0;
  margin-left: -15px; }

.site-nav__item {
  position: relative;
  display: inline-block;
  margin: 0; }
  .site-nav__item li {
    display: block; }

.site-nav--mobile {
  margin-left: -10px; }
  .site-nav--mobile.text-right {
    margin: 0 -10px 0 0; }

.site-nav__link {
  display: inline-block;
  text-decoration: none;
  padding: 15px 10px 15px 0;
  white-space: nowrap;
  color: #fff;
  font-size: 0.875em; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    padding-left: 7.5px;
    font-size: 10px; }

.site-nav__link--icon {
  padding-left: 7.5px;
  padding-right: 7.5px; }

.site-nav--mobile .site-nav__link {
  display: inline-block;
  color: #000; }

.site-nav--mobile .icon {
  font-size: 1.875em; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 5; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown,
  .site-nav--has-dropdown.nav-hover .site-nav__dropdown,
  .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
    background-color: #ffffff; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active {
      background-color: #e6e6e6; }

/*================ Mobile navigation ================*/
.mobile-nav {
  margin: -15px -15px 0 -15px; }
  .mobile-nav li {
    margin-bottom: 0;
    list-style: none; }
    @media (max-width: 767px) {
      .mobile-nav li:last-child .group_icon {
        padding: 15px 15px 0; }
        .mobile-nav li:last-child .group_icon ul {
          left: 0px;
          top: 45px;
          background: #696565;
          padding-left: 15px;
          padding-right: 15px;
          width: 100%; } }

.mobile-nav__search {
  padding: 15px; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: #1f1f1f; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #343535; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block;
  font-size: 22px; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #ffffff;
  padding: 15px;
  text-decoration: none; }
  .mobile-nav__item a:active,
  .mobile-nav__toggle button:active {
    color: #d9d9d9; }
  .mobile-nav__item a:active,
  .mobile-nav__toggle button:active {
    background-color: #121212; }

.mobile-nav__item--secondary a {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 10px; }
  @media (max-width: 767px) {
    .mobile-nav__item--secondary a {
      color: #fff; } }

.mobile-nav__item--secondary:after {
  display: none; }

.mobile-nav__spacer {
  height: 0;
  padding: 5px; }

.mobile-nav__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.mobile-nav__toggle-open {
  display: block; }
  .mobile-nav--expanded .mobile-nav__toggle-open {
    display: none; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  /*@include transition(all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95));*/ }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 100%;
    /*@include transition(all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95));*/ }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 30px;
    font-weight: normal; }

/*================ Cart bubble for items in cart ================*/
@media screen and (min-width: 769px) {
  .site-nav__link--icon .icon {
    font-size: 1.375em; } }

.cart-link {
  position: relative; }

.cart-link__bubble {
  display: none; }

.cart-link__bubble--visible {
  display: block;
  position: absolute;
  top: 18px;
  right: 4px;
  width: 10px;
  height: 10px;
  background-color: #ef4237;
  border-radius: 50%; }
  @media screen and (max-width: 768px) {
    .cart-link__bubble--visible {
      top: 22px;
      right: 12px; } }

/*================ View-specific styles ================*/
/*================ Templates | Cart Page ================*/
.cart__header-labels {
  font-family: Inter;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.cart__row {
  position: relative;
  margin-bottom: 30px; }
  .cart__row:first-child {
    border-bottom: 1px solid #1c1d1d;
    padding-bottom: 15px; }
  .cart__row .js-qty {
    margin: 0 auto; }
  .cart__row .btn, .cart__row .btn--secondary,
  .cart__row .btn--secondary {
    padding: 8px;
    margin: 0;
    width: calc(50% - 3px); }

.update-cart + .cart__checkout {
  margin-left: 0px;
  min-width: 167px; }

@media screen and (min-width: 591px) {
  .update-cart + .cart__checkout {
    margin-left: 0px;
    min-width: 167px; } }

.cart__note textarea {
  height: 140px; }

.cart__row--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .cart__row--table .grid__item {
    display: table-cell;
    vertical-align: middle;
    float: none; }

@media screen and (min-width: 769px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }

.cart__image {
  display: block; }
  .cart__image img {
    width: 100%;
    display: block; }
  @media screen and (max-width: 768px) {
    .cart__image {
      margin-bottom: 15px; } }

.cart__product-name {
  margin-bottom: 0; }

.cart__product-qty {
  text-align: center;
  margin: 0 auto;
  max-width: 80px; }

.cart__note {
  margin: 0; }
  @media screen and (min-width: 769px) {
    .cart__note {
      padding-right: 30px; } }

.cart__product-meta {
  margin-bottom: 0; }

.additional_checkout_buttons {
  margin-left: -10px; }
  .additional_checkout_buttons input[type="image"],
  .additional_checkout_buttons .google-wallet-button-holder {
    margin-left: 10px; }

/*================ Templates | Product Page ================*/
.product-single {
  text-align: center; }

.product-single__meta--wrapper {
  padding-left: 45px;
  padding-right: 25px; }

.product-single__vendor {
  letter-spacing: 0.1em;
  font-size: 1.125em; }

.product-single__title {
  font-size: 20px;
  margin-bottom: 7.5px;
  margin-top: -10px;
  word-wrap: break-word;
  text-align: left; }
  @media screen and (min-width: 591px) {
    .product-single__title {
      font-size: 22px; } }

.product-single__meta .hr--small {
  margin: 20px 0; }

.product-single__description {
  margin-top: 40px;
  text-align: left; }

.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

@media screen and (min-width: 591px) {
  .product-single__photo-wrapper {
    margin-bottom: 15px; }
    .product-single__photo-wrapper:last-child {
      margin-bottom: 0; } }

@media screen and (min-width: 591px) {
  .product-single__photo[data-mfp-src] {
    cursor: zoom-in; } }

.product-single__photos a, .product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0 auto;
  max-width: 100%; }

@media screen and (max-width: 590px) {
  .product-single__meta--wrapper {
    padding-right: 30px;
    padding-left: 15px;
    margin: 0 15px; }
  .product-single__meta {
    padding-top: 0; } }

.product-single__hero .grid__item {
  display: inline-block;
  float: none;
  vertical-align: middle; }

@media screen and (min-width: 769px) {
  .product-single__hero .grid__item + .grid__item {
    margin-left: -5px; } }

.product-single__thumbnails {
  margin-left: -15px; }
  .product-single__thumbnails .grid__item {
    padding-left: 15px; }
  .product-single__thumbnails li {
    margin-bottom: 15px; }

.product-single__prices {
  margin-bottom: 15px; }

.product-single__price,
.product-single__price--compare-at {
  font-family: Inter;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1c1d1d;
  font-size: 1.125em;
  font-weight: 400; }
  .product-single__price.on-sale,
  .product-single__price--compare-at.on-sale {
    color: #ef4237; }

.product-single__price--compare-at {
  padding-right: 5px;
  display: inline-block;
  text-decoration: line-through;
  font-size: 12px !important; }

.product-single__price--compare-at, .grid-product__price {
  display: block !important; }

.product-single__quantity .js-quantity-selector,
.product-single__quantity .js-qty {
  display: inline-block; }

.product-single__quantity-label {
  margin-right: 10px; }

.hero__slide .hero__title {
  font-size: 65px !important; }

.input-group .btn, .input-group .btn--secondary, .input-group .btn--secondary, .input-group .input-group-field {
  font-size: 17px !important; }

.tag--active a, .tag--active a:hover {
  color: #EF4237 !important; }

#lienhe i {
  font-size: 15px;
  vertical-align: middle; }

.addtoc {
  padding: 9px 24px !important; }

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

.view-more a {
  background: #ef4137 !important; }

@media (max-width: 320px) {
  .input-group .btn, .input-group .btn--secondary, .input-group .btn--secondary, .input-group .input-group-field {
    font-size: 9.6px !important; }
  .hero__slide .hero__subtitle {
    font-size: 1.515em !important; }
  .hero__slide .hero__title {
    font-size: 33px !important; } }

@media (min-width: 321px) and (max-width: 478px) {
  .input-group .btn, .input-group .btn--secondary, .input-group .btn--secondary, .input-group .input-group-field {
    font-size: 12px !important; }
  .hero__slide .hero__title {
    font-size: 40px !important; }
  /*.hero__slide .hero__subtitle {
	font-size: 1.715em !important;
}*/ }

@media (max-width: 590px) {
  .grid, .grid--rev, .grid--full, .grid--rev, .grid--full, .grid-uniform {
    margin-left: 0px !important; }
  .grid__item {
    padding-left: 5px;
    padding-right: 5px; } }

.site-header .input-group-field {
  font-size: 12px !important; }

.input-group-btn .newsletter__submit {
  padding: 0 20px; }

.popup-image {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999; }

.width-popup {
  width: 30%; }

.popup-image a {
  display: block;
  line-height: 0; }

.close-popup {
  position: left;
  top: -15px;
  right: -15px;
  line-height: 30px !important;
  width: 20px;
  height: 20px;
  background: #000;
  color: #fff;
  z-index: 99999;
  vertical-align: middle;
  font-weight: bold; }

.popup-image a:hover {
  color: #fff; }

@media (max-width: 768px) {
  .tac {
    text-align: center; }
  .popup-image {
    width: 47%; } }

.product-recommend {
  float: left;
  width: 100%;
  margin-top: 30px; }

.title-productsrecommend {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold; }

#productsrecommend .owl-prev {
  background: url(//theme.hstatic.net/1000092436/1001373118/14/rowleft.png?v=1554) no-repeat;
  background-position: center;
  position: absolute;
  width: 30px;
  height: 40px;
  top: calc(50% - 15px);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  left: 0;
  font-size: 0; }

#productsrecommend .owl-next {
  background: url(//theme.hstatic.net/1000092436/1001373118/14/rowright.png?v=1554) no-repeat;
  background-position: center;
  position: absolute;
  width: 30px;
  height: 40px;
  top: calc(50% - 15px);
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  right: 0;
  font-size: 0; }

.bct {
  text-align: left;
  margin: 20px 0 0; }

.bct img {
  max-width: 150px; }

.contentPages img {
  max-width: 100% !important;
  height: auto;
  margin: 0 !important; }

.bg-blog .wrapper .grid img, .bg-blog .wrapper .grid--rev img, .bg-blog .wrapper .grid--full img {
  width: initial;
  height: initial;
  max-width: 100% !important; }

.label_order {
  min-width: 110px !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  background: rgba(255, 255, 255, 0); }

@media (max-width: 767px) {
  .section-header h1, .section-header .h1 {
    font-size: 1.375em !important; } }

@media (max-width: 520px) {
  .owl-theme .owl-controls .owl-page span {
    margin: 0 7px !important; }
  .owl-theme .owl-controls {
    bottom: -2px; } }

#AddToCartForm {
  text-align: left; }

.contact-modal > .input-group:last-child textarea {
  width: 100%; }

.contact-modal > .input-group:last-child {
  width: 100%; }

.contact-modal > .input-group {
  float: left;
  width: 100%;
  padding: 0 5px;
  display: block; }

.contact-modal > .input-group input {
  width: 100%; }

.contact-modal {
  float: left;
  width: 100%; }

.content-contactmodal button.remodal-confirm {
  float: right;
  width: 100%;
  height: 41px;
  line-height: 21px;
  background: #000; }

@media (min-width: 768px) {
  .contact-modal > .input-group {
    float: left;
    width: 50%; }
  .contact-modal {
    width: calc(100% - 120px); }
  .content-contactmodal button.remodal-confirm {
    width: 110px;
    min-width: 110px; } }

.infomation-product {
  border-bottom: 2px solid #d2d2d2;
  margin: 0 5px 15px;
  padding-bottom: 10px;
  position: relative; }

.content-contactmodal {
  border-bottom: 2px solid #d2d2d2;
  margin: 0 0 15px; }

@media only screen and (min-width: 641px) {
  .template-product .remodal {
    text-align: left;
    padding: 20px; } }

.template-product .remodal {
  padding: 20px; }

p.remodal-title {
  text-align: left;
  margin: 0 5px 15px; }

p.headtitle {
  padding-bottom: 9px;
  border-bottom: 2px solid #d2d2d2;
  color: #ef4137;
  font-weight: bold; }

select.gender {
  margin-left: 5px;
  margin-bottom: 10px; }

.infomation-product .info-left {
  float: left;
  width: 100%; }

.infomation-product .info-right {
  float: left;
  width: 100%; }

@media (min-width: 641px) {
  .infomation-product .info-left {
    padding-right: 20px;
    width: 55%; }
  .infomation-product .info-right {
    float: left;
    width: 45%; }
  .productprice {
    position: absolute;
    bottom: 12px; } }

.info-append {
  padding-left: 5px; }

.info-append label {
  font-weight: bold;
  margin-right: 8px;
  min-width: 85px;
  display: inline-block; }

#remodal-success p.remodal-title {
  line-height: 1.1;
  margin: 0 0 3px;
  font-size: 15px; }

#remodal-success p.remodal-title:nth-child(2) {
  margin-bottom: 20px; }

.remodal {
  border-radius: 10px;
  text-align: left; }

button.remodal-close {
  right: 17px;
  left: auto;
  top: 17px; }

.productprice del {
  display: block;
  font-size: 15px;
  font-weight: bold; }

.productprice span {
  font-size: 20px;
  color: #ef4137;
  font-weight: bold; }

.product-single__add-to-cart > div {
  width: 100%;
  max-width: 280px;
  padding: 0; }

.product-single__add-to-cart > div + div {
  margin-top: 10px; }

#AddToCartForm .product-single__add-to-cart button {
  width: 100%;
  line-height: 41px; }

.product-single__add-to-cart {
  /*margin: 10px 0;*/
  margin: 15px 0 20px; }

.size_chart {
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin-left: 48px;
  cursor: pointer;
  padding: 8px 20px;
  background: #EF4137; }
  @media (max-width: 480px) {
    .size_chart {
      margin-left: 15px;
      font-size: 12px;
      padding: 11px 20px; } }

#SizeChart {
  max-width: 620px;
  color: white;
  display: table;
  position: relative;
  margin: auto; }

@media screen and (max-width: 590px) {
  .product-single__meta--wrapper {
    margin: 0; } }

.remodal.modal-fastbuy .productprice {
  position: static; }

.hidden {
  display: none; }

.video-wrapper {
  padding-bottom: 0px !important;
  position: initial; }

.group_icon {
  position: relative; }

.icon-page {
  font-size: 16px;
  cursor: pointer;
  color: white; }

.group_icon ul {
  margin: 0;
  list-style: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  left: 0;
  z-index: 9999;
  top: 25px;
  padding: 10px 5px;
  animation-duration: 0.2s;
  -webkit-animation-duration: 0.2s;
  width: 140px;
  text-align: left; }

@media (min-width: 768px) {
  .group_icon:hover ul {
    display: block; }
  .site-header {
    padding: 0;
    background: #000; } }

.icon-page li {
  margin: 0; }

img.iconheader {
  margin-right: 5px; }

/*
@media only screen and (min-width: 769px) {

.grid-uniform .large--one-third:nth-child(3n+1) {
clear: inherit;
}
.large--one-third {
width: 25%;
}

}
*/
.sort-by-left {
  padding: 10px 15px;
  background: #000000;
  border: 1px solid #000000;
  border-bottom: 0px; }

.sort-by-left h5, .sort-by-left .h5, .sort-by-left .h5 {
  text-align: left;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px; }

.sidebar-sort {
  padding: 15px;
  border: 1px solid #eee;
  border-bottom: 0px; }

.sidebar-sort:last-child {
  border-bottom: 1px solid #eee !important;
  margin-bottom: 60px; }

.sidebar-sort button.accordion {
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s; }

.sidebar-sort button.accordion.active {
  border-bottom: 1px solid #eee;
  padding-bottom: 5px; }

.sidebar-sort button.accordion:after {
  content: "\f067";
  color: #000000;
  font-family: "FontAwesome";
  font-weight: bold;
  float: right;
  margin-left: 5px; }

.sidebar-sort button.accordion.active:after {
  content: "\f068";
  font-family: "FontAwesome"; }

.sidebar-sort div.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; }

.sidebar-sort ul {
  padding: 15px 0px 0px 0px; }

.sidebar-sort form span {
  text-align: left; }

.sidebar-sort button.accordion:after {
  content: "\f067";
  color: #000000;
  font-family: "FontAwesome";
  font-weight: bold;
  float: right;
  margin-left: 5px; }

.sidebar-sort .no-bullets li input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: none;
  border: 1px solid #dedede;
  display: inline-block;
  overflow: hidden;
  top: 3px !important;
  position: relative;
  margin-right: 5px !important; }

.sidebar-sort .no-bullets li input[type="checkbox"]:checked:after {
  content: '\2714';
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  display: block;
  outline: none;
  color: #ef4337; }

.sidebar-sort ul li {
  margin-bottom: 0px; }

.sidebar-sort ul.one-col {
  display: flex;
  flex-wrap: wrap; }

.sidebar-sort ul.one-col li {
  width: 100%; }

@media (min-width: 769px) {
  .sidebar-sort ul.one-col li {
    padding: 0 15px; } }

.sidebar-sort .no-bullets li input[type="radio"]:checked {
  width: 16px;
  height: 16px; }

.sidebar-sort .no-bullets li input[type="radio"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: none;
  border: 1px solid #dedede;
  display: inline-block;
  overflow: hidden; }

.sidebar-sort .no-bullets li input[type="radio"]:checked:after {
  content: '\2714';
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  display: block;
  outline: none;
  color: #ef4337; }

.sidebar-sort button.accordion {
  font-size: 14px;
  font-weight: 700;
  color: #000000; }

@media screen and (min-width: 992px) {
  .grid.collection-sidebar-wrapper .grid__item.large--one-whole.medium--one-half.small--one-whole, .collection-sidebar-wrapper.grid--rev .grid__item.large--one-whole.medium--one-half.small--one-whole, .collection-sidebar-wrapper.grid--full .grid__item.large--one-whole.medium--one-half.small--one-whole {
    padding-left: 0px; } }

.sidebar-sort .no-bullets li input[type="checkbox"]:focus {
  outline: none; }

@media (max-width: 768px) {
  .hidden-xs {
    display: none !important; }
  .sort-by-left h5:after, .sort-by-left .h5:after {
    content: "\f068";
    color: #fff;
    font-family: "FontAwesome";
    font-weight: bold;
    position: absolute !important;
    right: 20px !important; }
  .sort-by-left {
    position: relative; }
  .tags--collection {
    position: absolute;
    top: 1px;
    right: 50px; } }

.sort-by-left h5:after, .sort-by-left .h5:after {
  content: "\f068";
  color: #fff;
  font-family: "FontAwesome";
  font-weight: bold;
  float: right;
  margin-left: 5px; }

.sort-by-left.active h5:after, .sort-by-left.active .h5:after {
  content: "\f067";
  font-family: "FontAwesome"; }

.active-show-sidebar .sidebar-sort {
  height: 0;
  padding: 0;
  opacity: 0;
  transition: max-height 0.2s ease-out; }

.top-header {
  background: #ef4237;
  color: #ffffff;
  text-align: center;
  padding: 6px; }

.top-header-en {
  background: #ec4237;
  color: #ffffff;
  text-align: center;
  padding: 6px; }

.site-nav--mobile .site-nav__link {
  display: inline-block;
  color: #fff; }

.site-nav__link--icon {
  padding-left: 3px;
  padding-right: 3px; }

#lienhe {
  line-height: 41px; }

@media screen and (min-width: 591px) {
  .wrapper-collection {
    max-width: 100% !important;
    width: 100%;
    padding: 0 15px !important; } }

.cusgrid {
  margin: 0; }

.fixed {
  width: 100%;
  left: 0;
  max-width: 100%; }

.list-hehe-search {
  margin: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(0, 0, 0, 0.15); }
  @media screen and (max-width: 991px) {
    .list-hehe-search {
      margin: 0 5px !important; } }
  .list-hehe-search .grid__item.grid-product {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 10px; }

#productsrecommend.cart {
  margin: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  /*.owl-stage-outer .owl-stage {
	display: flex;
	overflow-x:hidden;
	.owl-item:first-child{
	border-left: 1px solid rgba(0, 0, 0, 0.15);
}
}*/ }
  #productsrecommend.cart .grid__item.grid-product {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 10px; }

.rte p {
  margin-bottom: 12px; }

@media (max-width: 767px) {
  .bg-blog .wrapper .grid img, .bg-blog .wrapper .grid--rev img, .bg-blog .wrapper .grid--full img,
  .product-single__description img {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important; } }

/*Mai (16/02/2023)*/
p.pro_sku {
  text-align: left;
  font-size: 11px;
  color: #918f8f; }

.qty_add {
  display: flex;
  align-items: center; }

.qty_add input#Quantity {
  max-width: 90px; }
  @media (max-width: 480px) {
    .qty_add input#Quantity {
      max-width: 60px; } }

.qty_add .product-single__add-to-cart {
  width: 50%;
  margin-left: 10px; }

.product-box-loop .img_last, .grid-product__wrapper.has_img .img_last {
  /*transform: translateX(100%);*/
  /*transition: all .5s ease;
	opacity: 0 !important;*/
  width: auto;
  max-height: 100%; }

/*
.product-box-loop.has_img:hover .img_last, .grid-product__wrapper.has_img:hover .img_last{

opacity: 1 !important;
}
.product-box-loop.has_img .img_first, .grid-product__wrapper.has_img .img_first{
opacity: 1 !important;
}
.product-box-loop.has_img:hover .img_first, .grid-product__wrapper.has_img:hover .img_first{
opacity: 0 !important;
}
*/
@media (max-width: 480px) {
  .product-single__description.rte table p {
    /*line-break: anywhere;*/ } }

label[for="CartSpecialInstructions"] {
  margin-left: 10px; }

.cart__note textarea#CartSpecialInstructions:focus::-webkit-input-placeholder {
  color: transparent; }

.cart__note textarea#CartSpecialInstructions:focus:-moz-placeholder {
  color: transparent; }

/* FF 4-18 */
.cart__note textarea#CartSpecialInstructions:focus::-moz-placeholder {
  color: transparent; }

/* FF 19+ */
.cart__note textarea#CartSpecialInstructions:focus:-ms-input-placeholder {
  color: transparent; }

/* IE 10+ */
.cart__note textarea#CartSpecialInstructions:focus::placeholder {
  opacity: 0; }

.cart__note textarea#CartSpecialInstructions::placeholder {
  font-style: italic; }

.cart__note textarea#CartSpecialInstructions::-webkit-input-placeholder {
  font-style: italic; }

.cart__note textarea#CartSpecialInstructions:-moz-placeholder {
  font-style: italic; }

.cart__note textarea#CartSpecialInstructions::-moz-placeholder {
  font-style: italic; }

.cart__note textarea#CartSpecialInstructions:-ms-input-placeholder {
  font-style: italic; }

.cart__row--table p.cart__subtotal.textr {
  text-align: right;
  font-weight: bold;
  font-size: 24px; }

#SizeChart table {
  background: #000; }
  #SizeChart table img {
    filter: brightness(0) invert(1) !important;
    -webkit-filter: brightness(0) invert(1) !important; }
  #SizeChart table tr:first-child td:after {
    border-color: #fff; }
  #SizeChart table * {
    color: #fff !important; }

@media (max-width: 991px) {
  .rte ul, .rte ol {
    list-style: initial; }
    .rte ul li, .rte ol li {
      display: list-item !important; }
  .rte .table-product-wrap table ul, .rte .table-product-wrap table ol {
    list-style: initial; }
    .rte .table-product-wrap table ul li, .rte .table-product-wrap table ol li {
      display: list-item !important; } }

@media (max-width: 590px) {
  /*.grid__item{ 
	padding-left: 20px;
	padding-right: 20px;
}*/
  .grid--full.grid--table.flex_header .grid__item.large--hide.one-quarter {
    padding-right: 0 !important; } }

@media (max-width: 1500px) and (min-width: 768px) {
  .site-header .grid--table .header-right {
    /*flex: auto;
		text-align: center;  margin-bottom: 5px;*/ } }

@media screen and (max-width: 768px) {
  .site-header .grid--table {
    padding: 0 10px !important; }
  .pro-box-tabs .tab-click {
    padding-left: 15px;
    padding-right: 15px; }
  .pro-box-tabs .product-single__desc {
    margin: 20px 5px 0 !important; }
  .padding-none-mb {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .pro-box-tabs .product-single__description {
    margin: 20px 15px 0 !important; }
  .grid__item.product-single__meta--wrapper {
    padding-left: 15px;
    padding-right: 15px; }
  .template-collection .wrapper-collection .section-header .grid__item {
    padding-right: 15px;
    padding-left: 15px; }
  .template-collection .wrapper-collection .collection-sidebar-wrapper {
    padding-right: 10px;
    padding-left: 10px; }
  .template-collection .wrapper-collection .grid__item.product-list {
    padding-left: 0;
    padding-right: 0; }
  .grid.product-single.form-product .grid__item.large--seven-twelfths.medium--seven-twelfths, .product-single.form-product.grid--rev .grid__item.large--seven-twelfths.medium--seven-twelfths, .product-single.form-product.grid--full .grid__item.large--seven-twelfths.medium--seven-twelfths {
    padding-left: 15px !important;
    padding-right: 15px !important; } }

@media (min-width: 992px) {
  .collection-desc {
    margin-left: -30px; } }

.flex-box-variant {
  display: flex;
  align-items: center;
  margin-bottom: 10px; }

#BuyNow {
  font-weight: bold;
  color: white;
  font-size: 14px;
  display: block;
  margin-left: 0;
  text-align: center;
  line-height: 41px;
  padding: 2px 10px;
  background: #EF4137;
  margin-right: 10px; }

@media screen and (min-width: 591px) {
  .product-single__title span {
    font-size: 36px; } }

@media (max-width: 992px) {
  .product-box .product-box-loop .grid-product__title {
    font-size: 14px; } }

@media screen and (max-width: 591px) {
  .product-single__title span {
    font-size: 26px; } }

.product-loop__vendor {
  letter-spacing: 0.1em;
  font-size: 1.125em;
  padding-top: 10px;
  padding-bottom: 5px; }

a.grid-product__meta.grid-product__nopadt {
  padding-top: 0; }

@media (min-width: 1200px) {
  .index-brands .wrapper, .tac1 {
    max-width: 1100px; } }

/*
.article--featured-image:before {
    content: '';
    position: relative;
    padding-top: 65%;
    display: block;
}
*/
.bg-blog .wrapper .article--featured-image img {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  height: 100%;
  background: unset;
  object-fit: contain;
  aspect-ratio: initial; }

@media (max-width: 991px) {
  .main-content.main-content-index {
    padding-top: 0; }
    .main-content.main-content-index .hero--first {
      margin-top: 0; }
      .main-content.main-content-index .hero--first .slick-list {
        padding-top: 0; } }

.content_style_list ul {
  list-style: initial;
  padding-left: 20px; }

.content_style_list ol {
  list-style: decimal;
  padding-left: 20px; }

.content_style_list ul, .content_style_list ol {
  margin-bottom: 8px; }
  .content_style_list ul li:last-child, .content_style_list ol li:last-child {
    margin-bottom: 0; }

.content_style_list li, .content_style_list p {
  margin-bottom: 8px; }

.content_style_list table {
  width: 100% !important; }

.content_style_list h1, .content_style_list .h1 {
  margin-bottom: 8px;
  font-weight: bold; }

.content_style_list h2, .content_style_list .h2 {
  margin-bottom: 8px;
  font-weight: bold; }

.content_style_list h3, .content_style_list .h3 {
  margin-bottom: 8px;
  font-weight: bold; }

.accept-policy {
  margin-top: 5px; }
  .accept-policy a {
    color: #0573ff; }
    .accept-policy a:hover {
      color: #0573ff; }

.footer-info-desc, .footer-info-right .footer-info-action {
  text-align: center; }

.dlpm-coupons, .dlpm-discounts {
  padding: 24px 56px !important; }

.grid-product__on-frame {
  top: 100px !important;
  left: 0;
  right: unset !important; }

@media (max-width: 767px) {
  .dlpm-coupons, .dlpm-discounts {
    padding: 24px 15px !important; }
  .dlpm-discount--row .dlpm-heading-right svg {
    height: 65px !important;
    width: 65px !important; }
  .dlpm-discount--row .heading-label-description {
    font-size: 13px !important; }
  .dlpm-discount--row .heading-label-large {
    font-size: 20px !important; } }

.product-box-banner .box-banner-owl:not(.owl-loaded) {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden; }

.product-box-banner .box-banner-owl:not(.owl-loaded) .box-banner-item {
  flex: 0 0 100%; }

.box-banner-owl {
  display: flex;
  height: 100%;
  align-items: center; }

/*
.box-banner-owl img {
height: 100%!important;
}
.box-banner-owl * {height: 100%;}
*/
@media (min-width: 992px) {
  .product-box.product-box-col-1 .product-box-loop,
  .product-box.product-box-col-2 .product-box-loop {
    padding-bottom: 0 !important; }
  .product-box.product-box-col-1 .product-loop__vendor,
  .product-box.product-box-col-2 .product-loop__vendor {
    padding-top: 0; }
  .product-box.product-box-col-1 .grid-product__price-wrap,
  .product-box.product-box-col-2 .grid-product__price-wrap {
    padding-bottom: 10px; }
  .product-box.product-box-col-1 .product-box-loop .grid-product__title,
  .product-box.product-box-col-2 .product-box-loop .grid-product__title {
    min-height: 50px; } }

.header-center .hfind-store a svg {
  width: 17px;
  height: 17px;
  fill: #fff; }

.header-center .hfind-store {
  margin: 0;
  text-align: initial;
  white-space: normal;
  margin-left: 0;
  background: #373737; }

.site-nav.site-nav--init .header-center li.hfind-store, .site-nav--init.site-nav--mobile .header-center li.hfind-store {
  position: absolute;
  right: -15px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px; }

.header-center .hfind-store a {
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  font-weight: 600; }

li.site-nav__item.site-nav__itemlang.btn-language-en {
  padding-right: 10px; }

li.site-nav__item.site-nav__itemlang.btn-language-vi {
  padding-right: 10px; }

@media (min-width: 769px) and (max-width: 991px) {
  .pro-box-tabs .tab-click > li {
    flex: 1 !important; }
  .site-header .grid--table > .grid__item {
    padding-left: 0; } }

@media (min-width: 992px) {
  .abc {
    padding-left: 0; } }

.product-single__price--compare-at, .grid-product__price {
  display: block !important;
  width: 100%; }

.list-hehe-search span.grid-product__price-wrap {
  flex-wrap: wrap !important;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden; }
