
/******* RESETS */
html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  cursor: pointer;
  font-size: calc(16px + 1vmin);
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
}

/* Displable swipe gesture: enables mouse interaction with group children. */
gwd-swipegallery > gwd-gesture {
  display: none;
}
gwd-carouselgallery > gwd-gesture {
  display: none;
}
/******* DISPLAY */

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing:    border-box;
  box-sizing:         border-box;
}


/******* STYLING */
* {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 400;
}

.bold-font {
  font-weight: 700;
}

p {
  margin: 0;
  padding: 0;
}


.box-shadow {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.text-shadow {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}


/******* TRANSITIONS */

.transition-all {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.transition-color {
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}



/******* TEXT VERTICAL ALIGN */

.v-bottom {
    position: relative !important;
    top: 100% !important;
    -ms-transform: translateY(-100%) !important;
    -webkit-transform: translateY(-100%) !important;
    transform: translateY(-100%) !important;
}

.v-top {
  position: relative !important;
  top: 5% !important;
  -ms-transform: translateY(-2.5%) !important;
  -webkit-transform: translateY(-2.5%) !important;
  transform: translateY(-2.5%) !important;
}



/******* POSITIONING */

/* Vertically center element. */
.v-center {
  position: relative !important;
  top: 49% !important;
  -ms-transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
.flex-v-center {
  display: -ms-flexbox;
  direction: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Horizontally center element. */
.h-center {
  left: 50% !important;
  position: relative !important;
  -ms-transform: translateX(-50%) !important;
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

/* Absolute center element. */
.abs-center {
  position: relative !important;
  left: 50% !important;
  top: 49% !important;
  -ms-transform: translate(-50%,-50%) !important;
  -webkit-transform: translate(-50%,-50%) !important;
  transform: translate(-50%,-50%) !important;
}
.flex-abs-center {
  display: -ms-flexbox;
  direction: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Position items with Flex. */
.flex-spaceBetween {
  display: -ms-flexbox;
  direction: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.js-item-price-holder, .js-item-regular-sale-price-holder {
  display: -ms-flexbox;
  direction: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/******* VISIBILITY */

.mouse-disable {
  pointer-events: none;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

