/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ VARIABLES ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
    - Breakpoint pixel values are used in the window.theme.breakpoints object
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
/*================ Font Variables =================*/
/*================ Color Variables ================*/
/*================ Sizing Variables ================*/
/* $gutter-site: 55px;
$gutter-site-mobile: 22px; */
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

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

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block; }

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

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

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

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

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

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

.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 7.5px 15px; }
  .rte ul.list--inline,
  .rte ol.list--inline {
    margin-left: 0; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

/*================ Headings ================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gotham Narrow", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: inherit; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

.c-inherit {
  color: inherit; }

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

@-ms-viewport {
  width: device-width; }

body {
  font-family: "Gotham Narrow", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #606060;
  overflow-x: hidden;
  margin: 0;
  padding: 0; }
  @media (max-width: 767px) {
    body {
      font-size: 16px;
      line-height: 1.4; } }

* {
  position: relative; }

.sezzle-checkout-modal-lightbox .sezzle-checkout-modal-hidden {
  margin-top: 0px !important;
  text-align: left !important; }

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

@media (min-width: 1600px) {
  .container {
    max-width: 1480px; } }
.container.container--medium {
  max-width: 1300px; }

.container.container--small {
  max-width: 1200px; }

.btn, .button--secondary {
  border: 0px;
  background-color: #161616;
  color: #fff;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 1em;
  padding-right: 1em; }

.btn.disabled, .btn:disabled {
  background-color: #777; }

@media screen and (min-width: 992px) {
  .btn:hover {
    background-color: #d60132;
    color: #fff !important; } }
.btn.btn--xs, .btn.btn-xs {
  font-size: 10px; }

.btn.btn--sm, .btn.btn-sm {
  font-size: 12px; }

.btn.btn--lg, .btn.btn-lg {
  font-size: 17px;
  padding: 0.85em 1em; }
  @media (max-width: 991px) {
    .btn.btn--lg, .btn.btn-lg {
      font-size: 15px; } }

.btn.btn--light {
  background-color: #fff;
  color: #161616; }

.btn.btn--light:hover {
  background-color: #d60132;
  color: #161616 !important; }

.btn.btn-red, .btn--accent, .button--secondary {
  background-color: #d60132; }
  @media screen and (min-width: 992px) {
    .btn.btn-red:hover, .btn--accent:hover, .button--secondary:hover {
      background-color: #161616; } }

.btn.btn-hover-light:hover {
  background-color: #fff;
  color: #161616 !important; }

@media (max-width: 991px) {
  .desktop-and-tablet {
    display: none !important; } }

@media (min-width: 768px) {
  .phone-only {
    display: none !important; } }

button:focus {
  outline: none; }

a {
  color: inherit;
  text-decoration: none; }

@media screen and (min-width: 992px) {
  a:hover {
    text-decoration: none;
    color: #d60132; } }
input:focus, textarea:focus, select:focus {
  box-shadow: none !important;
  outline: none; }

.c-black {
  color: #161616; }

.c-red {
  color: #d60132; }

.c-primary {
  color: #d60132; }

.btn.btn-sm {
  font-size: 13px; }

.btn.btn-dark {
  background-color: #161616; }

.coverlink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

body:not(.template-index) .main-content h1, body:not(.template-index) .main-content h2, body:not(.template-index) .main-content h3, body:not(.template-index) .main-content h4, body:not(.template-index) .main-content h5 {
  color: #161616; }

body.template-index #MainContent {
  padding-top: 0px; }

body.template-index .shopify-section .cta__btn {
  background-color: #fff;
  color: var(--hh-black);
  padding: 0.85em 1em;
  min-width: 200px; }

img, .ss-results .ss-products .product-item .responsive-image__wrapper .responsive-image__image {
  max-width: 100%;
  height: auto; }

.preloaded {
  opacity: 0; }

.hidden {
  display: none; }

.ss-results .ss-products .product-item .responsive-image__wrapper .responsive-image__image {
  max-width: 100% !important;
  height: auto !important;
  max-height: 250px !important;
  margin: auto;
  display: block;
  margin: auto; }

#shopify-section-header {
  padding-bottom: 0px; }

.header-group h1 {
  color: var(--hh-black); }

.bottom-bar__container {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

@media (max-width: 1600px) {
  #shopify-section-header .container {
    max-width: 100%; }

  .container.bottom-bar__container {
    max-width: 100%; } }
.shopby-phone-btn {
  background: #525252;
  border-radius: 40px;
  line-height: 26px;
  padding: 0px 1rem;
  /*font-weight: 500;*/
  font-weight: 400;
  font-size: 95%;
  display: inline-block;
  cursor: pointer; }
  @media (max-width: 991px) {
    .shopby-phone-btn {
      display: none; } }

.shopby-phone-btn:hover {
  background: #d60132; }

#phoneordermodal.modal {
  width: 97%;
  padding: 2rem 0.5rem; }

#phoneordermodal .shopbyphone-dropdown:before {
  display: none; }

.shopbyphone-info {
  text-align: center;
  color: #161616;
  font-size: 120%;
  line-height: 1.3; }

.shopbyphone-info.topbar-shopby {
  background: white;
  border-radius: 10px;
  border: 2px solid #d60132;
  padding: 1.5rem 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 300px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.24);
  display: none; }
  @media (max-width: 991px) {
    .shopbyphone-info.topbar-shopby {
      display: none !important; } }

.shopby-phone-btn:hover + .shopbyphone-info.topbar-shopby, .shopbyphone-info.topbar-shopby:hover, .shopbyphone-info.open {
  display: block; }
  @media (max-width: 991px) {
    .shopby-phone-btn:hover + .shopbyphone-info.topbar-shopby, .shopbyphone-info.topbar-shopby:hover, .shopbyphone-info.open {
      display: none !important; } }

.shopbyphone-info.topbar-shopby:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  margin-left: 25px;
  margin-top: 0px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #d60132; }

.shopbyphone-info .maintext {
  /*font-weight: 500;*/
  font-weight: 600; }

.shopbyphone-info .hours {
  /*font-weight: 500;*/
  font-weight: 600;
  font-size: 96%; }

.shopbyphone-info .hours small {
  font-weight: 400; }

.shopbyphone-info .callnumber {
  font-size: 120%;
  font-weight: 600;
  color: #d60132; }

.shopbyphone-info .callnumber a:hover {
  color: #161616; }

.shopbyphone-info .available {
  font-size: 13px;
  color: #1fad4d;
  font-weight: 400;
  margin-top: 1rem; }

.shopbyphone-info .available svg {
  font-size: 60%; }

.shopbyphone-info .special-holiday-callhours {
  font-size: 84%;
  background: #eee;
  margin: 0.65rem 0px 0px;
  padding: 0.65rem 0.2rem; }

.shopbyphone-info .special-holiday-callhours strong {
  font-size: 112%; }

@media (max-width: 991px) {
  .top-announcement-bar .shopbyphone-info {
    display: none !important; } }

.top-announcement-bar {
  background-color: #161616;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 0.75rem 0; }
  @media (max-width: 991px) {
    .top-announcement-bar {
      text-align: center;
      font-size: 13px; } }

.top-announcement-bar p {
  margin-bottom: 0; }

.top-announcement-bar a {
  color: inherit; }

.top-announcement-bar a:hover {
  color: #fff; }

.top-announcement-bar .nav__group {
  display: block;
  margin-bottom: 0;
  margin-top: 0; }

.top-announcement-bar .nav__group li {
  display: inline-block;
  padding: 0 0.7em; }

.top-announcement-bar .nav__group li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.22); }

.nav--account .nav__group {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px; }

.nav--account .nav__group * {
  vertical-align: middle; }

.nav--account .nav__group li {
  display: inline-block;
  font-size: 92%; }

[ss-autocomplete] #ss-ac-terms .ss-list .ss-list-option a {
  display: block !important; }

[ss-autocomplete] #ss-ac-terms .ss-list .ss-list-option .ss-list-link em {
  display: inline-block;
  margin-top: -2px; }

/*
.nav--account .nav__group li + li {
  margin-left: 0.5rem;
}*/
.nav--account .nav__group .nav__item .nav__link {
  display: flex;
  padding: 0 1rem;
  align-items: center; }
  @media (max-width: 991px) {
    .nav--account .nav__group .nav__item .nav__link {
      padding: 0 0.5rem; } }

.nav--account .nav__group .nav__item .nav__link i {
  font-size: 150%; }
  @media (min-width: 768px) {
    .nav--account .nav__group .nav__item .nav__link i {
      margin-right: 0.5rem; } }

.nav--account .nav__group .nav__item .nav__link i.hh-icon-bag {
  font-size: 175%;
  margin-right: 0; }

.header form.form--search input[type="search"] {
  font-weight: 400;
  line-height: normal;
  border: 3px solid #EAEAEA;
  border-radius: 50px;
  outline: none;
  -webkit-transition: -webkit-box-shadow .15s ease-in-out;
  transition: -webkit-box-shadow .15s ease-in-out;
  -o-transition: box-shadow .15s ease-in-out;
  transition: box-shadow .15s ease-in-out;
  transition: box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  color: rgba(0, 0, 0, 0.5); }
  @media (min-width: 768px) {
    .header form.form--search input[type="search"] {
      min-height: 45px;
      color: #545454 !important; } }

.header form.form--search input[type="search"]:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.25);
  color: #545454; }

.header form.form--search button[type="reset"] {
  position: absolute;
  padding-left: 15px;
  padding-right: 10px;
  top: 50%;
  right: 0;
  height: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(70, 70, 70, 0.75);
  background: none;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  border: none;
  outline: none;
  visibility: hidden;
  cursor: pointer; }

.header form.form--search [type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.header form.form--search button[type="reset"].visible {
  visibility: visible; }

.header form.form--search button[type="reset"] span.icon {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.75);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.header form.form--search .svg-icon {
  position: absolute;
  bottom: 0;
  right: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  z-index: 1; }

.header form.form--search .svg-icon svg {
  max-width: 100%; }

.header form.form--search .svg-icon svg path {
  fill: #FFFFFF; }

.newsletter-iframe {
  width: 100%;
  height: 800px;
  border: 0px; }

#newslettermodal {
  padding: 0px !important; }

.jquery-modal.blocker {
  z-index: 99 !important; }

.modal a.close-modal {
  width: 38px !important;
  height: 38px !important; }

.main-menu-bar {
  color: #fff;
  padding: 1rem 0;
  background-color: #161616; }
  @media (min-width: 768px) {
    .main-menu-bar {
      background-color: #fff;
      color: #161616;
      padding: 2.5rem 0 1.5rem; } }

.main-menu-bar .logo-image img {
  width: auto;
  max-height: 40px;
  height: auto; }
  @media (min-width: 576px) {
    .main-menu-bar .logo-image img {
      max-height: 50px; } }
  @media (min-width: 1200px) {
    .main-menu-bar .logo-image img {
      max-height: 55px; } }

.main-menu-bar a {
  color: inherit; }

.main-menu-bar a:hover {
  color: #d60132; }

.main-menu-bar a.cart-page-link:hover {
  cursor: auto;
  color: inherit; }

.nav.nav__account {
  display: block;
  text-align: right; }

.nav.nav__account ul {
  align-items: center;
  justify-content: flex-end; }

.nav.nav__account li {
  display: flex;
  padding: 0 1em;
  font-size: 15px; }

.nav.nav__account li svg {
  width: 24px;
  height: 24px;
  margin-right: 0.35rem; }

.nav.nav__account li a {
  display: flex;
  align-items: center; }

.nav.nav__account i {
  font-size: 168%;
  margin-right: 0.25em; }

.desktop-nav .site-nav__link {
  font-size: 14px;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  /*font-weight: 500;*/
  font-weight: 600; }

.desktop-rightnav {
  text-align: left; }

.desktop-rightnav .site-nav__link {
  color: #d60132; }

.desktop-nav .site-nav__childlist .site-nav__link {
  font-family: "Gotham Narrow", sans-serif;
  font-weight: 400;
  text-transform: none; }

#shopify-section-mega-menus-main {
  color: #161616; }

.position-static-inside * {
  position: static; }

.position-relative-inside * {
  position: relative; }

.nav--mega-menu {
  overflow-y: hidden; }

.nav--mega-menu ul {
  margin: 0;
  padding: 0;
  position: static; }

.nav--mega-menu li.nav__item {
  display: inline-block;
  padding: 0 0.5rem;
  position: static; }
  @media (max-width: 1199px) {
    .nav--mega-menu li.nav__item {
      padding: 0 0.2rem; } }

.nav--primary .nav__item:hover .nav__link:after {
  width: 100%; }

.nav--primary .nav__link:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: #D50032;
  width: 0;
  height: 4px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.2s width ease-in-out;
  -o-transition: 0.2s width ease-in-out;
  transition: 0.2s width ease-in-out; }

.nav--mega-menu ul li.nav__item:first-child {
  padding-left: 0px; }

.nav--mega-menu ul li.nav__item:last-child {
  padding-right: 0px; }

.nav--mega-menu .nav__link {
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  padding: 1em 0;
  display: block; }

@media (max-width: 1480px) {
  .nav--mega-menu .nav__link {
    font-size: 14px;
    font-family: "Gotham Narrow", sans-serif; } }
.nav--mega-menu.nav--secondary .nav__link {
  color: #d60132;
  padding: 0px;
  max-height: 35px; }

.nav--mega-menu.nav--secondary .nav__link .emoji {
  display: block;
  width: 70px;
  height: 70px;
  font-size: 29px;
  line-height: 68px;
  border-radius: 80px;
  background: #fff;
  text-align: center;
  top: -16px;
  z-index: 40;
  border: 1px solid rgba(0, 0, 0, 0.1); }

.nav--mega-menu.nav--secondary .nav__link:hover .emoji {
  background: #eee; }

.nav--mega-menu.nav--secondary {
  overflow-y: visible; }

.nav--mega-menu li.nav__item:hover a.nav__link + .dropdown__menu {
  display: block; }

.nav--mega-menu .dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f8f8f8;
  z-index: 30;
  padding: 2.5rem 1rem;
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.17);
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.17);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: -5px; }

.nav--mega-menu .dropdown__menu li {
  display: block; }

/* .nav--mega-menu  li.nav__item.dropdown .dropdown__menu:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    background: #000;
    height: 100%;
} */
/** First column **/
.nav--mega-menu .col--highlight-items {
  max-width: 280px;
  width: 20%;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1); }

.nav--mega-menu .col--highlight-items .dropdown__item a {
  color: #161616;
  font-weight: 700;
  font-size: 14px;
  padding: 0.25em 0;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase; }

/** Second column **/
.nav--mega-menu .dropdown__group--primary {
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-fill: balance;
  column-fill: balance;
  -webkit-column-gap: 23px;
  column-gap: 23px; }

.nav--mega-menu .dropdown__group--primary .dropdown__item a, .nav--mega-menu .dropdown__group--custom .dropdown__item a {
  color: #3d3d3d;
  font-size: 15px;
  font-weight: 400;
  font-family: "Gotham Narrow";
  padding: 0.15em 0; }

/** Third Column **/
.nav--mega-menu h4.nav--heading {
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.25);
  margin-bottom: 0.5rem !important; }

.nav--mega-menu .dropdown__group--custom {
  border-left: 3px solid rgba(0, 0, 0, 0.25);
  padding-left: 0.65rem; }

/** Last Column **/
.nav--mega-menu .float-image-wrapper {
  margin: -2.5rem -1rem -2.5rem 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat; }

.nav--mega-menu .float-image {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 20%;
  width: auto;
  min-height: 100%; }

.nav--mega-menu .dropdown__item a:hover {
  color: #d60132; }

.nav__banner img {
  width: 100%; }

/** Mobile Nav **/
.nav-group--mobile {
  padding: 0; }

.nav--account-mobile {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
  margin: 0; }

.nav--account-mobile ul, .nav--account-mobile li {
  display: block;
  padding: 0;
  margin: 0; }

.nav--phoneorder-mobile {
  line-height: 47px;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  padding: 0px 1.65rem;
  font-weight: 600;
  font-size: 16px; }

.nav--phoneorder-mobile svg {
  font-size: 20px;
  display: inline-block;
  width: 34px;
  text-align: center;
  margin-right: 0.85rem; }

.product-single__thumbnails {
  display: block; }

.product-single__thumbnails li {
  display: block;
  width: 80px; }

.product-single__thumbnail-image {
  border-color: rgba(0, 0, 0, 0.06); }

.active-thumb .product-single__thumbnail-image {
  border-color: #d60132; }

/** Mobile Menu **/
#mobilenav-trigger {
  background: transparent;
  color: #fff;
  display: none;
  border: 0px;
  padding: 0;
  width: 40px;
  margin-right: 20px;
  cursor: pointer;
  height: 50px; }

.nav-trigger--primary .hamburger,
.nav-trigger--primary .hamburger:before,
.nav-trigger--primary .hamburger:after {
  position: absolute;
  width: 100%;
  height: 4px;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: #FFFFFF; }

.nav-trigger--primary .hamburger {
  top: 2px;
  margin-top: -2px;
  -webkit-transition: background-color 0s linear .13s;
  -o-transition: background-color 0s linear .13s;
  transition: background-color 0s linear .13s;
  display: block;
  width: 30px;
  margin: auto;
  margin-top: 10px; }

.nav-trigger--primary .hamburger:before,
.nav-trigger--primary .hamburger:after {
  display: block;
  content: ""; }

.nav-trigger--primary .hamburger:before {
  top: 10px;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.nav-trigger--primary .hamburger:after {
  top: 20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.nav-trigger--primary.menu-open .hamburger {
  background-color: transparent !important; }

.nav-trigger--primary.menu-open .hamburger:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -o-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.nav-trigger--primary.menu-open .hamburger:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

#mobile-log-btn {
  background-color: #161616;
  color: #fff;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  padding: 0.4em 1em;
  /*font-weight: 500;*/
  font-weight: 600; }

.nav-group--mobile .nav--secondary-mobile {
  /*border-top: 1px solid rgba(0,0,0,0.2);*/
  padding-top: 0.9rem; }
  .nav-group--mobile .nav--secondary-mobile.footer-menu {
    padding-bottom: 45px; }

.nav-group--mobile .nav--secondary-mobile ul, .nav-group--mobile .nav--social-mobile ul {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0; }

.nav-group--mobile .nav--secondary-mobile ul li {
  display: block;
  padding: 0 0.65rem; }

.nav-group--mobile .nav--social-mobile ul li {
  display: inline-block; }

.social-item__fallback-text {
  display: none; }

.nav-group--mobile .nav--secondary-mobile a.nav__link {
  font-size: 16px;
  padding: 0.5em; }

.nav-group--mobile .nav--social-mobile a.social-item__link {
  font-size: 22px;
  padding: 0.5rem; }

.nav-group--mobile .nav--social-mobile, .nav-group--mobile .copyright {
  margin-top: 1.5rem; }

.nav-group--mobile .mobile-menu-item .collection-icon {
  max-width: 35px;
  margin-right: 0.5rem; }

.nav-group--mobile .mobile-menu-item.secondary-item .collection-icon {
  display: none; }

.nav-group--mobile .mobile-menu-item.secondary-item .emoji {
  font-size: 29px; }

.nav-group--mobile h3 {
  font-family: "Gotham", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  /*font-weight: 500;*/
  font-weight: 600;
  color: #161616; }

.nav.nav--social-mobile {
  padding: 0 1rem;
  text-align: center; }

.mobile-reviews-count {
  text-align: center;
  margin: 1rem auto 1.75rem;
  color: #9d9d9d;
  line-height: 1.35; }

.mobile-reviews-count a, .mobile-reviews-count a:hover {
  color: inherit; }

.mobile-reviews-count .stars svg {
  font-size: 16px;
  color: #ffbb28; }

.mobile-reviews-count .stars-number {
  font-size: 14px;
  display: inline-block;
  margin: 1rem auto 0;
  margin-left: 0.75em;
  padding-left: 0.75em;
  border-left: 1px solid #9d9d9d; }

.mobile-reviews-count .count {
  font-size: 120%;
  color: var(--hh-black);
  font-weight: 800;
  font-family: var(--hh-titlefont); }

.mobile-reviews-count .credit {
  font-size: 13px;
  opacity: 0.8; }

.mobile-sezzle {
  margin: 0.75rem auto 0;
  padding: 0.95rem 0;
  background: #f6f6f6;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
  color: #838383; }
  .mobile-sezzle.viabill {
    margin-top: 0px; }
    .mobile-sezzle.viabill img {
      max-width: 200px;
      margin-bottom: 10px; }

.mobile-sezzle img {
  display: block;
  margin: auto; }

#hh-mobilenav .copyright {
  font-size: 14px;
  padding: 0.5rem 1rem 0.6rem;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  border-top: 1px solid #eee;
  width: 95%;
  max-width: 370px;
  z-index: 99;
  line-height: 1.1; }

#hh-mobilenav .nav-wrap {
  padding-bottom: 85px; }

.mobile-social-group {
  display: block;
  color: #161616; }

.mobile-social-group li {
  display: inline-block; }

.mobile-social-group li .icon {
  width: 22px;
  height: 22px; }

.mobile-social-group li span.social-item__fallback-text {
  display: none; }

.mobile-social-group li + li {
  margin-left: 0.5rem; }

.footer-menu-trio {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50; }

.footer-menu-trio ul {
  display: block;
  margin: 0; }

.footer-menu-trio ul li a {
  display: block;
  text-align: center;
  padding: 1.15rem 0;
  color: #fff;
  font-family: "Gotham Narrow", sans-serif;
  font-weight: 600;
  font-size: 18px; }

.footer-menu-trio ul li a:hover {
  color: #fff; }

.footer-menu-trio ul li {
  width: 33.31%;
  float: left;
  display: block; }

.footer-menu-trio ul li:first-child {
  background-color: #D50032; }

.footer-menu-trio ul li:nth-child(2) {
  background-color: #8F36C2; }

.footer-menu-trio ul li:nth-child(3) {
  background-color: #2777D2; }

#hh-mobilenav {
  position: fixed;
  width: 95%;
  max-width: 370px;
  background: #fff;
  top: 0;
  left: 0;
  display: block;
  left: -100%;
  z-index: -99;
  -webkit-animation: slideLeft 0.5s forwards;
  -webkit-animation-delay: 2s;
  animation: slideLeft 0.5s forwards;
  animation-delay: 2s;
  visibility: hidden;
  opacity: 0;
  pointer-events: none; }

@-webkit-keyframes slideLeft {
  100% {
    left: 0; } }

@keyframes slideLeft {
  100% {
    left: 0; } }

/*================ Index sections ================*/
body.template-index .shopify-section + .collection.colleciton--big {
  border-top: 1px solid #eee; }

#shopify-section-collection-duo-banners {
  padding-bottom: 0; }

#shopify-section-collection-heading.shopify-section {
  padding-bottom: 0; }

.shopify-section {
  padding-top: 15px;
  padding-bottom: 15px; }
  @media (min-width: 768px) {
    .shopify-section {
      padding-top: 25px;
      padding-bottom: 25px; } }
  .shopify-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .shopify-section:last-child {
    padding-bottom: 0; }

/*** HH Slider Group ***/
.hh-slider-grid {
  margin: 0;
  padding: 0; }

.hh-slider-grid .slider__item {
  width: 17.5%;
  display: inline-block;
  padding: 0.65rem;
  /* &:first-child {
    padding-left: 0;
  }
  &:last-child {
   padding-right: 0;
  } */ }

@media (min-width: 768px) {
  .hh-slider-grid.lg-grid-4 .slider__item {
    width: 26.5%; } }

.hh-slider-grid.slider-lg .slider__item {
  padding: 1rem;
  /* &:first-child {
    padding-left: 0;
  }
  &:last-child {
   padding-right: 0;
  } */ }

.hh-slider-grid .slider__item img {
  display: block;
  margin: 0 auto; }

@media (max-width: 1480px) {
  .hh-slider-grid .slider__item {
    width: 20.5%; } }
@media (max-width: 1080px) {
  .hh-slider-grid .slider__item {
    width: 24.5%; } }
@media (max-width: 768px) {
  .hh-slider-grid .slider__item {
    width: 32.5%; } }
@media (max-width: 580px) {
  .hh-slider-grid .slider__item {
    width: 40.5%; } }
.hh-slider-grid img {
  min-width: 77%;
  margin-bottom: 0.5rem; }

.hh-slider-grid.slider-lg img {
  min-width: 100%; }

.hh-slider-grid .product__title {
  font-size: 14px;
  color: #161616;
  font-weight: 400;
  margin-bottom: 0; }

.hh-slider-grid .product__price {
  font-size: 88%;
  /*font-weight: 500;*/
  font-weight: 600;
  color: #161616; }

.hh-slider-grid .img-actions {
  margin-bottom: 8px; }

.hh-slider-grid .img-actions .product__actions {
  display: none !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: -80px;
  transition: margin 0.3s ease-in-out; }

.hh-slider-grid .slider__item:hover .img-actions .product__actions {
  margin-bottom: 0; }

@media (min-width: 992px) {
  .hh-slider-grid .product-item:hover .img-actions .product__actions {
    display: flex !important; } }
.hh-slider-grid .img-actions .product__actions .product__action--qview {
  /* display: none !important; */
  padding-left: 1em;
  padding-right: 1em; }

.product__action--add-to-cart .circle-loader {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left-color: #FFFFFF;
  -webkit-animation: spin360 1.2s infinite linear;
  animation: spin360 1.2s infinite linear;
  position: relative;
  display: none;
  vertical-align: middle;
  border-radius: 50%;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 10px; }

.product__action--add-to-cart .load-complete,
.product__action--add-to-cart .load-error {
  -webkit-animation: none;
  animation: none;
  border-color: #FFFFFF;
  -webkit-transition: border 500ms ease-out;
  -o-transition: border 500ms ease-out;
  transition: border 500ms ease-out; }

button.js-add-to-cart.load-error {
  background-color: #919191; }

.product__action--add-to-cart .checkmark {
  display: none; }

.product__action--add-to-cart .checkmark.draw:after {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: checkmark;
  animation-name: checkmark;
  -webkit-transform: scaleX(-1) rotate(135deg);
  -ms-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg); }

.product__action--add-to-cart .checkmark:after {
  opacity: 1;
  height: 0.65em;
  width: 0.43333em;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  border-right: 1px solid #FFFFFF;
  border-top: 1px solid #FFFFFF;
  content: '';
  left: 0.30236em;
  top: 0.65em;
  position: absolute; }

.product__action--add-to-cart .crossmark {
  display: none;
  padding-top: 20px; }

.product__action--add-to-cart .crossmark:before,
.product__action--add-to-cart .crossmark:after {
  background-color: #FFFFFF;
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%; }

.product__action--add-to-cart .crossmark:before {
  height: 1px;
  width: 0.65em;
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: crossmarkBefore;
  animation-name: crossmarkBefore;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(1);
  transform: translate(-50%, -50%) rotate(45deg) scale(1); }

.product__action--add-to-cart .crossmark:after {
  height: 0.65em;
  width: 1px;
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: crossmarkAfter;
  animation-name: crossmarkAfter;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(1);
  transform: translate(-50%, -50%) rotate(45deg) scale(1); }

.product__action--add-to-cart:hover .circle-loader {
  border: 1px solid rgba(213, 0, 50, 0.2);
  border-left-color: #D50032; }

.product__action--add-to-cart:hover .load-complete,
.product__action--add-to-cart:hover .load-error {
  border-color: #D50032; }

.product__action--add-to-cart:hover .checkmark:after {
  border-right-color: #D50032;
  border-top-color: #D50032; }

.product__action--add-to-cart:hover .crossmark:before,
.product__action--add-to-cart:hover .crossmark:after {
  background-color: #D50032; }

@-webkit-keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1; }

  20% {
    height: 0;
    width: 0.43333em;
    opacity: 1; }

  40% {
    height: 0.65em;
    width: 0.43333em;
    opacity: 1; }

  100% {
    height: 0.65em;
    width: 0.43333em;
    opacity: 1; } }

@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1; }

  20% {
    height: 0;
    width: 0.43333em;
    opacity: 1; }

  40% {
    height: 0.65em;
    width: 0.43333em;
    opacity: 1; }

  100% {
    height: 0.65em;
    width: 0.43333em;
    opacity: 1; } }

@-webkit-keyframes crossmarkBefore {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0); }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
    transform: translate(-50%, -50%) rotate(45deg) scale(1); } }

@keyframes crossmarkBefore {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0); }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
    transform: translate(-50%, -50%) rotate(45deg) scale(1); } }

@-webkit-keyframes crossmarkAfter {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0); }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
    transform: translate(-50%, -50%) rotate(45deg) scale(1); } }

@keyframes crossmarkAfter {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0); }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
    transform: translate(-50%, -50%) rotate(45deg) scale(1); } }

/** Collections Pages **/
/* style SS tags */
.ng-scope[ng-if*="result.ss"] {
  text-transform: uppercase;
  font-family: 'Gotham';
  width: auto !important;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.82;
  line-height: 1.05; }

.ng-scope[ng-if="result.ss_more_colors == 1"], .ng-scope[ng-if="result.ss_queen_sizes == 1"] {
  padding: 0px; }

[ng-if*="result.ss_bestseller == 1"] {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: #000;
  font-weight: 600;
  padding: 0.2em 0.65em 0.26em; }

.ng-scope[ng-if*="result.ss_bestseller == 1"]:before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("https://cdn.shopify.com/s/files/1/1221/0120/files/flame.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
  margin-right: 3px; }

#searchspring-product-recommendations .slick-slider {
  justify-content: center; }

.img-actions .product__actions .col:first-child {
  /* display: none; */ }

#searchspring-content ul.products {
  margin: 0;
  padding: 0; }

#searchspring-content li.product-item {
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid transparent;
  display: block;
  line-height: 1; }
  @media (max-width: 991px) {
    #searchspring-content li.product-item {
      padding: 0.75rem; } }

@media (max-width: 782px) {
  #searchspring-content li.product-item {
    padding: 0.5rem;
    margin-bottom: 0; } }
.reviews_product_score-value:before {
  color: #FFC700;
  content: '';
  display: inline-block; }

.reviews_product_score-5:before {
  content: "\2605\2605\2605\2605\2605"; }

.reviews_product_score-4:before {
  content: "\2605\2605\2605\2605"; }

.reviews_product_score-3:before {
  content: "\2605\2605\2605"; }

.reviews_product_score-2:before {
  content: "\2605\2605"; }

.reviews_product_score-1:before {
  content: "\2605"; }

#searchspring-content li.product-item:hover {
  border: 1px solid rgba(0, 0, 0, 0.15); }

#searchspring-content li.product-item .product .img-actions {
  margin-bottom: 8px; }

#searchspring-content .product__title {
  font-size: 85%;
  font-weight: 400;
  margin-bottom: 0;
  font-family: "Gotham Narrow", sans-serif; }

#searchspring-content .product__price {
  font-size: 85%;
  font-weight: 600;
  color: #161616;
  display: block;
  margin: 0.3em 0px 0px; }

#searchspring-content .product__price .product__amount--regular {
  font-weight: 400;
  opacity: 0.8; }

#searchspring-content .product__highlight {
  font-size: 13px;
  /*font-weight: 500;*/
  font-weight: 600;
  margin: 0px 0 7px;
  text-transform: uppercase; }

#searchspring-content .product__highlight .product__sale {
  background: #ea601c;
  color: #fff;
  padding: 0.25em 0.85em;
  margin-right: 0.4em;
  border-radius: 0.64rem;
  font-size: 90%; }

#searchspring-content .product__highlight .product__discount {
  color: #ea601c;
  font-weight: 600; }

h1.index-h1 {
  color: #161616;
  font-size: 200%; }
  @media (max-width: 991px) {
    h1.index-h1 {
      font-size: 140%; } }

li.product-item .product__new,
li.product-item .product__sale,
li.product-item .product__discount {
  display: block;
  font-family: "Gotham Narrow", sans-serif;
  text-transform: uppercase; }

li.product-item .product__new,
li.product-item .product__sale {
  margin-right: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.38; }

ul.products--sm li.product-item .product__new,
ul.products--sm li.product-item .product__sale {
  font-size: 12px; }

li.product-item .product__new {
  color: #0084ff; }

li.product-item .product__sale {
  background-color: #EA601C;
  color: #FFFFFF;
  padding: 2px 5px;
  text-transform: uppercase; }

ul.products--sm li.product-item .product__sale {
  padding: 2px 5px; }

li.product-item .product__discount {
  color: #EA601C;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.47; }

/*
Mini Cart
*/
.micro-cart .cart-count {
  border-radius: 50px;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  color: #fff;
  background-color: #d60132;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  font-weight: 800;
  margin-left: -9px;
  font-family: "Gotham",sans-serif;
  padding: 0 5px; }

/*
Mini Cart
*/
body.mini-cart-open {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  overflow-y: hidden; }

body.mini-cart-open:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.63);
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0; }

.cart--mini {
  position: fixed;
  left: 100%;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: opacity 0.15s ease-in-out, -webkit-transform 0.45s ease-in-out;
  -o-transition: transform 0.45s ease-in-out, opacity 0.15s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.15s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.15s ease-in-out, -webkit-transform 0.45s ease-in-out;
  z-index: 9999999999;
  background-color: #f8f8f8;
  height: 100%;
  width: 424px;
  max-width: 90%;
  border-left: 1px solid rgba(0, 0, 0, 0.13);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.18); }

.cart--mini--open {
  opacity: 1;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.cart--mini p {
  margin-bottom: 0; }

#btnKeepShopping {
  background-color: #161616; }

.cart--mini .cart__container {
  padding-left: 20px;
  padding-right: 20px; }

.cart--mini .cart__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  flex-wrap: nowrap;
  overflow-y: auto; }

.cart--mini .cart__header {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDDDD; }

.cart--mini .cart__header p.js-shipping {
  color: #161616;
  font-size: 90%; }

.cart--mini .cart__header p.js-shipping .red-highlight {
  color: #d60132;
  font-weight: 600; }

.cart--mini .cart__header p {
  font-size: 15px; }

.cart--mini .cart__close {
  cursor: pointer;
  display: block;
  margin-left: auto;
  position: relative;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  height: 56px;
  width: 56px;
  margin-bottom: -50px;
  margin-right: 40px;
  top: -7px; }

.cart--mini .cart__close:before,
.cart--mini .cart__close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000000;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -ms-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out; }

.cart--mini .cart__close:before {
  width: 3px;
  height: 45%; }

.cart--mini .cart__close:after {
  width: 45%;
  height: 3px; }

body.mini-cart-open .cart--mini .cart__close:before,
body.mini-cart-open .cart--mini .cart__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg); }

.cart--mini .cart__title {
  font-size: 1.28rem;
  margin-bottom: 0px;
  color: #161616;
  font-weight: 600;
  max-width: calc(100% - 50px); }

.cart--mini .cart__body {
  padding-top: 0px;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  overflow: auto;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  background-color: #fff;
  min-height: 150px; }

.cart--mini .cart__body::-webkit-scrollbar {
  display: none; }

.cart--mini .cart__empty {
  display: none; }

.cart--mini .cart__empty p.lead {
  font-size: 150%;
  line-height: 1.2; }

.cart--mini .cart__empty ul {
  padding-left: 20px; }

.cart--mini .cart__empty li {
  margin-bottom: 10px; }

.cart--mini .cart__empty li a {
  color: #D50032;
  text-decoration: none; }

.cart--mini .cart__empty li a:hover {
  opacity: 0.7; }

.cart--mini .cart__item + .cart__item {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.cart--mini .cart__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  font-size: 90%; }

.cart--mini .cart__item:after {
  content: '';
  background-color: #eeeeee;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.cart--mini .cart__item.loading {
  position: relative; }

.cart--mini .cart__item.loading:before {
  position: absolute;
  z-index: 3;
  content: '';
  border: 1px solid rgba(213, 0, 50, 0.2);
  border-left-color: #D50032;
  -webkit-animation: spin360 1.2s infinite linear;
  animation: spin360 1.2s infinite linear;
  top: calc(50% - 20px / 2);
  left: calc(50% - 20px / 2);
  border-radius: 50%;
  width: 20px;
  height: 20px; }

.cart--mini .cart__item.loading:after {
  z-index: 2;
  opacity: 0.85;
  visibility: visible; }

.cart--mini .cart__item .item__thumb {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%; }

.cart--mini .cart__item .item__img {
  display: block;
  width: 100px; }

.cart--mini .cart__item .item__cnt {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px; }

.cart--mini .cart__item .item__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.cart--mini .cart__item .item__title {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  color: #161616;
  line-height: 1.25;
  margin-bottom: 0;
  font-size: 100%;
  /*font-weight: 500;*/
  font-weight: 600;
  margin-top: 0; }

.cart--mini .cart__item .item__link {
  color: inherit;
  text-decoration: none; }

.cart--mini .cart__item .item__remove {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  color: #AAAAAA;
  line-height: 1.2;
  font-size: 16px;
  padding: 5px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
  margin-right: -10px;
  -webkit-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out; }

.cart--mini .cart__item .item__remove:hover {
  color: #000000; }

.cart--mini .cart__item .item__variants {
  margin: 0.2em 0px;
  padding-left: 0; }

.cart--mini .cart__item .item__variant {
  display: inline-block;
  font-size: 90%; }

.cart--mini .cart__item .item__variant:not(:last-child):after {
  display: inline-block;
  content: ', '; }

.cart--mini .cart__item .item__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: center;
  margin-top: auto; }

.cart--mini .cart__item .item__actions {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.cart--mini .cart__item .item__no-more-qty {
  color: rgba(213, 0, 50, 0.85);
  font-size: 90%; }

.cart--mini .cart__item .item__qty {
  margin-right: auto; }

.cart--mini .cart__item .item__qty .increment__label {
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  color: #161616;
  font-size: 11px;
  font-weight: 700;
  display: inline-block; }

.cart--mini .cart__item .item__qty .increment__field {
  /* color: #FFFFFF;
   background-color: $hh-black; */
  border: none;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  font-family: "Gotham", sans-serif;
  font-size: 16px;
  /*font-weight: 500;*/
  font-weight: 600;
  outline: none;
  padding: 0px 10px;
  width: 75px;
  height: 34px; }

.cart--mini .cart__item .item__cost-wrap {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  text-align: right; }

.cart--mini .cart__item .item__price,
.cart--mini .cart__item .item__line-price {
  font-size: 90%; }

.cart--mini .cart__item .item__price-wrapper {
  margin-bottom: 0; }

.cart--mini .cart__item .item__price {
  color: #555555; }

.cart--mini .cart__item .item__line-price-wrapper {
  margin-bottom: 0; }

.cart--mini .cart__item .item__line-price {
  /* border-top: 1px solid #D50032;
  color: #D50032; */
  color: #161616;
  /*font-weight: 500;*/
  font-weight: 600; }

.cart--mini .cart__total {
  background-color: rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: #161616; }

.cart--mini .cart__total-name {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  padding-right: 20px; }

.cart--mini .cart__total-value {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  text-align: right; }

.cart--mini .cart__disclaimer {
  font-family: "Gotham", sans-serif;
  font-size: 13px;
  font-weight: 300; }

.cart--mini .cart__footer {
  padding-top: 20px;
  padding-bottom: 0px; }

.cart--mini .cart__footer .btn {
  width: 100%;
  min-height: 45px; }

.cart--mini--empty .cart__empty {
  display: block; }

.cart--mini i.icon-bin:before {
  font-size: 70%;
  content: "\e90a";
  color: #aaa;
  font-family: 'icomoon' !important;
  /*speak: none;*/
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

/** Collection **/
@media (max-width: 1500px) {
  .collection.collection--landing .container {
    max-width: 100%; } }
.collection-group .collection .row--collection {
  padding-top: 15px;
  padding-bottom: 15px; }

.collection-group .collection__header {
  max-width: 100%; }

.collection-group .collection__title {
  color: #161616;
  font-family: "Gotham Narrow", sans-serif;
  font-weight: 700;
  font-size: 140%;
  line-height: 1.21;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .collection-group .collection__title {
      font-size: 170%;
      padding-right: 0.74em; } }

.collection-group .collection__link {
  color: #161616;
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out; }

.collection-group .collection__link:hover {
  opacity: 0.85;
  color: #d60132; }

.collection-group .collection:not(:last-child) .row--collection {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

/*** Pagination ***/
/** Icon fix 3.0 **/
.pagination i.icon-angle-arrow-right:before {
  content: "\e90f";
  font-family: 'icomoon' !important;
  /*speak: none;*/
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

.pagination i.icon-angle-arrow-left:before {
  content: "\e90e";
  font-family: 'icomoon' !important;
  /*speak: none;*/
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  clear: both; }

.pagination a {
  text-decoration: none; }

.pagination__btn[disabled] {
  cursor: not-allowed; }

.pagination__btn:not([disabled]):hover {
  opacity: 0.85; }

.pagination--full {
  padding-top: 60px;
  padding-bottom: 35px; }
  @media (max-width: 991px) {
    .pagination--full {
      padding-top: 20px;
      padding-bottom: 20px; } }

.pagination--full .pagination__btn {
  background-color: #111111;
  border: none;
  outline: none;
  border-radius: 50%;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.2s opacity ease-in-out;
  -o-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  height: 25px;
  width: 25px; }

.pagination--full .pagination__btn--prev {
  margin-right: 10px; }

.pagination--full .pagination__btn--next {
  margin-left: 10px; }

.pagination--full .pagination__btn i {
  font-size: 10px; }

.pagination--full .pagination__btn[disabled] {
  background-color: #C6C6C6; }

.pagination--full .pagination__page {
  color: #161616;
  font-family: "Gotham", sans-serif;
  border-bottom: 1px solid transparent;
  font-weight: 600;
  padding: 0 0.8em;
  -webkit-transition: 0.15s border-color ease-in-out;
  -o-transition: 0.15s border-color ease-in-out;
  transition: 0.15s border-color ease-in-out; }
  @media (max-width: 991px) {
    .pagination--full .pagination__page {
      padding: 0 0.2em;
      font-size: 87%;
      /*font-weight: 500;*/
      font-weight: 600; } }

.pagination--full .pagination__page--current {
  border-color: #000000; }

.pagination--full .pagination__page:not(.pagination__page--current):hover {
  border-color: #000000; }

.pagination--mini {
  clear: both;
  display: flex; }

body.template-collection .pagination--mini {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  top: 15px; }

.pagination--mini .pagination__pages {
  color: #686868;
  font-weight: 400;
  font-size: 83%;
  padding: 0;
  /*font-weight: 500;*/
  font-weight: 600;
  margin-right: 0.5rem; }

.pagination--mini .pagination__btn {
  background: none;
  border: none;
  outline: none;
  color: #161616;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 6px;
  font-size: 90%; }

.pagination--mini .pagination__btn[disabled] {
  opacity: 0.4; }

/**
* Custom Checkbox
/
/* Customize the label (the container) */
.form-check {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked */
  /* Show the checkmark when checked */ }

.form-check label {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

.form-check .checkmark {
  display: inline-block;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  height: 15px;
  width: 15px;
  margin-right: 8px;
  border: 2px solid #000000;
  position: relative;
  /* Create the checkmark/indicator (hidden when not checked) */ }

.form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  /* Style the checkmark/indicator */
  left: 9px;
  left: calc(50% - 4px);
  top: calc(50% - 1px);
  width: 5px;
  height: 8px;
  border: solid #000000;
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%); }

.form-check:hover input ~ .checkmark {
  background-color: #f8f8f8; }

.form-check input:checked ~ .checkmark:after {
  display: block; }

/** From Previous **/
.form__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px; }

.form__row > .col,
.form__row > [class*=col-] {
  padding-left: 8px;
  padding-right: 8px; }

.form-control,
.form__control {
  display: block;
  width: 100%; }

.custom-select {
  position: relative;
  /* Style the arrow inside the select element: */ }

.custom-select--sort-by {
  width: 190px;
  max-width: 100%;
  padding: 0px;
  text-align: left; }

.custom-select__select,
.custom-select .single-option-selector {
  display: none;
  /*hide original SELECT element: */ }

.custom-select svg {
  position: absolute;
  z-index: 1;
  content: "";
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.custom-select--active {
  /* Point the arrow upwards when the select box is open (active): */ }

.custom-select--active svg {
  -webkit-transform: translateY(-50%) rotateX(180deg);
  transform: translateY(-50%) rotateX(180deg); }

.custom-select--sort-by {
  background-color: #FFFFFF;
  float: right; }

.custom-select--sort-by:after {
  clear: both;
  content: "";
  display: table; }

.select-selected {
  background-color: transparent;
  position: relative;
  z-index: 2; }

.select-selected:after {
  content: '';
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 4px;
  position: absolute;
  right: 12px;
  top: calc(50% - 4px);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.02s ease-in-out;
  -o-transition: all 0.02s ease-in-out;
  transition: all 0.02s ease-in-out; }

.select-selected.select-arrow-active:after {
  border-width: 1.5px 0 0 1.5px;
  top: 50%; }

h1.page-title {
  color: var(--hh-black);
  font-size: 2rem; }
  @media (max-width: 767px) {
    h1.page-title {
      font-size: 1.8rem; } }

@media (min-width: 768px) {
  h1.page-title.larger {
    font-size: 3rem; } }

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #161616;
  padding: 9px 35px 9px 12px;
  cursor: pointer;
  /*font-weight: 500;*/
  font-weight: 600;
  font-size: 15px;
  background: #fff; }

.select-selected {
  border: 2px solid #000000; }

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #FFFFFF;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 2px solid #000000;
  border-top-width: 0;
  -webkit-transition: 0.25s opacity ease-in-out, 0.35s -webkit-transform ease-in-out;
  transition: 0.25s opacity ease-in-out, 0.35s -webkit-transform ease-in-out;
  -o-transition: 0.35s transform ease-in-out, 0.25s opacity ease-in-out;
  transition: 0.35s transform ease-in-out, 0.25s opacity ease-in-out;
  transition: 0.35s transform ease-in-out, 0.25s opacity ease-in-out, 0.35s -webkit-transform ease-in-out;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center; }

/* Hide the items when the select box is closed: */
.select-hide {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0; }

.select-items div:hover,
.same-as-selected {
  background-color: rgba(213, 0, 50, 0.1); }

/** Footer **/
body.template-index #shopify-section-footer {
  margin-top: 0; }

#shopify-section-footer {
  background: #161616;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.965rem;
  margin-top: 4rem;
  padding: 3rem 0; }

#shopify-section-footer a {
  color: inherit; }

#shopify-section-footer a:hover {
  color: #fff; }

#shopify-section-footer .newsletter {
  margin-bottom: 2.5rem; }

.eBSJSn.eBSJSn.eBSJSn.eBSJSn.eBSJSn.eBSJSn {
  font-family: "Gotham", sans-serif !important;
  font-size: 12px  !important;
  text-transform: uppercase;
  max-width: 120px;
  line-height: 16px !important; }

.qYFrN.qYFrN {
  padding-top: 0px !important; }

.fxfLWS.fxfLWS.fxfLWS.fxfLWS.fxfLWS.fxfLWS .ql-editor span {
  font-family: "Gotham Narrow", sans-serif;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px !important; }

.kiiqgw.kiiqgw.kiiqgw.kiiqgw.kiiqgw.kiiqgw {
  font-size: 15px !important;
  font-family: var(--hh-bodyfont) !important; }

.Row__FormRow-sc-17nghml-0:first-of-type .fxfLWS.fxfLWS.fxfLWS.fxfLWS.fxfLWS.fxfLWS .ql-editor span {
  text-transform: uppercase !important;
  font-size: 18px !important;
  font-weight: 600;
  color: #fff !important;
  font-family: "Gotham Narrow", sans-serif !important; }

#shopify-section-footer .nav__title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  /*font-weight: 500;*/
  font-weight: 600; }

#shopify-section-footer .newsletter .klaviyo-form .Row__FormRow-sc-17nghml-0:first-child .ql-editor span {
  font-family: "Gotham Narrow", sans-serif !important;
  font-size: 17px !important;
  /*font-weight: 500;*/
  font-weight: 600;
  text-transform: uppercase !important;
  color: #fff !important;
  padding-left: 0px  !important; }

#shopify-section-footer .newsletter .klaviyo-form .ql-editor span {
  font-family: "Gotham Narrow", sans-serif !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding-left: 0px !important; }

.kwGIvD.kwGIvD {
  padding-left: 0px !important; }

#shopify-section-footer .nav__group {
  margin: 0;
  padding: 0; }

#shopify-section-footer .nav__group .nav__item {
  display: block;
  padding: 0.35rem 0;
  line-height: 1.2; }

#shopify-section-footer .social-group {
  display: block;
  margin-left: 0;
  padding-left: 0; }

#shopify-section-footer .social-group li {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  text-align: center;
  line-height: 27px;
  background: #fff;
  color: #d60132;
  margin-bottom: 4px; }

#shopify-section-footer .social-group li svg.icon {
  width: 16px;
  height: 16px; }

#shopify-section-footer .social-group li:hover svg.icon {
  fill: #fff; }

#shopify-section-footer .social-group li .social-item__fallback-text {
  display: none; }

#shopify-section-footer .social-group li:hover {
  background: #d60132;
  color: #fff; }

#shopify-section-footer .copyright {
  text-align: center;
  margin: 1rem auto 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

#shopify-section-footer .logo-txt__title {
  font-weight: 400;
  font-size: 90%; }

#shopify-section-footer .logo-txt__logo {
  max-width: 40px !important; }

.footer-sezzle-banner {
  width: 90%;
  display: block;
  max-width: 170px;
  margin-bottom: .3rem !important; }

.sezzle-footer-text {
  text-transform: uppercase;
  color: #fff;
  font-size: 9px;
  margin-bottom: 1rem; }

#shopify-section-footer #y-badges .y-badge {
  height: auto;
  margin: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem; }

#shopify-section-footer .yotpo div {
  font-family: "Gotham Narrow", sans-serif; }

#shopify-section-footer #y-badges .y-badge-reviews,
#shopify-section-footer #y-badges .y-badge-stars,
#shopify-section-footer #y-badges .y-badges-certified,
#shopify-section-footer #y-badges .y-powered-by {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: block;
  text-align: left;
  clear: both; }

#shopify-section-footer #y-badges .y-badge-reviews {
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600; }

#shopify-section-footer #y-badges .y-badges-certified {
  display: none; }

#shopify-section-footer #y-badges .y-powered-by {
  margin-top: 0.25rem; }

#shopify-section-footer #y-badges .y-badge-image {
  display: none; }

#hide_fc_widget {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -6px;
  margin-top: -11px;
  font-size: 20px;
  text-align: center;
  line-height: 23px;
  color: #bebebe;
  background: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  border: 2px solid #fff; }
  @media (max-width: 767px) {
    #hide_fc_widget {
      display: none; } }
  #hide_fc_widget #hide_fc_widget:hover {
    color: #161616; }

#shopify-section-footer #y-badges .y-badge-reviews,
#shopify-section-footer #y-badges .y-badge-stars,
#shopify-section-footer #y-badges .y-badges-certified,
#shopify-section-footer #y-badges .y-powered-by {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: block;
  text-align: left;
  clear: both; }

#shopify-section-footer #y-badges .y-badge-reviews {
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600; }

#shopify-section-footer #y-badges .y-badges-certified {
  display: none; }

#shopify-section-footer #y-badges .y-powered-by {
  margin-top: 0.25rem; }

#shopify-section-footer #y-badges .y-badge-image {
  display: none; }

#custom_fc_button.shift-up {
  bottom: 158px; }

#custom_fc_button .mini-openphone {
  text-align: center;
  display: block;
  display: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 13px;
  padding: 5px 0px 7px;
  margin-bottom: 5px; }
  @media (max-width: 767px) {
    #custom_fc_button .mini-openphone {
      display: block; } }

#custom_fc_button {
  position: fixed;
  bottom: 65px;
  width: 66px;
  right: 10px;
  display: none;
  transition: all 0.3s linear;
  z-index: 10; }
  @media (max-width: 767px) {
    #custom_fc_button {
      bottom: 65px;
      width: 28px;
      right: 0;
      background: var(--hh-red);
      border-radius: 5px 0px 0px 5px; } }

#custom_fc_button picture {
  max-width: 100%; }

#custom_fc_button #open_fc_widget {
  display: block;
  width: 100%;
  z-index: 1; }

#fc_frame {
  display: none; }

#hide_fc_widget {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -6px;
  margin-top: -11px;
  font-size: 20px;
  text-align: center;
  line-height: 23px;
  color: #bebebe;
  background: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  border: 2px solid #fff;
  z-index: 2; }
  @media (max-width: 767px) {
    #hide_fc_widget {
      display: none; } }
  #hide_fc_widget #hide_fc_widget:hover {
    color: #161616; }

.footer-lc-link {
  font-size: 110%;
  color: #fff;
  /*font-weight: 500;*/
  font-weight: 600;
  display: block;
  opacity: 0.8;
  cursor: pointer; }

.footer-lc-link i {
  opacity: 0.7;
  font-size: 140%; }

.footer-lc-link:hover {
  opacity: 1; }

.footer-call-number {
  font-size: 115%;
  color: #fff;
  line-height: 1.35;
  /*font-weight: 500;*/
  font-weight: 600;
  margin: 0.6rem auto 1.2rem; }

.footer-call-number a {
  opacity: 0.8; }

.footer-call-number a:hover {
  opacity: 1; }

.footer-call-number .special-hours {
  font-size: 80%;
  opacity: 0.7; }

.footer-call-number span {
  display: block;
  font-size: 80%;
  opacity: 0.6;
  margin: 0 0.2rem; }

/** Blog Page **/
.article__meta {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7); }

/** Breadcrumbs **/
.nav--breadcrumb {
  margin: 0 0 0.74rem;
  font-family: "Gotham Narrow", sans-serif;
  line-height: 1.1;
  font-size: 13px;
  /*font-weight: 500;*/
  font-weight: 600;
  color: #606060;
  opacity: 0.7; }
  @media (max-width: 991px) {
    .nav--breadcrumb {
      margin-top: 0rem;
      justify-content: center;
      text-align: center; } }

.nav--breadcrumb a {
  display: inline-block; }

.nav__seperator {
  display: inline-block;
  padding: 0px 5px 0px 2px;
  font-weight: 300;
  opacity: 0.6; }

.nav--breadcrumb .nav__item, .nav--breadcrumb .nav__seperator {
  -webkit-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out; }

/** Quick Shop **/
.quick-shop {
  display: none;
  width: 80%; }

#quick-shop .product__details {
  padding-left: 40px; }

#quick-shop .product .product-add .product__action--add-to-cart,
#quick-shop
.product .product-add .product__action--view-full {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 15px; }

#quick-shop .product .product-add .notify-pdt-availability {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13; }

/** Common Section Styles **/
.grid__caption {
  min-height: 220px;
  background: rgba(0, 0, 0, 0.07);
  padding: 0.75rem; }
  @media (max-width: 991px) {
    .grid__caption {
      min-height: 156px; } }

.cta__title {
  font-size: 180%;
  color: #161616; }
  @media (max-width: 991px) {
    .cta__title {
      font-size: 150%; } }

.cta__title.smaller {
  font-size: 140%; }

.cta__description {
  font-size: 96%;
  line-height: 1.45; }
  @media (max-width: 991px) {
    .cta__description {
      font-size: 90%; } }

.cta__subtitle {
  opacity: 0.55;
  font-family: "Gotham", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.78;
  margin-bottom: 0;
  text-transform: uppercase; }

.cta__description a {
  color: inherit;
  border-bottom: 1px solid; }

.cta__media.height-medium {
  min-height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out; }

.cta-item:hover .cta__media {
  opacity: 0.8; }

@media (max-width: 768px) {
  .cta__media.height-medium + .cta__content {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 0.75rem; }

  .cta__media.height-medium + .cta__content .cta__description {
    font-size: 150%;
    color: #fff;
    border: 0px; }

  body.template-index section[data-section-type="collection-group"] {
    border-top: 1px solid rgba(105, 105, 105, 0.08);
    padding-top: 15px; } }
.yotpo .socialize div[data-network="linkedin"] {
  display: none; }

.yotpo-reviews-carousel {
  width: 90%;
  margin: auto;
  padding: 3rem 0; }
  .yotpo-reviews-carousel .carousel-display-wrapper {
    padding-left: 0px !important;
    padding-right: 0px !important; }

.yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .carousel-arrows {
  z-index: 5; }

/** Flickity Slider **/
[data-flickity*=""] {
  visibility: hidden; }

.flickity-page-dots {
  display: none; }

.flickity-prev-next-button.previous {
  left: -20px; }

.flickity-prev-next-button.next {
  right: -20px; }

.flickity-prev-next-button {
  height: 25px !important;
  width: 25px !important; }

.flickity-prev-next-button:hover {
  opacity: 1;
  background: inherit; }

@media (max-width: 700px) {
  .flickity-slider .small--one-half {
    width: 40%; } }
.icon__fallback-text {
  display: none; }

.hide-on-mobile {
  display: block; }
  @media (max-width: 991px) {
    .hide-on-mobile {
      display: none; } }

.show-on-mobile {
  display: none; }
  @media (max-width: 991px) {
    .show-on-mobile {
      display: block; } }

.atc-state {
  width: 70vw;
  margin-left: 15vw;
  margin-right: 15vw;
  position: fixed;
  top: 0;
  z-index: 999;
  display: none; }

.atc-state.atc-state--error {
  display: block;
  padding: 1rem;
  border: 0px;
  background: #ad2222;
  color: #fff;
  border-radius: 0.35rem;
  margin: 1rem 15vw;
  text-align: center; }

.atc-state.atc-state--success {
  display: block;
  padding: 1rem;
  border: 1px solid #aaa;
  background: #eee;
  color: #000;
  border-radius: 0.35rem;
  margin: 1rem 15vw;
  text-align: center; }

.atc-state .atc-state__desc {
  font-size: 95%;
  margin-bottom: 0px; }

/********** RESPONSIVE STYLES **************/
@media (max-width: 992px) {
  body.showing-mobilenav {
    overflow-y: hidden;
    position: fixed; }

  body.showing-mobilenav #PageContainer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: block; }

  #shopify-section-header {
    z-index: 99; }

  .top-announcement-bar {
    background: #d60132;
    text-align: center;
    color: #fff;
    font-weight: 600;
    padding: 0.45rem 0; }

  .main-menu-bar {
    background: #161616;
    color: #fff;
    padding: 1rem 0; }

  .main-menu-bar a {
    color: #fff; }

  .main-menu-bar a:hover {
    color: #d60132; }

  .bottom-bar__container {
    display: none; }

  #mobilenav-trigger {
    color: #fff;
    display: inline-block;
    margin-right: 10px; }

  #hh-mobilenav.showing {
    z-index: 9999;
    height: calc(100vh - 105px);
    top: 105px;
    -webkit-box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.4);
    overflow-y: scroll;
    visibility: visible;
    opacity: 1;
    pointer-events: auto; }

  #hh-mobilenav .mobile-menu-item {
    display: block;
    width: 100%; }

  #hh-mobilenav .menu-label.level-1 {
    font-size: 16px;
    /*font-weight: 500;*/
    font-weight: 600;
    display: block;
    padding: 0 1rem;
    line-height: 47px;
    font-family: "Gotham", sans-serif;
    text-transform: uppercase;
    position: relative;
    color: #161616; }

  #hh-mobilenav .menu-label.level-1 * {
    vertical-align: middle; }

  /* #hh-mobilenav .menu-label.level-1.active {
    color: $hh-black;
  } */
  #hh-mobilenav .menu-label.level-1 .status {
    float: right;
    font-size: 23px;
    pointer-events: none;
    opacity: 0.32;
    width: 15px;
    font-weight: 400;
    text-align: center; }

  #hh-mobilenav .slide-item:last-child {
    display: none; }

  #hh-mobilenav .mobile-flickslider {
    width: 100%;
    background: #fff; }

  #hh-mobilenav .flickity-button.flickity-prev-next-button {
    display: none !important; }

  #hh-mobilenav .flickity-viewport {
    min-height: 120px; }

  #hh-mobilenav .childlist .slide-item {
    width: 29.5%;
    align-items: center;
    justify-items: center;
    padding: 5px;
    display: block; }

  #hh-mobilenav .collection__media-wrapper {
    width: 100%;
    margin: auto;
    display: block;
    border-radius: 100px;
    z-index: 1; }

  #hh-mobilenav .collection__media-wrapper img {
    display: block;
    margin: auto;
    max-width: 100%;
    border-radius: 100px;
    width: 80px; }

  #hh-mobilenav .collection__hidden-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 95%;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2; }

  #hh-mobilenav .collection__title {
    display: block;
    font-size: 14px;
    /*font-weight: 500;*/
    font-weight: 600;
    color: #161616;
    line-height: 1.15;
    font-family: "Gotham Narrow", sans-serif;
    width: 95%;
    margin: 2px auto 0;
    z-index: 3;
    text-transform: none; }

  #hh-mobilenav .collection__title .collection__link {
    font-weight: inherit; }

  @-webkit-keyframes fadeShow {
    0% {
      opacity: .5;
      -webkit-transform: translateY(100px); }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0%); } }

  @-webkit-keyframes fadeHide {
    0% {
      opacity: 1;
      -webkit-transform: translateY(0%); }

    100% {
      opacity: .5;
      -webkit-transform: translateY(100px); } }

  #hh-mobilenav .mobile-flickslider {
    z-index: -99;
    position: fixed;
    visibility: hidden;
    max-height: 0;
    /* transition: max-height 0.15s ease-out; */
    overflow: hidden; }

  #hh-mobilenav .mobile-flickslider.revealed {
    z-index: 1;
    position: relative;
    visibility: visible;
    -webkit-box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.22), inset 0 -5px 5px -5px rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.22), inset 0 -5px 5px -5px rgba(0, 0, 0, 0.22);
    background-color: #EBEBEB;
    padding: 0.6rem 0;
    max-height: 500px;
    /* transition: max-height 0.55s ease-in-out; */ }

  .container.container-md-fluid {
    max-width: none;
    width: 100%;
    padding: 0; } }
@media (max-width: 767px) {
  .header form.form--search {
    width: 28px; }

  .header form.form--search input[type="search"] {
    color: #FFFFFF !important;
    height: 80%;
    width: 0;
    border: 0;
    border-radius: 0;
    position: absolute;
    opacity: 0;
    top: 50%;
    padding-right: 14px;
    padding-left: 14px;
    right: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
    z-index: 2;
    margin-right: 15px; }

  .header form.form--search input[type="search"]:focus {
    opacity: 1;
    width: calc(100% - 55px);
    background-color: #000000;
    border-bottom: 1px solid #FFFFFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: text;
    min-height: 45px;
    left: -5px; }

  .header form.form--search button[type="reset"] {
    right: 58px;
    z-index: 2; }

  #togsearch {
    float: right;
    font-size: 140%;
    display: block; }

  #fc_frame.fc-widget-normal {
    margin-bottom: 45px !important; }

  #fc_frame.fc-widget-normal.fc-open {
    margin-bottom: 0px !important; }

  #shopify-section-header .container {
    padding-left: 8px;
    padding-right: 8px; }

  .main-menu-bar .header-searchwrapper {
    display: none;
    position: absolute;
    top: 100%;
    padding: 10px 15px; }

  .main-menu-bar .header-searchwrapper.showing {
    display: block; }

  .main-menu-bar .header-searchwrapper input#Search-header {
    border-color: #161616;
    border-radius: 0; }

  /* .main-menu-bar .nav__item--search {
    display: none !important;
  } */
  .hh-slider-leftside {
    max-width: 100%; }

  .hh-slider-leftside .section-header h2 {
    font-size: 1.5rem; }

  .hh-slider-leftside .section-header .hh-slider-shopall {
    display: none; }

  .footer-menu-trio {
    display: block; }

  .grid--blog-item {
    width: 100%;
    float: none !important;
    clear: both !important; }

  .grid--blog-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-left: 2px solid #d60132;
    width: 0px; } }
@media (max-width: 576px) {
  .flickity-button.flickity-prev-next-button {
    display: none; } }
@media screen and (max-width: 500px) {
  .header .form--search button[type="reset"], .header .form--search button[type="reset"].visible {
    /** looks like duplicate x icon **/ } }
/*
--------------------------------------------------------------------------------------------------------------------
BOLD CSS:
--------------------------------------------------------------------------------------------------------------------
*/
.bold-modal__window_content {
  position: static; }

.bold-product__actions {
  background-color: transparent;
  border: 1px solid #d50032;
  color: #ffffff;
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font: bold 18px "Gotham", sans-serif;
  text-transform: uppercase;
  padding: 12px 10px;
  width: 175px;
  cursor: pointer;
  display: inline-block;
  height: auto;
  -webkit-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out; }

.bold-product__actions:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background-color: #d50032;
  -webkit-transition: opacity 0.25s ease-in-out, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.25s ease-in-out, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: opacity 0.25s ease-in-out, transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.25s ease-in-out, transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.25s ease-in-out, transform 0.3s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  z-index: -1; }

.bold-product__actions:hover:not([disabled]) {
  color: #d50032; }

.bold-product__actions:hover:not([disabled]):after {
  opacity: 0; }

.bold-product-review {
  margin-bottom: 9px !important; }

.bold-product__title {
  line-height: 1.2; }

.bold-product__actions:not([disabled]):hover:after {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

.bold-product__actions .bold-product__control {
  padding: 0;
  display: inline-block;
  border: none; }

.bold-upsell__intro-heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.75rem; }

.bold-upsell__intro-content {
  text-align: center;
  margin-bottom: 2rem; }

.bold-modal__window {
  padding-bottom: 0px; }

.bold-modal__footer {
  display: none; }

.bold-modal__slider {
  height: 100%; }

.bold-product__price {
  margin-right: .5rem; }

.bold-product-review {
  min-height: 33px;
  margin-top: 9px; }

.bold-grid__column--third .bold-product__actions {
  padding: 12px 20px; }

@media screen and (max-width: 767px) {
  #bold-modal__window {
    height: calc(100% - 40px);
    padding: 20px !important; }
    #bold-modal__window #bold-modal__content {
      height: auto; }
      #bold-modal__window #bold-modal__content .bold-upsell__triger-product-container .bold-product__info .bold-product__title {
        max-height: none; }
      #bold-modal__window #bold-modal__content .bold-modal__slider {
        height: auto; }
      #bold-modal__window #bold-modal__content .bold-grid__column--third {
        padding-bottom: 30px; }
      #bold-modal__window #bold-modal__content .bold-product__quantity-field, #bold-modal__window #bold-modal__content .bold-product__variant-selector {
        height: 30px; }
      #bold-modal__window #bold-modal__content .bold-product-review {
        margin-bottom: 0 !important; }
        #bold-modal__window #bold-modal__content .bold-product-review .yotpo {
          margin-bottom: 0px; }
          #bold-modal__window #bold-modal__content .bold-product-review .yotpo .yotpo-bottomline {
            margin-bottom: 9px; } }
.text-m {
  display: inline-block !important; }

.bold-product__info, .bold-product__variants, .bold-product__actions {
  margin-top: 0px; }

.variant_info_container {
  max-width: 62%;
  display: table;
  margin: 0 auto; }

.variant_info_container + .qty_container {
  width: 35%;
  display: inline-block; }

select.bold-product__variant-selector {
  padding: 5px 5px;
  padding-right: 30px; }

.bold-modal__window {
  padding-bottom: 0px !important; }

.bold-product__actions:hover:not([disabled]), .bold-product__actions.added:not([disabled]) {
  color: #d50032; }

.bold-product__actions:hover:not([disabled]):after {
  opacity: 0; }

.bold-product__actions:not([disabled]):hover:after, .bold-product__actions.added:not([disabled]):after {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

/*
--------------------------------------------------------------------------------------------------------------------
END BOLD CSS
--------------------------------------------------------------------------------------------------------------------
*/
@media screen and (max-width: 320px) {
  .nav--account .nav__group {
    padding-left: 25px; } }
#hh-mobilenav .carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll; }

#hh-mobilenav .carousel .collection-item {
  min-width: 100px; }
  #hh-mobilenav .carousel .collection-item:last-child {
    display: block; }

.nav--account .nav__group .ss-title {
  padding-left: 5px !important; }
.nav--account .nav__group .ss-list li {
  display: block !important;
  padding-left: 5px !important; }
  .nav--account .nav__group .ss-list li a {
    display: flex !important; }

.sezzle-shopify-info-button {
  max-width: 375px; }

@media screen and (min-width: 768px) {
  .cart-totals .sezzle-shopify-info-button {
    margin-left: auto !important; } }
#shopify-section-footer {
  font-style: normal; }

.store-title {
  margin-top: 2rem;
  margin-bottom: 1.5rem; }

@media screen and (min-width: 992px) {
  header.header .form--search button[type=reset] {
    color: #aaa; } }
@media screen and (min-width: 541px) {
  .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-1 {
    height: 100px; } }
.yotpo .yotpo-regular-box, .yotpo .yotpo-small-box {
  padding-top: 10px !important; }

.yotpo.yotpo-main-widget .yotpo-icon-btn, .yotpo .yotpo-modal-dialog .yotpo-icon-btn {
  position: static; }

.yotpo .write-review .socialize-wrapper {
  z-index: 1; }

.ar-quicklook-overlay {
  position: absolute;
  width: 100%;
  height: calc(100% - 48px);
  top: 0;
  z-index: 20; }

@media screen and (min-width: 993px) and (max-width: 1220px) {
  .nav--account .nav__group .nav__item .nav__link {
    padding: 0 .5rem; } }
@media screen and (min-width: 993px) and (max-width: 1020px) {
  .nav--account .nav__group .nav__item .nav__link {
    padding: 0 .25rem; } }
.rewards-text {
  color: #d60132;
  text-transform: uppercase;
  font-size: 12px;
  text-align: left;
  font-weight: 700; }

@media screen and (max-width: 767px) {
  .product__details .rewards-text {
    text-align: center; } }
.breadcrumbs .spacer {
  margin-right: .25rem; }

.products.slider--equal-height .slider__item .responsive-image__wrapper img {
  max-height: 287px !important;
  width: 77%; }

.ss-results .ss-products .product-item .responsive-image__wrapper .responsive-image__image {
  min-width: 150px; }

@media screen and (max-width: 320px) {
  .ss-results .ss-products .product-item .responsive-image__wrapper .responsive-image__image {
    min-width: 125px; } }
.read-morelink.small {
  font-size: 12px; }

.read-morelink {
  font-family: "Gotham", sans-serif;
  color: #d60132;
  text-transform: uppercase;
  font-size: 14px;
  /*font-weight: 500;*/
  font-weight: 600;
  z-index: 2;
  cursor: pointer; }

.lined-header {
  font-family: "Gotham", sans-serif;
  color: #c1c1c1;
  text-transform: uppercase;
  display: flex;
  font-size: 1.1rem; }

.lined-header:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 0px;
  margin-top: 0.75em;
  border-top: 2px solid rgba(0, 0, 0, 0.2); }

.lined-header span {
  background: #fff;
  padding: 0 10px 0px 0px;
  /*font-weight: 500;*/
  font-weight: 600;
  letter-spacing: 0.04em; }

.brand-section .brand__title {
  font-size: 120%;
  color: #161616;
  max-height: 95px; }

.brand-section .brand__desc {
  font-size: 90%;
  line-height: 1.45; }

.brand-section .brand__img img {
  max-width: 263px;
  width: auto;
  height: auto;
  max-height: 62px;
  display: block;
  margin-bottom: 0.75rem; }
  @media (max-width: 767px) {
    .brand-section .brand__img img {
      margin-left: auto;
      margin-right: auto; } }

@media (max-width: 767px) {
  .brand-section .brand__item {
    border: 1px solid rgba(0, 0, 0, 0.12); } }

#cookie-check {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  padding: 1.5rem 0px;
  transform: translateY(0px);
  transition: transform 300ms ease 0s;
  display: none;
  font-size: 95%;
  z-index: 75; }
  @media (max-width: 767px) {
    #cookie-check {
      font-size: 88%;
      line-height: 1.3; } }

#cookie-check p a:not(.btn) {
  text-decoration: underline; }

#cookie-check .btn {
  background: #fff;
  color: #000;
  font-size: 13px; }

#cookie-check .btn:hover {
  background: #d60132;
  color: #fff; }

button.needsclick.DismissButton__closeButtonImage-spg526-0 {
  padding: 20px;
  margin-top: -15px;
  margin-right: -15px; }

.fastcheckoutlabel {
  font-size: 12px;
  text-align: center;
  display: flex;
  width: 100%;
  text-transform: uppercase;
  align-items: center; }

.fastcheckoutlabel span {
  height: 0px;
  margin: 5px;
  flex-grow: 1;
  border-bottom: 1px solid #e2e2e2; }

@media screen and (max-width: 767px) {
  .form--search [ss-autocomplete] {
    left: -16px; }
    .form--search [ss-autocomplete] .ss-ac-container {
      margin: 0; } }
.route-widget {
  display: flex !important; }

/** --- Modal Style Fixes--- */
@media (max-width: 767px) {
  .jquery-modal.blocker {
    padding: 10px; } }

.route-modal .route-modal-box {
  max-height: 100vh; }

/** Fix **/
@media screen and (min-width: 1024px) {
  .route-modal.rm-open {
    display: block; } }
#miniCart .cart__footer {
  padding-bottom: 20px; }

#miniCart .cart__footer .dynamic-checkout__content iframe[title="Checkout with PayPal"] {
  display: none !important; }

#miniCart .cart__footer .dynamic-checkout__content .shopify-cleanslate [data-testid="grid-cell"] {
  height: fit-content !important;
  flex-basis: 100% !important; }
  #miniCart .cart__footer .dynamic-checkout__content .shopify-cleanslate [data-testid="grid-cell"] [data-testid="ApplePay-button"] {
    height: 45px !important; }

@media screen and (max-width: 767px) {
  .cart-form .cart-final-row .dynamic-checkout__content {
    max-width: 300px;
    margin: auto; }

  #miniCart .cart__footer {
    padding-bottom: 30px; } }
/* LookBook CSS */
.evm_tag_view span.plus_icon {
  z-index: 9; }

body .evm-list {
  position: unset !important; }
