/*
 *  Remodal - v1.0.4
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/*
 *  Remodal - v1.0.4
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation: remodal-overlay-opening-keyframes 0.3s;
  animation: remodal-overlay-opening-keyframes 0.3s; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation: remodal-overlay-closing-keyframes 0.3s;
  animation: remodal-overlay-closing-keyframes 0.3s; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation: remodal-opening-keyframes 0.3s;
  animation: remodal-opening-keyframes 0.3s; }

.remodal.remodal-is-closing {
  -webkit-animation: remodal-closing-keyframes 0.3s;
  animation: remodal-closing-keyframes 0.3s; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent; }

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38; }

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: #fff;
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: #fff;
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 700px; }

/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  border-radius: 5px;
  border: 2px solid #000;
  background: #4c4c4c;
  color: #fff; }

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
  overflow: hidden; }

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */ }

/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px; }

/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible; }

.tooltipster-base .tooltipster-content {
  overflow: hidden; }

/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; }

.tooltipster-arrow span, .tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute; }

.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px; }

.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px; }

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px; }

.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px; }

.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto; }

.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
  left: 6px; }

.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px; }

.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
  right: 6px; }

.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px; }

.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px; }

.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px; }

.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px; }

.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px; }

/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  transition-property: opacity; }

.tooltipster-fade-show {
  opacity: 1; }

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow-show {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.tooltipster-swing-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

.tooltipster-fall {
  top: 0;
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0px !important;
  opacity: 0; }

.tooltipster-slide {
  left: -40px;
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0px !important;
  opacity: 0; }

/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); }

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  display: none; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

html {
  height: 100%;
  background-color: #fff; }

body {
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Source Sans Pro", "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  background-color: transparent; }

.float-left {
  float: left !important;
  width: auto; }

.float-right {
  float: right !important;
  width: auto; }

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

.notice-me {
  padding: 5px;
  background: #FCF8E3;
  border: 1px solid #FBEED5; }

a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase; }

.td_underline {
  text-decoration: underline; }

a[href*="solestruck.com"], a[href*="spirithoods.com"] {
  border-radius: 0;
  background-color: #000;
  text-transform: uppercase;
  color: #fff;
  padding: 9px;
  font-weight: bold;
  margin-left: -6px; }

h1 {
  font-size: 18px;
  text-transform: uppercase; }

h2, h3 {
  font-size: 16px;
  text-transform: uppercase; }

h4 {
  font-size: 14px;
  text-transform: uppercase; }

.site-nav--has-dropdown {
  border: 1px solid #000; }

.btn, .btn--secondary, input.btn--secondary, input[type="submit"] {
  border-radius: 0;
  background-color: #000;
  text-transform: uppercase; }

li {
  transition: background-color 0.14s ease; }

ul.pagination-custom > li {
  display: inline-block;
  margin: 0 1px; }
  ul.pagination-custom > li span, ul.pagination-custom > li a {
    border: none;
    font-size: 18px;
    font-weight: bold; }
  ul.pagination-custom > li:hover a {
    background-color: #efefef; }
  ul.pagination-custom > li.active span {
    color: #fff;
    background-color: #000; }

button[type="button"] {
  outline: none; }

.hidden {
  display: none !important; }

.notice-preback {
  border: 1px solid #efe19e;
  background-color: #fffdf6;
  padding: 10px;
  color: #4d4d4d;
  display: inline-block;
  margin-bottom: 15px; }
  .notice-preback h3 {
    font-size: 14px; }
  .notice-preback ul li {
    list-style-type: disc;
    list-style-position: inside; }

input, select, textarea {
  transition: border-color 0.24s ease; }
  input:focus, select:focus, textarea:focus {
    outline: none !important;
    border-color: #000 !important; }

.radio {
  margin-right: 15px; }

.template-index .hero-img-wrapper {
  text-align: center; }
  .template-index .hero-img-wrapper img {
    width: 100%; }

.slider {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition-delay: 150ms; }

.remodal[data-remodal-id="site-select"] > .selectors {
  display: table;
  padding: 25px 0;
  border-spacing: 10px; }
  .remodal[data-remodal-id="site-select"] > .selectors > .site {
    display: table-cell;
    width: 50%;
    padding: 0 5px;
    border: 1px solid #ccc;
    padding: 35px 30px; }
    .remodal[data-remodal-id="site-select"] > .selectors > .site h3 {
      font-size: 24px; }
    .remodal[data-remodal-id="site-select"] > .selectors > .site li {
      font-size: 12px;
      margin-bottom: 0; }

.remodal[data-remodal-id="site-select"] .selector-footer p {
  font-size: 12px; }

.mobile-header-bar {
  background-color: #000;
  padding: 10px 15px;
  color: #fff;
  display: none;
  *zoom: 1; }
  .mobile-header-bar:after {
    content: '';
    display: table;
    clear: both; }
  .mobile-header-bar a {
    color: #fff; }
  .mobile-header-bar ul {
    margin: 0;
    *zoom: 1; }
    .mobile-header-bar ul:after {
      content: '';
      display: table;
      clear: both; }
    .mobile-header-bar ul li {
      margin: 0;
      float: left;
      line-height: 17px; }
      .mobile-header-bar ul li p {
        margin-bottom: 0; }
      .mobile-header-bar ul li:last-child {
        float: right; }

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.24s ease-in-out; }
  .mobile-menu-overlay.active {
    opacity: 0.7; }

.mobile-menu-wrapper, .mobile-product-filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background-color: #2c2c2c;
  z-index: 999;
  -webkit-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);
  transition: -webkit-transform 0.12s ease-in-out;
  transition: transform 0.12s ease-in-out;
  transition: transform 0.12s ease-in-out, -webkit-transform 0.12s ease-in-out; }
  .mobile-menu-wrapper.active, .mobile-product-filter-wrapper.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .mobile-menu-wrapper ul.mobile-menu, .mobile-product-filter-wrapper ul.mobile-menu {
    height: 100%;
    overflow: auto; }
    .mobile-menu-wrapper ul.mobile-menu > li, .mobile-product-filter-wrapper ul.mobile-menu > li {
      position: relative;
      margin-bottom: 0;
      border-bottom: 1px solid #464646; }
      .mobile-menu-wrapper ul.mobile-menu > li > a, .mobile-product-filter-wrapper ul.mobile-menu > li > a {
        color: #fff;
        background-color: #1a1a1a; }
        .mobile-menu-wrapper ul.mobile-menu > li > a:hover, .mobile-product-filter-wrapper ul.mobile-menu > li > a:hover {
          background-color: #1e1e1e; }
      .mobile-menu-wrapper ul.mobile-menu > li > ul, .mobile-product-filter-wrapper ul.mobile-menu > li > ul {
        display: block;
        background-color: #3C3C3C;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition-property: all;
        transition-duration: 0.5s;
        transition-timing-function: cubic-bezier(0, 1, 0.5, 1); }
        .mobile-menu-wrapper ul.mobile-menu > li > ul.active, .mobile-product-filter-wrapper ul.mobile-menu > li > ul.active {
          max-height: 999px; }
        .mobile-menu-wrapper ul.mobile-menu > li > ul > li, .mobile-product-filter-wrapper ul.mobile-menu > li > ul > li {
          margin: 0; }
          .mobile-menu-wrapper ul.mobile-menu > li > ul > li > a, .mobile-product-filter-wrapper ul.mobile-menu > li > ul > li > a {
            padding: 8px 15px;
            color: #fff;
            border-top: 1px solid #2c2c2c;
            display: block;
            width: 100%; }

/**
 * Note: I have omitted any vendor-prefixes for clarity.
 * Adding them is left as an exercise for the reader.
 */
.headroom {
  transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
  transition: transform 200ms linear, -webkit-transform 200ms linear; }

.headroom--pinned {
  -webkit-transform: translateY(0%);
          transform: translateY(0%); }

.headroom--unpinned {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%); }

.main-content {
  margin-top: 0;
  padding-top: 103px; }
  .main-content > .grid, .main-content > .grid-rev, .main-content .product-single.grid {
    padding-top: 30px;
    padding-bottom: 30px; }

@media (max-width: 768px) {
  .main-content {
    padding-top: 83px; } }

header.mega-nav-header {
  background-color: #000;
  position: fixed;
  width: 100%;
  z-index: 999; }
  header.mega-nav-header .header-banner {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 7px 0;
    position: absolute;
    top: 100%;
    width: 100%;
    margin-left: 0; }
    header.mega-nav-header .header-banner p {
      margin: 0;
      color: #FFF; }
  @media (max-width: 768px) {
    header.mega-nav-header .header-banner .grid__item {
      padding-left: 0; } }
  header.mega-nav-header a {
    color: #fff; }
  header.mega-nav-header .ajaxcart--drawer {
    max-height: 500px;
    overflow: hidden;
    overflow-y: scroll;
    position: relative;
    z-index: 2; }
  header.mega-nav-header .ajaxcart__content a {
    color: #000; }
  header.mega-nav-header #AjaxifyDrawer {
    background-color: #fff; }
  header.mega-nav-header > .wrapper {
    position: relative;
    padding: 0 !important;
    z-index: 1; }
  header.mega-nav-header .cart-notifications {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: -1; }
  header.mega-nav-header .cart-notification {
    background-color: #27ae60;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #298A52;
    padding: 10px 0;
    opacity: 1;
    transition: opacity 0.342s ease-in; }
    header.mega-nav-header .cart-notification.error {
      background-color: #c0392b; }
    header.mega-nav-header .cart-notification.removing {
      opacity: 0; }
    header.mega-nav-header .cart-notification p {
      margin: 0;
      text-transform: uppercase; }
  header.mega-nav-header .main-header {
    height: 67px;
    line-height: 67px;
    z-index: 999;
    background-color: #000;
    padding: 0 30px !important;
    display: table;
    width: 100%; }
    header.mega-nav-header .main-header .mobile-mega-menu {
      display: none; }
    header.mega-nav-header .main-header .logo {
      display: table-cell;
      vertical-align: middle; }
      header.mega-nav-header .main-header .logo a {
        display: block; }
        header.mega-nav-header .main-header .logo a img {
          width: 167px;
          display: inherit; }
    header.mega-nav-header .main-header > ul {
      margin-bottom: 0;
      display: table-cell; }
      header.mega-nav-header .main-header > ul > li {
        text-align: center;
        margin: 0;
        position: relative;
        float: left; }
        header.mega-nav-header .main-header > ul > li.CartToggle {
          position: relative; }
          header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #fff;
            width: 300px;
            border: 1px solid #000;
            border-top: none;
            left: auto;
            z-index: -1; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--details {
              display: none; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--more-items > a {
              background-color: #fff;
              color: #000; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--subtotal {
              background-color: #000;
              color: #fff;
              font-weight: bold; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--items-list {
              margin: 0;
              padding: 15px 0;
              display: none; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item {
              display: table;
              width: 100%;
              height: auto;
              padding: 0 15px;
              text-align: left;
              transition: all 0.14s ease-in-out; }
              header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item > * {
                display: table-cell;
                vertical-align: middle; }
              header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item img {
                margin-right: 20px; }
              header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item.first {
                opacity: 0;
                -webkit-transform: translateX(60px);
                        transform: translateX(60px); }
              header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item:last-child {
                margin: 0; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item-details {
              width: 100%; }
              header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item-details > span {
                display: block;
                line-height: 1.5em; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item-title {
              font-weight: bold; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item-variant {
              font-size: 11px;
              color: #333; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--item-remove {
              margin-left: 10px;
              cursor: pointer; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--sub-total {
              line-height: 1.5em;
              border-top: 1px solid #CCC;
              margin: 0 20px;
              padding: 15px 0;
              text-align: left; }
            header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--controls {
              padding: 10px; }
              header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart--controls > a {
                display: inline-block;
                line-height: 4em; }
          header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart.populated .mini-cart--details {
            display: block; }
          header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart.populated .mini-cart--no-items {
            display: none; }
          header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart.populated .mini-cart--items-list {
            display: block; }
          header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart.open {
            transition-delay: 0; }
          header.mega-nav-header .main-header > ul > li.CartToggle:hover .mini-cart, header.mega-nav-header .main-header > ul > li.CartToggle .mini-cart.open {
            -webkit-transform: translateY(0);
                    transform: translateY(0); }
        header.mega-nav-header .main-header > ul > li.currency-changer-li, header.mega-nav-header .main-header > ul > li.account-details-li, header.mega-nav-header .main-header > ul > li.site-switch-li {
          z-index: 1; }
          header.mega-nav-header .main-header > ul > li.currency-changer-li:hover .slider, header.mega-nav-header .main-header > ul > li.account-details-li:hover .slider, header.mega-nav-header .main-header > ul > li.site-switch-li:hover .slider {
            -webkit-transform: translateY(0);
            transform: translateY(0); }
          header.mega-nav-header .main-header > ul > li.currency-changer-li .sub-menu, header.mega-nav-header .main-header > ul > li.account-details-li .sub-menu, header.mega-nav-header .main-header > ul > li.site-switch-li .sub-menu {
            z-index: -1; }
            header.mega-nav-header .main-header > ul > li.currency-changer-li .sub-menu > li.active a, header.mega-nav-header .main-header > ul > li.account-details-li .sub-menu > li.active a, header.mega-nav-header .main-header > ul > li.site-switch-li .sub-menu > li.active a {
              background-color: #000; }
        header.mega-nav-header .main-header > ul > li .sub-menu {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          margin: 0; }
          header.mega-nav-header .main-header > ul > li .sub-menu li {
            margin: 0;
            position: relative; }
            header.mega-nav-header .main-header > ul > li .sub-menu li a {
              background-color: #1a1a1a; }
            header.mega-nav-header .main-header > ul > li .sub-menu li > small {
              position: absolute;
              top: 11px;
              left: 0;
              width: 100%;
              z-index: 1;
              color: #fff;
              text-transform: uppercase;
              font-size: 9px;
              line-height: 0;
              font-weight: 700; }
        header.mega-nav-header .main-header > ul > li a {
          display: block;
          padding: 0 25px;
          background-color: #000;
          letter-spacing: 0.1em; }
          header.mega-nav-header .main-header > ul > li a > img {
            vertical-align: middle; }
          header.mega-nav-header .main-header > ul > li a.icon-usaflag, header.mega-nav-header .main-header > ul > li a.icon-ausflag {
            line-height: 67px;
            font-size: 32px; }
          header.mega-nav-header .main-header > ul > li a:hover, header.mega-nav-header .main-header > ul > li a.active {
            background-color: #1a1a1a; }
          header.mega-nav-header .main-header > ul > li a.active:after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 9px 7.5px 0 7.5px;
            border-color: #1a1a1a transparent transparent transparent;
            line-height: 0px;
            _border-color: #007bff #000000 #000000 #000000;
            _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); }
          header.mega-nav-header .main-header > ul > li a .search-bar {
            display: table;
            height: 67px;
            z-index: 10px; }
            header.mega-nav-header .main-header > ul > li a .search-bar i {
              display: table-cell;
              font-size: 22px;
              vertical-align: middle;
              width: 22px;
              position: relative; }
            header.mega-nav-header .main-header > ul > li a .search-bar i.icon-sharkie {
              -webkit-animation: rotating 2s linear infinite;
              animation: rotating 2s linear infinite; }
            header.mega-nav-header .main-header > ul > li a .search-bar form {
              display: table-cell;
              vertical-align: middle;
              position: relative;
              overflow: hidden;
              max-width: 200px;
              left: 11px;
              transition: max-width 0.24s ease-in-out; }
              header.mega-nav-header .main-header > ul > li a .search-bar form.closed {
                max-width: 0; }
              header.mega-nav-header .main-header > ul > li a .search-bar form:after {
                content: "";
                position: absolute;
                bottom: 23px;
                left: 11px;
                width: 100%;
                height: 1px;
                background-color: #fff; }
              header.mega-nav-header .main-header > ul > li a .search-bar form input[type="text"] {
                background-color: transparent;
                border: none;
                border-radius: 0;
                position: relative;
                top: 3px;
                padding-bottom: 2px;
                padding-right: 10px;
                color: #fff;
                transition: max-width 0.24s ease-in-out; }
                header.mega-nav-header .main-header > ul > li a .search-bar form input[type="text"]:focus {
                  border-color: #fff !important; }
  header.mega-nav-header .mega-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: -1; }
    header.mega-nav-header .mega-nav .mega-nav-panel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #000;
      transition-property: all;
      transition-duration: 0.5s;
      transition-timing-function: cubic-bezier(0, 1, 0.5, 1); }
      header.mega-nav-header .mega-nav .mega-nav-panel .banner-img {
        text-align: center; }
        header.mega-nav-header .mega-nav .mega-nav-panel .banner-img img.collection-banner-image {
          display: inline-block;
          position: relative;
          width: 100%; }
      header.mega-nav-header .mega-nav .mega-nav-panel > ul {
        margin: 0;
        display: table;
        width: 100%;
        padding: 30px 0; }
        header.mega-nav-header .mega-nav .mega-nav-panel > ul > li {
          color: #fff !important;
          border-right: 1px solid #fff;
          position: relative;
          margin: 20px 0;
          padding: 0 50px;
          display: table-cell;
          vertical-align: top; }
          header.mega-nav-header .mega-nav .mega-nav-panel > ul > li > img {
            position: absolute;
            top: 5px;
            left: 10px; }
          header.mega-nav-header .mega-nav .mega-nav-panel > ul > li:last-child {
            border-right: none; }
          header.mega-nav-header .mega-nav .mega-nav-panel > ul > li > ul {
            margin: 0; }
          header.mega-nav-header .mega-nav .mega-nav-panel > ul > li i[class^="icon-"] {
            position: absolute;
            top: 5px;
            left: 13px;
            font-size: 25px; }
      header.mega-nav-header .mega-nav .mega-nav-panel.closed {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%); }

header.mega-nav-header .secondary-menu > li > a i, header.mega-nav-header .secondary-menu > li > a span {
  display: inline-block;
  vertical-align: middle; }

header.mega-nav-header .secondary-menu > li > a i {
  font-size: 30px; }

.search-li {
  position: relative;
  cursor: pointer; }
  .search-li.active:after {
    opacity: 1; }
  .search-li.active .main-site-search-container {
    max-height: 800px;
    border: 1px solid #e1e1e1;
    border-top: none; }
  .search-li:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #ffffff transparent;
    opacity: 0; }
  .search-li .main-site-search-container {
    position: absolute;
    top: 100%;
    right: 0;
    width: 450px;
    background-color: #fff;
    overflow: hidden;
    -ms-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    transition: all 240ms cubic-bezier(0.77, 0, 0.175, 1);
    /* easeInOutQuart */
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    /* easeInOutQuart */
    transition: max-height 0.24s;
    max-height: 0; }
    .search-li .main-site-search-container .header-search-form {
      padding: 25px;
      margin: 0;
      border-bottom: 1px solid #e1e1e1;
      width: 100%;
      display: table; }
      .search-li .main-site-search-container .header-search-form > * {
        display: table-cell;
        vertical-align: top;
        margin: 0;
        padding: 0; }
        .search-li .main-site-search-container .header-search-form > *:first-child {
          width: 100%; }
        .search-li .main-site-search-container .header-search-form > * input {
          margin: 0;
          display: block; }
        .search-li .main-site-search-container .header-search-form > * input[type="text"] {
          border-radius: 3px 0 0 3px; }
    .search-li .main-site-search-container > ul {
      margin: 0;
      padding: 0;
      width: 100%; }
      .search-li .main-site-search-container > ul > li {
        width: 100%;
        border-bottom: 1px solid #e1e1e1;
        height: 80px;
        margin: 0;
        position: relative;
        display: table; }
        .search-li .main-site-search-container > ul > li:hover {
          background-color: #f2f2f2; }
        .search-li .main-site-search-container > ul > li:last-child {
          border-bottom: none; }
        .search-li .main-site-search-container > ul > li > a {
          position: absolute !important;
          top: 0 !important;
          left: 0 !important;
          width: 100% !important;
          height: 100% !important;
          background-color: transparent !important; }
          .search-li .main-site-search-container > ul > li > a:hover {
            background-color: transparent !important; }
        .search-li .main-site-search-container > ul > li > div {
          height: 100%;
          text-align: left;
          display: table-cell;
          vertical-align: middle; }
          .search-li .main-site-search-container > ul > li > div.product-img {
            background-position: center;
            background-size: cover;
            width: 80px;
            height: 120px;
            border-right: 1px solid #e1e1e1; }
          .search-li .main-site-search-container > ul > li > div .product-details-inner {
            padding: 9px;
            line-height: 20px; }
            .search-li .main-site-search-container > ul > li > div .product-details-inner a {
              background-color: transparent;
              color: #000;
              padding: 0; }

body.template-cart .CartToggle:hover .mini-cart, body.template-cart .CartToggle .mini-cart.open {
  -webkit-transform: translateY(-100%) !important;
          transform: translateY(-100%) !important; }

div#AjaxifyCart .cart__row .cart__image > img {
  height: 130px; }

div#AjaxifyCart .cart__row a.h4 {
  margin: 0; }

div#AjaxifyCart .cart__row .ajaxcar__qty, div#AjaxifyCart .cart__row .ajaxcart__remove {
  display: inline-block; }

div#AjaxifyCart .cart__row .ajaxcart__remove > img {
  height: 17px;
  display: inline;
  vertical-align: middle;
  position: relative;
  top: -2px;
  left: 5px; }

.template-collection .no-clear {
  clear: none !important; }

.template-collection .grid-uniform.gridview {
  margin-left: -15px; }
  .template-collection .grid-uniform.gridview .collection-grid-item-product {
    padding-left: 15px; }
  .template-collection .grid-uniform.gridview .product-size-options-and-stock {
    display: none; }

.template-collection .grid-uniform.listview {
  margin-left: -15px; }
  .template-collection .grid-uniform.listview .collection-grid-item-product {
    padding-left: 15px; }
  .template-collection .grid-uniform.listview .product-size-options-and-stock {
    display: block; }

.template-collection .sorting-buttons {
  display: inline-block;
  vertical-align: middle;
  position: relative; }
  .template-collection .sorting-buttons .sbtn {
    padding: 0;
    float: left;
    margin: 0;
    width: 200px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    height: 37px;
    overflow: hidden;
    -webkit-display: -webkit-flex;
    -moz-display: flex;
    -ms-display: -ms-flexbox;
    -o-display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    cursor: pointer; }
    .template-collection .sorting-buttons .sbtn > div {
      -webkit-flex-grow: 1;
      -moz-flex-grow: 1;
      -ms-flex-grow: 1;
      -o-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
      -ms-flex: 1;
      text-align: center;
      line-height: 33px; }
      .template-collection .sorting-buttons .sbtn > div.active {
        color: #fff;
        font-weight: 700;
        background-color: #000; }

.template-collection .testing-sizes {
  display: inline-block;
  position: relative; }
  .template-collection .testing-sizes > .filter-heading {
    text-align: left; }
    .template-collection .testing-sizes > .filter-heading > abbr {
      text-decoration: underline;
      -webkit-text-decoration-style: dotted;
              text-decoration-style: dotted;
      font-size: 10px; }
  .template-collection .testing-sizes > .btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #e1e1e1;
    margin-left: -1px;
    font-weight: normal;
    min-width: 40px;
    -webkit-tap-highlight-color: transparent; }
    .template-collection .testing-sizes > .btn.active {
      background-color: #000;
      color: #fff; }
    .template-collection .testing-sizes > .btn:first-child {
      -webkit-border-top-left-radius: 3px;
      -webkit-border-bottom-left-radius: 3px;
      -moz-border-radius-topleft: 3px;
      -moz-border-radius-bottomleft: 3px;
      border-top-left-radius: 3px;
      border-bottom-left-radius: 3px;
      margin-left: 0; }
    .template-collection .testing-sizes > .btn:last-child {
      border-right: 1px solid #e1e1e1;
      -webkit-border-top-right-radius: 3px;
      -webkit-border-bottom-right-radius: 3px;
      -moz-border-radius-topright: 3px;
      -moz-border-radius-bottomright: 3px;
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px; }

.template-collection .testing-sizes > *, .template-collection .sorting-buttons > *, .template-collection .collection-view {
  margin-bottom: 10px !important; }

.template-collection .collection-licence-image {
  background-size: 1380px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 25px 0;
  width: 100%;
  height: 137px; }

.collection-grid-item-product {
  text-align: center; }
  .collection-grid-item-product .product-price {
    font-size: 18px;
    color: #333; }
  .collection-grid-item-product .compare-at-price {
    text-decoration: line-through;
    margin-right: 15px; }
  @media (max-width: 652px) {
    .collection-grid-item-product .compare-at-price {
      display: block;
      margin-right: 0; } }
  .collection-grid-item-product .grid__image {
    margin-bottom: 2px;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 148%; }
    .collection-grid-item-product .grid__image > img {
      position: absolute;
      display: block;
      max-width: 100%;
      max-height: 100%;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto; }
      .collection-grid-item-product .grid__image > img.lazyloading {
        opacity: 0; }
      .collection-grid-item-product .grid__image > img.lazyloaded {
        opacity: 1; }
    .collection-grid-item-product .grid__image.museum-img {
      min-height: 266px; }
    .collection-grid-item-product .grid__image .image-loader {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      z-index: 99; }
      .collection-grid-item-product .grid__image .image-loader img {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
  .collection-grid-item-product .large--display-table .grid__image {
    border: none; }
  .collection-grid-item-product p.h6 {
    margin: 10px 0; }
    .collection-grid-item-product p.h6 a {
      font-weight: normal;
      letter-spacing: 0.1em;
      display: block; }

button.change-view {
  cursor: pointer; }

.product-size-options-and-stock {
  margin-bottom: 15px; }

.grid--rev .large--three-quarters .section-header, .grid--rev .large--one-whole .section-header {
  margin-bottom: 10px;
  text-align: left; }
  .grid--rev .large--three-quarters .section-header h1, .grid--rev .large--one-whole .section-header h1 {
    font-size: 18px;
    padding: 0;
    vertical-align: bottom;
    text-transform: uppercase;
    line-height: 47px;
    padding-bottom: 10px; }

.sidebar {
  padding-top: 18px;
  transition: left 0.23s ease-in-out;
  position: relative;
  left: 0;
  overflow: hidden; }
  .sidebar .sidebar-inner {
    width: 100%;
    text-align: left; }
  .sidebar h3 {
    font-size: 14px; }
  .sidebar ul {
    margin-left: -10px; }
    .sidebar ul li {
      margin-bottom: 0; }
      .sidebar ul li a {
        padding: 3px 10px;
        display: block; }
  .sidebar.absolute {
    position: absolute; }
  .sidebar.hiding {
    left: -100%; }

.main-collection-listing {
  padding-top: 40px;
  transition: width 0.23s ease-in-out; }
  .main-collection-listing.expanding {
    width: 100%; }

.collection-image-preview-wrapper {
  position: relative;
  z-index: 1; }
  .collection-image-preview-wrapper > span.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    z-index: 10; }
  .collection-image-preview-wrapper > img {
    width: 100%; }
    .collection-image-preview-wrapper > img:first-child {
      position: relative;
      z-index: 2;
      opacity: 1;
      transition: opacity 0.24s ease;
      background-color: #fff; }
      .collection-image-preview-wrapper > img:first-child:hover {
        opacity: 0; }
    .collection-image-preview-wrapper > img:last-child {
      position: absolute;
      left: 0;
      top: 0; }
    .collection-image-preview-wrapper > img.last {
      position: absolute;
      top: 0;
      left: 0; }
  .collection-image-preview-wrapper > picture {
    width: 100%; }
    .collection-image-preview-wrapper > picture:first-child {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      opacity: 1;
      transition: opacity 0.24s ease;
      background-color: #fff; }
    .collection-image-preview-wrapper > picture:last-child {
      position: absolute;
      left: 0;
      top: 0; }
    .collection-image-preview-wrapper > picture.last {
      position: absolute;
      top: 0;
      left: 0; }
  .collection-image-preview-wrapper.loaded > picture:first-child:hover {
    opacity: 0; }

.section-header__right {
  width: auto; }
  .section-header__right .collection-view {
    cursor: pointer; }
  .section-header__right button.toggle-sidebar {
    margin-left: 0; }
  .section-header__right span.toggle-grid, .section-header__right span.toggle-list {
    display: none; }
    .section-header__right span.toggle-grid.active, .section-header__right span.toggle-list.active {
      color: #000; }
  .section-header__right .affiliate-info p.affiliate-text {
    font-size: 14px; }

.collection-description {
  text-align: left;
  margin-bottom: 25px; }

.collection-description > * {
  padding: 0 25px; }

.product-list-item-price {
  text-align: right; }

@-webkit-keyframes slideInOutRight {
  0% {
    left: 100%; }
  15% {
    left: 0; }
  75% {
    left: 0; }
  100% {
    left: 100%; } }

@keyframes slideInOutRight {
  0% {
    left: 100%; }
  15% {
    left: 0; }
  75% {
    left: 0; }
  100% {
    left: 100%; } }

.product-photos-wrapper {
  display: table;
  position: relative; }
  .product-photos-wrapper .social-like-buttons {
    display: table;
    text-align: center;
    margin-left: auto;
    margin: auto;
    margin-top: 10px;
    position: relative;
    z-index: 10;
    overflow: hidden; }
    .product-photos-wrapper .social-like-buttons > * {
      display: table-cell;
      vertical-align: middle;
      width: 100px;
      line-height: 0;
      position: relative;
      z-index: 1; }
      .product-photos-wrapper .social-like-buttons > *:first-child {
        text-align: right; }
      .product-photos-wrapper .social-like-buttons > *:last-child {
        text-align: left; }

.fb-like span {
  overflow: visible !important;
  width: 450px !important;
  margin-right: -375px; }

.product-single {
  *zoom: 1; }
  .product-single:after {
    content: '';
    display: table;
    clear: both; }

#show-me-sizings {
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  line-height: 32px; }

.product-other-images-preview {
  display: table-cell;
  vertical-align: middle; }

.product-details-and-buy-wrapper {
  padding-top: 13px; }
  .product-details-and-buy-wrapper #product-final-countdown {
    position: absolute;
    left: 100%;
    top: -1px;
    bottom: 0;
    font-size: 16px;
    margin-left: 3px; }
    .product-details-and-buy-wrapper #product-final-countdown > span {
      background-color: #9E9FA3;
      color: #fff;
      padding: 0 5px;
      margin: 0 2px;
      font-family: "Source Sans Pro";
      display: inline-block;
      line-height: 35px;
      border: 1px solid #9E9FA3; }
  .product-details-and-buy-wrapper #AddToCart {
    position: relative;
    overflow: hidden;
    outline: none; }
    .product-details-and-buy-wrapper #AddToCart > .button-success-message {
      position: absolute;
      left: 100%;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #2cc36b; }
      .product-details-and-buy-wrapper #AddToCart > .button-success-message.active {
        -webkit-animation-duration: 1s;
                animation-duration: 1s;
        -webkit-animation-name: slideInOutRight;
                animation-name: slideInOutRight; }
      .product-details-and-buy-wrapper #AddToCart > .button-success-message span {
        color: #fff;
        line-height: 35px; }
  .product-details-and-buy-wrapper span.twenty-four-hour {
    margin-left: 123px;
    display: inline-table;
    width: 260px;
    position: relative;
    top: 13px; }
    .product-details-and-buy-wrapper span.twenty-four-hour > i {
      font-size: 33px;
      display: table-cell;
      vertical-align: middle;
      width: 16%; }
    .product-details-and-buy-wrapper span.twenty-four-hour > span {
      display: table-cell;
      vertical-align: top;
      width: 77%;
      line-height: 16px;
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 500; }
  .product-details-and-buy-wrapper .product-breadcrumbs a {
    margin-bottom: 15px;
    display: inline-block; }
  .product-details-and-buy-wrapper .product-breadcrumbs i {
    margin-right: 10px;
    margin-left: 10px;
    display: inline-block; }
  .product-details-and-buy-wrapper h1[itemprop="name"] {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.2em; }
  .product-details-and-buy-wrapper span#ProductPrice {
    letter-spacing: 0.5px;
    display: inline-block; }
  .product-details-and-buy-wrapper .compare-at-price {
    font-size: 22px;
    text-decoration: line-through;
    font-weight: 600;
    color: #ccc;
    display: inline-block;
    margin-right: 15px; }
  .product-details-and-buy-wrapper .final-countdown-digit {
    background-color: #000;
    color: #fff;
    padding: 5px;
    margin: 0 2px; }
  .product-details-and-buy-wrapper button.btn#AddToCart {
    background-color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em; }
  .product-details-and-buy-wrapper #productSelect {
    display: none !important; }
  .product-details-and-buy-wrapper .restock-signup p {
    font-weight: 700; }

.similar-products {
  margin-top: 15px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0; }

.size-variations ul.sizes {
  margin-bottom: 15px; }
  .size-variations ul.sizes li.size {
    width: auto;
    min-width: 50px;
    height: 40px;
    padding: 0 15px;
    background-color: #666;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    position: relative; }
    .size-variations ul.sizes li.size:hover {
      background-color: gray; }
    .size-variations ul.sizes li.size.unavailable, .size-variations ul.sizes li.size.gone-forever {
      background-color: #ccc; }
    .size-variations ul.sizes li.size.unavailable:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .size-variations ul.sizes li.size.selected {
      background-color: #000;
      color: #fff; }

#add-to-wishlist-button {
  position: absolute;
  top: 10px;
  right: 35px;
  z-index: 1;
  cursor: pointer; }

.product-main-image-preview {
  display: table-cell;
  vertical-align: top;
  position: relative;
  background-color: #fff;
  padding: 0 25px;
  cursor: default; }
  .product-main-image-preview > span img {
    background-color: #fff;
    width: 100%; }
  .product-main-image-preview .image-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #fff;
    opacity: 0.8; }
    .product-main-image-preview .image-loader img {
      position: absolute;
      top: 43%;
      left: 50%;
      -webkit-transform: translateY(-43%) translateX(-50%);
              transform: translateY(-43%) translateX(-50%);
      height: 120px; }

.product-other-images-preview {
  width: 67px; }
  .product-other-images-preview img {
    width: 67px; }

.mobile-carousel-wrapper {
  display: none; }

.product-tabs ul.idTabs {
  margin-bottom: 6px; }
  .product-tabs ul.idTabs li {
    display: inline-block;
    margin: 0;
    border-bottom: none;
    z-index: 1; }
    .product-tabs ul.idTabs li a {
      padding: 8px 12px;
      border-top: 1px solid #fff;
      border-left: 1px solid #fff;
      border-right: 1px solid #fff;
      position: relative; }
      .product-tabs ul.idTabs li a:hover, .product-tabs ul.idTabs li a.selected {
        border-color: #e5e5e5; }
        .product-tabs ul.idTabs li a:hover:after, .product-tabs ul.idTabs li a.selected:after {
          content: "";
          position: absolute;
          bottom: -1px;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: #fff; }

.product-tabs th, .product-tabs td {
  padding: 15px 5px;
  border: none;
  border-top: 1px solid #e5e5e5; }

.sizeinch, .sizecm {
  cursor: pointer; }
  .sizeinch.active, .sizecm.active {
    background-color: #000;
    color: #fff;
    padding: 1px 5px; }
  .sizeinch.active, .sizecm.active {
    background-color: #000;
    color: #fff; }

.product-hashtags {
  min-height: 1px;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  margin-top: 25px; }

.hashtag-component {
  float: none;
  *zoom: 1;
  position: relative;
  z-index: 1;
  padding-top: 15px; }
  .hashtag-component:after {
    content: '';
    display: table;
    clear: both; }
  .hashtag-component .meta {
    *zoom: 1;
    width: 100%;
    display: block; }
    .hashtag-component .meta:after {
      content: '';
      display: table;
      clear: both; }
    .hashtag-component .meta .how-to-tag {
      float: left; }
    .hashtag-component .meta .hashtag-navigation {
      float: right;
      margin-bottom: 15px; }
      .hashtag-component .meta .hashtag-navigation > span {
        display: inline-block;
        background-color: #000;
        color: #fff;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 25px;
        cursor: pointer;
        transition: background-color 0.14s ease;
        font-size: 14px;
        font-weight: bold; }
        .hashtag-component .meta .hashtag-navigation > span.page-number {
          width: 50px; }
        .hashtag-component .meta .hashtag-navigation > span:hover {
          background-color: #333; }
  .hashtag-component > .hashtags-list > .grid__item {
    padding-bottom: 30px; }
  .hashtag-component .hashtag-img-cont {
    width: 100%;
    padding-top: 100%;
    position: relative;
    display: block;
    overflow: hidden; }
    .hashtag-component .hashtag-img-cont img {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      transition: opacity 0.24s ease; }
      .hashtag-component .hashtag-img-cont img.wide-img {
        width: auto;
        height: 100%; }
      .hashtag-component .hashtag-img-cont img.hashtag-img {
        opacity: 0; }
        .hashtag-component .hashtag-img-cont img.hashtag-img.loaded {
          opacity: 1; }

.gift-card-product-page #productSelect {
  display: inline;
  width: 70px; }

.gift-card-product-page .product-details-and-buy-wrapper {
  padding-top: 0; }

.gift-card-product-page .how-to-use {
  display: table-row;
  width: 100%;
  text-align: left; }
  .gift-card-product-page .how-to-use .cell {
    display: table-cell;
    padding: 15px 30px 15px 0; }

.video-wrapper {
  margin-bottom: 15px; }

.template-index main.main-content {
  padding: 67px 0 0 0;
  position: relative;
  height: 90%; }

.template-index .wrapper {
  padding: 0 15px; }

@media (max-width: 768px) {
  .template-index main.main-content {
    padding: 46px 0 0 0; } }

.home-slider {
  width: 100%;
  height: 100%; }

.home-slider .owl-stage-outer, .home-slider .owl-stage, .home-slider .owl-item {
  height: 100%; }

.home-slider__slide {
  background-size: cover;
  background-position: center;
  height: 100%;
  display: block; }

#homepage_discount_newsletter_modal {
  background-size: cover;
  background-position: center;
  *zoom: 1;
  min-height: 400px; }
  #homepage_discount_newsletter_modal:after {
    content: '';
    display: table;
    clear: both; }
  #homepage_discount_newsletter_modal .remodal-close:before {
    color: #000; }
  #homepage_discount_newsletter_modal .right-50 {
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    padding: 25px; }
    #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper {
      display: table;
      width: 100%;
      height: 100%;
      text-align: left; }
      #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper > * {
        display: table-cell;
        vertical-align: middle; }
      #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper h1 {
        font-size: 30px;
        margin-bottom: 15px;
        line-height: 30px; }
      #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper p {
        font-size: 16px; }
      #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper form {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start; }
        #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper form > input[name="EMAIL"] {
          border-radius: 2px 0 0 2px;
          border-color: #000; }
  @media (max-width: 652px) {
    #homepage_discount_newsletter_modal .right-50 {
      display: block;
      width: 100%; }
      #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper {
        text-align: center; }
        #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper h1 {
          font-size: 24px; }
        #homepage_discount_newsletter_modal .right-50 .va-middle-wrapper p {
          font-size: 16px; } }

#returnsForm .add_item, #returnsForm .remove_item {
  border: 1px solid #ccc;
  padding: 5px 10px;
  margin: 15px 0;
  display: inline-block;
  border-radius: 3px; }

#returnsForm > div > div {
  margin-bottom: 15px; }

#returnsForm ul.parsley-errors-list {
  display: inline-block;
  margin-left: 15px; }

#returnsForm .js-qty .parsley-errors-list {
  display: none; }

.template-search #search-form {
  margin-bottom: 0; }
  .template-search #search-form input[type="text"] {
    display: inline;
    width: 300px;
    border: none;
    margin-bottom: 0; }

.template-404 .not-found-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); }
  .template-404 .not-found-content > img {
    width: 100%;
    max-width: 499px; }
  .template-404 .not-found-content .buttons {
    display: table;
    margin-top: 15px;
    width: 100%; }
    .template-404 .not-found-content .buttons .button {
      display: table-cell;
      text-align: center; }
      .template-404 .not-found-content .buttons .button:first-child {
        text-align: left; }
      .template-404 .not-found-content .buttons .button:last-child {
        text-align: right; }
      .template-404 .not-found-content .buttons .button > a {
        background-color: #fff;
        padding: 10px;
        width: 110px;
        text-align: center;
        font-weight: 700; }

.template-page h1 {
  font-size: 24px; }

.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 430px;
  background: #fff;
  min-width: 320px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  padding: 40px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%); }
  .md-modal.show {
    visibility: visible; }
  .md-modal .icon.icon-x {
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 0;
    cursor: pointer; }
  .md-modal h1 {
    font-size: 16px;
    margin-bottom: 20px; }
  .md-modal > form {
    margin: 0; }
    .md-modal > form input, .md-modal > form button {
      width: 100%;
      display: block; }
    .md-modal > form button {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 2px; }
      .md-modal > form button:focus {
        outline: none;
        border-color: #000; }

.careers-page {
  *zoom: 1; }
  .careers-page:after {
    content: '';
    display: table;
    clear: both; }
  .careers-page .current-openings {
    width: 100%;
    background: #F8F8F8;
    padding: 20px 10px;
    margin-top: 35px;
    border: 1px solid #EAEAEA;
    -ms-box-shadow: inset 1px 1px 3px 2px rgba(0, 0, 0, 0.03);
    -o-box-shadow: inset 1px 1px 3px 2px rgba(0, 0, 0, 0.03);
    box-shadow: inset 1px 1px 3px 2px rgba(0, 0, 0, 0.03); }

.measurement-instructions-wrapper {
  display: table;
  padding: 25px 0; }
  .measurement-instructions-wrapper > div {
    display: table-cell;
    vertical-align: top; }
    .measurement-instructions-wrapper > div > p {
      font-size: 12px;
      margin-bottom: 9px; }
      .measurement-instructions-wrapper > div > p:nth-child(3) {
        margin-bottom: 28px; }
      .measurement-instructions-wrapper > div > p:nth-child(4) {
        margin-bottom: 131px; }
    .measurement-instructions-wrapper > div:first-child {
      width: 210px; }
    .measurement-instructions-wrapper > div:last-child {
      padding-left: 25px;
      padding-top: 109px; }

.contact-page .content {
  display: table; }
  .contact-page .content .table-responsive {
    display: table-cell;
    width: auto;
    vertical-align: top;
    padding: 0 30px 0 0; }
    .contact-page .content .table-responsive:last-child {
      width: 250px;
      padding: 0; }

.accordion-body {
  border-bottom: 1px solid #000; }

.rte-quick-links {
  background-color: #f4f4f4;
  padding: 15px;
  border: 1px solid #fff; }
  .rte-quick-links h3 {
    font-size: 5px;
    font-weight: 500;
    line-height: 15px; }

.accordion-head {
  padding-top: 70px; }
  .accordion-head h4 > span {
    float: right;
    cursor: pointer;
    text-decoration: underline;
    font-size: 12px; }

.lookbook-component {
  width: 100%; }
  .lookbook-component .owl-controls {
    position: absolute;
    bottom: 0;
    width: 100%; }
    .lookbook-component .owl-controls .owl-buttons div {
      border-radius: 0;
      opacity: 1; }
  .lookbook-component .slide {
    cursor: pointer;
    position: relative; }
    .lookbook-component .slide.item-video {
      padding-top: 50%; }
    .lookbook-component .slide > .owl-video-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .lookbook-component .slide .owl-video-frame > iframe {
      height: 100% !important; }
    .lookbook-component .slide > .caption {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 25%;
      background-color: rgba(236, 224, 212, 0.95);
      padding: 20px;
      text-align: center;
      font-size: 14px; }
      .lookbook-component .slide > .caption.caption-right {
        left: auto;
        right: 0; }
      .lookbook-component .slide > .caption .caption-push {
        display: table;
        height: 100%; }
        .lookbook-component .slide > .caption .caption-push p {
          display: table-cell;
          vertical-align: middle; }
    .lookbook-component .slide > .image {
      background-size: cover;
      background-position: center;
      height: 0;
      padding-top: 50%; }

.lookbook-video-description {
  text-align: left;
  padding: 25px;
  background-color: #F9F9F9; }

.component-wrap:-webkit-full-screen {
  width: 100%; }

.component-wrap:-moz-full-screen {
  width: 100%; }

.component-wrap:-ms-fullscreen {
  width: 100%; }

.component-wrap:fullscreen {
  width: 100%; }
  .component-wrap:-webkit-full-screen .caption {
    font-size: 20px !important; }
  .component-wrap:-moz-full-screen .caption {
    font-size: 20px !important; }
  .component-wrap:-ms-fullscreen .caption {
    font-size: 20px !important; }
  .component-wrap:fullscreen .caption {
    font-size: 20px !important; }
  .component-wrap:-webkit-full-screen #lookbook-fullscreen {
    display: none !important; }
  .component-wrap:-moz-full-screen #lookbook-fullscreen {
    display: none !important; }
  .component-wrap:-ms-fullscreen #lookbook-fullscreen {
    display: none !important; }
  .component-wrap:fullscreen #lookbook-fullscreen {
    display: none !important; }
  .component-wrap:-webkit-full-screen #lookbook-compress {
    display: block !important; }
  .component-wrap:-moz-full-screen #lookbook-compress {
    display: block !important; }
  .component-wrap:-ms-fullscreen #lookbook-compress {
    display: block !important; }
  .component-wrap:fullscreen #lookbook-compress {
    display: block !important; }

html.touch .component-wrap #lookbook-fullscreen, html.touch .component-wrap #lookbook-compress {
  display: none !important; }

.look-book-wrapper {
  text-align: center; }
  .look-book-wrapper .grid {
    padding-top: 50px;
    padding-bottom: 50px; }
    .look-book-wrapper .grid .look-book-title {
      max-width: 300px;
      width: 100%;
      margin-bottom: 30px; }
    .look-book-wrapper .grid .look-book-background-image-title {
      background-size: 1380px;
      background-position: center;
      background-repeat: no-repeat;
      margin: 25px 0;
      width: 100%;
      height: 137px;
      margin-bottom: 30px; }
    .look-book-wrapper .grid .component-wrap {
      position: relative; }
      .look-book-wrapper .grid .component-wrap > #lookbook-fullscreen, .look-book-wrapper .grid .component-wrap #lookbook-compress {
        position: absolute;
        bottom: 15px;
        right: 20px;
        color: #fff;
        font-size: 23px;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 3px 5px; }
      .look-book-wrapper .grid .component-wrap #lookbook-compress {
        display: none; }

.account-page {
  padding: 30px 0; }

.pad-page {
  padding: 30px 0; }

.notification-txt {
  font-size: 18px;
  color: #ccc; }

#teaser-countdown {
  text-align: center;
  margin: 50px 0; }
  #teaser-countdown span {
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 30px;
    font-weight: bold;
    line-height: 50px;
    background: #000;
    color: #fff; }

#teaser-subscribe-copy, #teaser-newsletter-form {
  max-width: 600px;
  margin: 15px auto;
  text-align: center; }

body#password-page {
  color: #eee; }

#password {
  display: table;
  width: 100%;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center; }

#password-centred {
  display: table-cell;
  vertical-align: middle;
  max-width: 640px; }

#password-background {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); }

#password-logo {
  text-align: center;
  margin-bottom: 20px; }

#password-explaination {
  font-size: 16px;
  margin-bottom: 20px; }

#password-explaination *:last-child {
  margin-bottom: 0; }

#password-countdown {
  text-align: center;
  margin-bottom: 40px; }

[data-countdown-to] span {
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 30px;
  font-weight: bold;
  line-height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff; }

#password-social-icons {
  text-align: center; }

#password-social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none; }

#password-social-icons ul li {
  display: inline-block;
  padding: 5px; }

#password-social-icons ul li a {
  font-size: 36px;
  line-height: 36px;
  color: #fff; }

#password-form-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px; }

#password-form {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  padding: 10px;
  background: #fff;
  color: #000; }

.template-customers-account table.full th, .template-customers-account table.full td, .template-customers-order table.full th, .template-customers-order table.full td {
  border: none;
  border-bottom: 1px solid #e1e1e1; }

.template-customers-account table.full tr:nth-child(even), .template-customers-order table.full tr:nth-child(even) {
  background-color: #FDFDFD; }

.template-customers-addresses .user-address > div {
  background-color: #fdfdfd;
  padding: 15px;
  border: 1px solid #ECECEC; }

.template-blog .blog-listing-item {
  position: relative;
  padding-left: 185px; }
  .template-blog .blog-listing-item .blog-item-date {
    position: absolute;
    left: 35px;
    width: 90px;
    top: 0;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-weight: 700; }

#wishlist .wishlist-page-banner, #view-wishlist .wishlist-page-banner {
  background-size: 1380px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 25px 0;
  width: 100%;
  height: 137px; }

#wishlist .wishlist-item-wrapper, #view-wishlist .wishlist-item-wrapper {
  position: relative; }
  #wishlist .wishlist-item-wrapper > a.collection-image-preview-wrapper, #view-wishlist .wishlist-item-wrapper > a.collection-image-preview-wrapper {
    height: 0;
    padding-top: 150%;
    overflow: hidden; }
    #wishlist .wishlist-item-wrapper > a.collection-image-preview-wrapper > img, #view-wishlist .wishlist-item-wrapper > a.collection-image-preview-wrapper > img {
      position: absolute;
      top: 0;
      left: 0;
      right: 0; }
  #wishlist .wishlist-item-wrapper a.icon-cross, #view-wishlist .wishlist-item-wrapper a.icon-cross {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    background-color: #fff;
    padding: 6px;
    font-size: 11px;
    border-radius: 50%; }

#wishlist .large--one-quarter, #view-wishlist .large--one-quarter {
  margin-bottom: 25px; }

#wishlist .wishlist-item-controls, #view-wishlist .wishlist-item-controls {
  display: table;
  width: 100%; }
  #wishlist .wishlist-item-controls > div, #view-wishlist .wishlist-item-controls > div {
    display: table-cell;
    vertical-align: top; }
    #wishlist .wishlist-item-controls > div:last-child, #view-wishlist .wishlist-item-controls > div:last-child {
      display: table-cell;
      text-align: right;
      vertical-align: top; }

#wishlist h1.page-title, #view-wishlist h1.page-title {
  float: left; }

#wishlist .wishlist-share-controls > div.social a, #view-wishlist .wishlist-share-controls > div.social a {
  padding: 8px;
  display: inline-block;
  font-size: 30px; }

#wishlist .restock-only .wishlist-item-controls, #view-wishlist .restock-only .wishlist-item-controls {
  display: table;
  width: 100%; }
  #wishlist .restock-only .wishlist-item-controls > div, #view-wishlist .restock-only .wishlist-item-controls > div {
    display: table-cell;
    vertical-align: top; }
    #wishlist .restock-only .wishlist-item-controls > div:last-child, #view-wishlist .restock-only .wishlist-item-controls > div:last-child {
      display: table-cell;
      text-align: right;
      vertical-align: top; }
      #wishlist .restock-only .wishlist-item-controls > div:last-child button, #view-wishlist .restock-only .wishlist-item-controls > div:last-child button {
        background-color: #ccc; }

.wishlist-page {
  padding-top: 0 !important; }

.wishlist-page .wishlist-page__heading {
  text-align: center;
  margin-bottom: 25px; }

.template-search .search-result {
  margin-bottom: 15px;
  min-height: 570px; }

.template-search h3 {
  border-bottom: 1px solid #000;
  margin-bottom: 20px; }

.template-search .search-result {
  position: relative; }
  .template-search .search-result > a {
    display: block;
    position: relative; }
  .template-search .search-result i.icon-museum {
    position: absolute;
    bottom: 10px;
    right: 5px;
    color: #000;
    padding: 5px;
    font-size: 25px; }
  .template-search .search-result img {
    border: 1px solid #ccc;
    width: 100%; }
  .template-search .search-result h5 {
    margin-bottom: 0; }
    .template-search .search-result h5 a {
      font-weight: normal; }

footer#site-footer {
  position: relative;
  padding: 25px 0px;
  background-color: #000;
  color: #909090; }
  footer#site-footer .footer-copyright-wrapper {
    padding: 15px 0; }
    footer#site-footer .footer-copyright-wrapper p {
      margin: 0; }
  footer#site-footer a {
    color: #909090;
    transition: color 0.162s ease-in-out;
    letter-spacing: 0.1em; }
    footer#site-footer a:hover {
      color: #fff; }
  footer#site-footer .footer-column-wrapper {
    display: table; }
    footer#site-footer .footer-column-wrapper .footer-column {
      display: table-cell;
      vertical-align: top;
      width: 30%; }
      footer#site-footer .footer-column-wrapper .footer-column span.footer-header {
        margin-bottom: 20px;
        font-size: 18px;
        color: #fff;
        display: block; }
      footer#site-footer .footer-column-wrapper .footer-column p {
        margin-bottom: 25px; }
      footer#site-footer .footer-column-wrapper .footer-column ul {
        margin: 0;
        padding: 0; }
        footer#site-footer .footer-column-wrapper .footer-column ul.social-links li {
          display: inline-block;
          padding: 0 5px; }
          footer#site-footer .footer-column-wrapper .footer-column ul.social-links li i {
            font-size: 32px; }
      footer#site-footer .footer-column-wrapper .footer-column form input[type="email"] {
        border-radius: 0;
        background-color: #2f2f2f;
        border: none;
        border-bottom: 1px solid #585858;
        color: #fff;
        max-width: 300px; }
      footer#site-footer .footer-column-wrapper .footer-column form input[type="submit"] {
        background-color: #666; }
    footer#site-footer .footer-column-wrapper .sub-column-wrapper {
      display: table;
      width: 100%; }
      footer#site-footer .footer-column-wrapper .sub-column-wrapper .footer-sub-column {
        display: table-cell;
        width: 50%; }
    @media (max-width: 768px) {
      footer#site-footer .footer-column-wrapper .footer-column {
        display: block;
        width: 100%;
        margin-bottom: 15px; }
        footer#site-footer .footer-column-wrapper .footer-column .footer-sub-column {
          display: table-cell;
          width: 50%; }
      footer#site-footer .footer-column-wrapper .sub-column-wrapper {
        display: block; }
        footer#site-footer .footer-column-wrapper .sub-column-wrapper .footer-sub-column {
          padding-right: 45px; } }
    @media (max-width: 652px) {
      footer#site-footer .footer-column-wrapper .footer-column {
        display: table;
        width: 100%; }
        footer#site-footer .footer-column-wrapper .footer-column .sub-column-wrapper {
          display: table; }
          footer#site-footer .footer-column-wrapper .footer-column .sub-column-wrapper .footer-sub-column {
            display: table-cell;
            width: 50%;
            padding-right: 0;
            margin-bottom: 15px; }
        footer#site-footer .footer-column-wrapper .footer-column > p {
          display: none; } }
  @media (max-width: 652px) {
    footer#site-footer .footer-column-wrapper {
      display: block; } }

.tooltipster-default .tooltipster-content {
  font-family: 'Source Sans Pro', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
  max-width: 270px; }

.home-tiles {
  padding-top: 15px;
  display: block;
  background-color: #FFF;
  margin-left: -15px; }
  .home-tiles__tile {
    width: 33.333%;
    float: left;
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px; }
  .home-tiles__image-frame {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%; }
    .home-tiles__image-frame:before {
      content: "";
      background-color: transparent;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      transition: background-color 0.23s ease-out; }
    .home-tiles__image-frame:hover:before {
      background-color: rgba(0, 0, 0, 0.4); }
  .home-tiles__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .home-tiles__link > a {
      display: table;
      table-layout: fixed;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center; }
  .home-tiles__middle-wrap {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
  .home-tiles__image {
    max-width: 100%;
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto; }

@media (max-width: 768px) {
  .home-tiles__tile {
    width: 33.333%; } }

@media (max-width: 480px) {
  .home-tiles__tile {
    width: 100%; } }

.index-mini-banners {
  *zoom: 1;
  margin-left: -15px; }
  .index-mini-banners:after {
    content: '';
    display: table;
    clear: both; }

.index-mini-banners__banner {
  padding-left: 15px;
  margin-top: 15px;
  display: block;
  float: left; }
  .index-mini-banners__banner.half {
    width: 50%; }
  .index-mini-banners__banner.full {
    width: 100%; }

.index-mini-banners__image {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0; }

@media (max-width: 652px) {
  .index-mini-banners__banner.half {
    width: 100%; } }

.quantitize-wrapper {
  display: inline-block;
  border: 1px solid #a2a2a2;
  border-radius: 2px;
  vertical-align: middle; }

.quantitize {
  display: table;
  width: 90px; }
  .quantitize > * {
    display: table-cell;
    vertical-align: middle;
    height: 30px;
    text-align: center;
    width: 33%; }
    .quantitize > *.disabled {
      color: #e1e1e1;
      pointer-events: none; }

.featured-products {
  padding: 25px 0; }

.featured-products .collection-image-preview-wrapper {
  margin-bottom: 2px;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 148%; }

.similar-products__title {
  font-weight: normal;
  letter-spacing: 0.1em;
  display: block; }

.similar-products__price {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 0; }

.featured-products {
  padding: 25px 0; }

.featured-products .collection-image-preview-wrapper {
  margin-bottom: 2px;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 148%; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #737373; }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    background-color: #A9A9A9; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #737373; } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #737373; }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    background-color: #A9A9A9; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #737373; } }

@media (max-width: 1321px) {
  .template-search .search-result {
    min-height: 530px; } }

@media (max-width: 1065px) {
  .twenty-four-hour {
    margin-left: 0 !important;
    display: block !important;
    padding: 15px 0; }
  .template-search .search-result {
    min-height: 440px; } }

@media (max-width: 1100px) {
  header.mega-nav-header .main-header ul > li > a {
    padding: 0 15px; }
  header.mega-nav-header .search-li:after {
    right: 10px; } }

@media (max-width: 930px) {
  .logo img {
    width: 116px !important; }
  .template-search .search-result {
    min-height: 380px; }
  header.mega-nav-header .search-li:after {
    right: 7px; } }

@media (max-width: 876px) {
  header.mega-nav-header .main-header ul > li > a {
    padding: 0 10px !important; } }

@media (max-width: 769px) {
  .template-search .search-result {
    min-height: 400px; } }

@media (max-width: 768px) {
  .template-404 .not-found-content .buttons .button > a {
    display: block;
    background-color: #fff;
    padding: 10px 0;
    width: 110px;
    text-align: center;
    font-weight: 700; }
  .collection-sidebar {
    display: none !important; }
  span.toggle-sidebar {
    display: none; }
  span.toggle-grid, span.toggle-list {
    display: block !important; }
  .mobile-header-bar {
    display: block; }
  header.mega-nav-header .main-header .mobile-mega-menu {
    display: table-cell; }
    header.mega-nav-header .main-header .mobile-mega-menu a {
      position: relative;
      font-size: 22px;
      display: inline-block; }
      header.mega-nav-header .main-header .mobile-mega-menu a i, header.mega-nav-header .main-header .mobile-mega-menu a span {
        display: inline-block;
        vertical-align: middle;
        position: relative; }
      header.mega-nav-header .main-header .mobile-mega-menu a .mobile-cart-icon--flag {
        position: absolute;
        background-color: #737373;
        width: 14px;
        height: 14px;
        line-height: 14px;
        text-align: center;
        font-size: 8px;
        font-weight: 700;
        border-radius: 50%;
        top: -7px;
        right: -7px; }
        header.mega-nav-header .main-header .mobile-mega-menu a .mobile-cart-icon--flag.pulse {
          -webkit-animation-duration: 0.4s;
                  animation-duration: 0.4s;
          -webkit-animation-name: pulse;
                  animation-name: pulse; }
        header.mega-nav-header .main-header .mobile-mega-menu a .mobile-cart-icon--flag > span {
          position: relative;
          left: 1px;
          top: -1px; }
  .full-user-bar {
    display: none; }
  .product-main-image-preview, .product-other-images-preview {
    display: none; }
  .product-photos-wrapper {
    display: block;
    margin-bottom: 20px; }
  .product-other-images-preview {
    display: none; }
  .mobile-carousel-wrapper {
    display: block; }
  .careers-page .current-openings {
    margin-top: 0; }
  header.mega-nav-header .wrapper .main-header {
    height: 46px;
    line-height: 46px; }
    header.mega-nav-header .wrapper .main-header .logo img {
      width: 116px; }
    header.mega-nav-header .wrapper .main-header .main-menu {
      display: none !important; }
    header.mega-nav-header .wrapper .main-header .secondary-menu {
      display: none !important; }
  header.mega-nav-header .wrapper .mega-nav {
    display: none; }
  footer.site-footer .grid__item {
    text-align: center;
    width: 100%; }
    footer.site-footer .grid__item ul {
      float: none;
      width: 100%;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
      footer.site-footer .grid__item ul > p {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); }
  .lookbook-component .slide > .caption {
    position: relative;
    width: 100%;
    background-color: #f7f7f7;
    padding-bottom: 45px; } }

@media (max-width: 652px) {
  .home-countdown {
    -webkit-text-size-adjust: auto;
    zoom: 0.45 !important;
    -moz-transform: scale(0.45) !important; }
  .measurement-instructions-wrapper {
    display: block; }
    .measurement-instructions-wrapper > div {
      display: block; }
      .measurement-instructions-wrapper > div > p {
        font-size: 12px;
        margin-bottom: 9px; }
        .measurement-instructions-wrapper > div > p:nth-child(3) {
          margin-bottom: 9px; }
        .measurement-instructions-wrapper > div > p:nth-child(4) {
          margin-bottom: 9px; }
      .measurement-instructions-wrapper > div:first-child {
        width: 100%;
        text-align: center; }
      .measurement-instructions-wrapper > div:last-child {
        padding-left: 0;
        padding-top: 25px; }
  .remodal[data-remodal-id="site-select"] > .selectors {
    display: block;
    width: 100%; }
  .remodal[data-remodal-id="site-select"] > .selectors > .site {
    display: block;
    width: 100%;
    margin-bottom: 15px; }
  #index-floating-img {
    max-width: 100%; }
  .product-list-item-info {
    text-align: center; }
  h3 {
    margin-top: 15px !important; }
  ul.site-nav li.site-nav--has-dropdown {
    display: none; }
  .contact-page .content .contact-form {
    width: 100%;
    display: block;
    padding: 0; }
  .contact-page .content .contact-image {
    display: none !important; }
  .template-blog .blog-listing-item {
    position: relative;
    padding-left: 30px; }
    .template-blog .blog-listing-item .blog-item-date {
      position: static;
      display: block;
      width: 100%; }
  .hashtag-component .meta .how-to-tag, .hashtag-component .meta .hashtag-navigation {
    float: none;
    text-align: center; }
  .template-cart form.cart a, .template-cart form.cart span {
    font-size: 14px; } }

@media (max-width: 480px) {
  .template-collection .grid-uniform {
    margin-left: -15px; }
    .template-collection .grid-uniform .collection-grid-item-product {
      padding-left: 15px; }
  .template-search #search-form input[type="text"] {
    float: right;
    width: auto !important;
    padding: 0;
    text-align: right;
    text-transform: uppercase; }
  .product-size-options-and-stock {
    display: none; }
  .collection-grid-item-product {
    margin-bottom: 25px; }
    .collection-grid-item-product p.h6 a {
      text-transform: none; }
    .collection-grid-item-product p.h6 span.product-price {
      font-size: 16px; }
  .template-search .search-result {
    min-height: 360px; }
  .product-single__variants {
    max-width: 100%; }
  nav.nav-bar .grid__item:last-child {
    margin-top: 5px; }
  input[type="text"], input[type="button"], select, textarea, .add_item, .remove_item {
    width: 100% !important;
    display: block;
    margin: 0 auto; }
  #md-newsletter-modal {
    padding-top: 50px;
    -webkit-transform: none;
            transform: none;
    left: 10px;
    width: auto;
    right: 10px;
    max-width: 100%;
    min-width: 0;
    top: 0;
    height: 100%; } }

div#buorg {
  z-index: 99999999999 !important; }

html.js .template-search .main-content {
  display: none; }

html.ie9 .main-header > ul > li.account-details-li .slider, html.ie9 .main-header > ul > li.site-switch-li .slider, html.ie9 .main-header > ul > li.CartToggle .slider, html.lt-ie9 .main-header > ul > li.account-details-li .slider, html.lt-ie9 .main-header > ul > li.site-switch-li .slider, html.lt-ie9 .main-header > ul > li.CartToggle .slider, html.no-csstransforms .main-header > ul > li.account-details-li .slider, html.no-csstransforms .main-header > ul > li.site-switch-li .slider, html.no-csstransforms .main-header > ul > li.CartToggle .slider, html.no-csstransforms3d .main-header > ul > li.account-details-li .slider, html.no-csstransforms3d .main-header > ul > li.site-switch-li .slider, html.no-csstransforms3d .main-header > ul > li.CartToggle .slider {
  top: -999px; }

html.ie9 .main-header > ul > li.account-details-li:hover .slider, html.ie9 .main-header > ul > li.site-switch-li:hover .slider, html.ie9 .main-header > ul > li.CartToggle:hover .slider, html.lt-ie9 .main-header > ul > li.account-details-li:hover .slider, html.lt-ie9 .main-header > ul > li.site-switch-li:hover .slider, html.lt-ie9 .main-header > ul > li.CartToggle:hover .slider, html.no-csstransforms .main-header > ul > li.account-details-li:hover .slider, html.no-csstransforms .main-header > ul > li.site-switch-li:hover .slider, html.no-csstransforms .main-header > ul > li.CartToggle:hover .slider, html.no-csstransforms3d .main-header > ul > li.account-details-li:hover .slider, html.no-csstransforms3d .main-header > ul > li.site-switch-li:hover .slider, html.no-csstransforms3d .main-header > ul > li.CartToggle:hover .slider {
  top: 100%; }

html.ie9 .sorting-buttons, html.lt-ie9 .sorting-buttons, html.no-csstransforms .sorting-buttons, html.no-csstransforms3d .sorting-buttons {
  display: none; }

html.ie9 .mega-nav .mega-nav-panel.closed, html.lt-ie9 .mega-nav .mega-nav-panel.closed, html.no-csstransforms .mega-nav .mega-nav-panel.closed, html.no-csstransforms3d .mega-nav .mega-nav-panel.closed {
  top: -999px; }

html.ie9 .mobile-menu-wrapper, html.lt-ie9 .mobile-menu-wrapper, html.no-csstransforms .mobile-menu-wrapper, html.no-csstransforms3d .mobile-menu-wrapper {
  left: -999px; }
  html.ie9 .mobile-menu-wrapper.active, html.lt-ie9 .mobile-menu-wrapper.active, html.no-csstransforms .mobile-menu-wrapper.active, html.no-csstransforms3d .mobile-menu-wrapper.active {
    left: 0; }

html.ie9 body.template-cart .CartToggle:hover .mini-cart, html.ie9 body.template-cart .CartToggle .mini-cart.open, html.lt-ie9 body.template-cart .CartToggle:hover .mini-cart, html.lt-ie9 body.template-cart .CartToggle .mini-cart.open, html.no-csstransforms body.template-cart .CartToggle:hover .mini-cart, html.no-csstransforms body.template-cart .CartToggle .mini-cart.open, html.no-csstransforms3d body.template-cart .CartToggle:hover .mini-cart, html.no-csstransforms3d body.template-cart .CartToggle .mini-cart.open {
  top: -999px !important; }

html.ie10 .search-bar form:after {
  content: none !important; }

@-moz-document url-prefix() {
  #product-final-countdown span.final-countdown-digit {
    line-height: 38px !important; } }

@-webkit-keyframes cog-spin {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg); } }

@keyframes cog-spin {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg); } }

@-webkit-keyframes cog-spin-reverse {
  0% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg); }
  100% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg); } }

@keyframes cog-spin-reverse {
  0% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg); }
  100% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg); } }

.vector-cog {
  transition: margin-top 0.23s ease-in-out;
  -webkit-animation: cog-spin 1s infinite linear;
          animation: cog-spin 1s infinite linear; }
  .vector-cog.up {
    margin-top: -200px !important; }

ul.main-menu > .countdown-to-halloween {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 0;
  z-index: -1;
  font-family: cursive;
  font-size: 18px;
  height: 60px;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  word-spacing: 20px;
  background-color: #000;
  color: #fff;
  min-width: 300px;
  transition: margin-top 0.23s ease-in-out;
  line-height: 55px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px; }
  ul.main-menu > .countdown-to-halloween.up {
    margin-top: -200px !important; }
  ul.main-menu > .countdown-to-halloween > img.web {
    position: absolute;
    top: 0;
    height: 30px; }
    ul.main-menu > .countdown-to-halloween > img.web.web-left {
      right: 100%; }
    ul.main-menu > .countdown-to-halloween > img.web.web-right {
      left: 100%; }

ul.main-menu > .vector-cog:nth-child(1n) {
  position: absolute;
  width: 70px;
  top: 100%;
  left: 90px;
  margin-top: -30px;
  z-index: -1; }
  ul.main-menu > .vector-cog:nth-child(1n) .st0 {
    fill: #000; }

ul.main-menu > .vector-cog:nth-child(2n) {
  position: absolute;
  width: 50px;
  top: 100%;
  left: 90px;
  margin-top: -25px;
  z-index: -1;
  margin-left: 64px;
  -webkit-animation: cog-spin-reverse 1s infinite linear;
          animation: cog-spin-reverse 1s infinite linear; }
  ul.main-menu > .vector-cog:nth-child(2n) .st0 {
    fill: #000; }

ul.secondary-menu > .vector-cog:nth-child(1n) {
  position: absolute;
  width: 150px;
  top: 100%;
  right: 5px;
  margin-top: -77px;
  z-index: -1;
  -webkit-animation: cog-spin 2s infinite linear;
          animation: cog-spin 2s infinite linear; }
  ul.secondary-menu > .vector-cog:nth-child(1n) .st0 {
    fill: #000; }

ul.secondary-menu > .vector-cog:nth-child(2n) {
  position: absolute;
  width: 90px;
  top: 100%;
  right: -46px;
  margin-top: 30px;
  z-index: -1;
  -webkit-animation: cog-spin-reverse 1s infinite linear;
          animation: cog-spin-reverse 1s infinite linear; }
  ul.secondary-menu > .vector-cog:nth-child(2n) .st0 {
    fill: #000; }

#iyp__spacer_top:not(:first-child) {
  max-height: 0; }
