.site-wrapper {
  transition: all 0.2s ease-out;
  width: 100%;
}

#fixed-header {
  transition: all 0.2s ease-out;
}

.js-cart-is-open .site-wrapper {
  margin-left: -90%;
  opacity: .2;
}

.js-cart-is-open #fixed-header {
  margin-left: -90%;
}

@media (min-width: 420px) {
  .js-cart-is-open .site-wrapper {
    margin-left: -400px;
  }

  .js-cart-is-open #fixed-header {
    margin-left: -400px;
  }
}

.cart {
  position: fixed;
  width: 100%;
  max-width: 90%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 30000;
  background: white;
  font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: bold;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 1px;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transition: transform 0.2s ease-out;
}

@media (min-width: 420px) {
  .cart {
    max-width: 400px;  
  }
}

.cart.js-active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  border-left: 1px solid #000;
}

.cart-section {
  position: relative;
  padding: 0px 20px;
}

.cart-section--top {
  z-index: 5;
  padding-right: 0px;
  border-bottom: 1px solid #000;
  height: 43px
}

.cart-title {
  color: #000;
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
  line-height: 43px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  text-transform: uppercase;
}

.btn--close {
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 26px;
  color: #000000;
  border: none;
  background: transparent;
  transition: transform 100ms ease;
  cursor: pointer;
  width: 21px;
  height: 35px;
}

.btn--close:hover {
  color: #000000;
}

.cart-form {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  padding: 70px 0 240px 0;
}

.cart-item-container {
  height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  perspective: 400px;
  perspective-origin: 50% 0px;
}

.cart-item {
  margin-bottom: 20px;
  overflow: hidden;
  backface-visibility: visible;
  min-height: 65px;
  position: relative;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.cart-item.js-hidden {
  opacity: 0;
}
.cart-item.js-working:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.cart-item__img {
  width: 65px;
  height: 65px;
  border-radius: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 10px;
  flex: 0 0 auto;
}

.cart-item__title {
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
}

.cart-item__content {
  width: 100%;
  display: flex;
}

.cart-item__content-row {
  margin-bottom: 5px;
}

.cart-item__copy {
  margin: 10px 10px 0 0;
  flex: 1 1 calc(75% - 65px);
}

.cart-item__variant-title {
  font-weight: bold;
  font-size: 12px;
  line-height: 17px;
  color: #767676;
  text-transform: uppercase;
}

.cart-item__quantity-container {
  border: 1px solid #767676;
  border-radius: 0px;
  margin: 10px 10px 0 0;
  flex: 0 0 40px;
  align-self: flex-start;
  position: relative;
}

.cart-item__quantity-container:after {
  border-bottom: 2px solid #767676;
  border-right: 2px solid #767676;
  content: '';
  display: block;
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform-origin: calc(50% + 3px) calc(50% - 2px);
  -ms-transform-origin: calc(50% + 3px) calc(50% - 2px);
  transform-origin: calc(50% + 3px) calc(50% - 2px);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 7px;
}

.cart-item__quantity {
  position: static;
  color: #767676;
  font-size: 12px;
  font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  border: none;
  letter-spacing: .5px;
  text-align: center;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  background: transparent;
  display: block;
  padding: 0 10px 0 5px;
  border-radius: 0;
  line-height: 1;
  height: 21px;
  display: block;
  width: 100%;
}


.cart-item__remove {
  appearance: none;
  padding: 0;
  background: transparent;
  border: none;
  text-decoration: underline;
  color: #999;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}

.quantity-decrement, .quantity-increment {
  color: #767676;
  display: block;
  float: left;
  height: 21px;
  font-family: monospace;
  width: 25px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  line-height: 1.35;
}

_:-webkit-full-screen, :root .quantity-decrement { line-height: 16px; }
_:-webkit-full-screen, :root .quantity-increment { line-height: 16px; }

.quantity-decrement {
  margin-top: -2px;
}

.quantity-decrement:hover, .quantity-increment:hover {
  color: #767676;
}

.quantity-decrement:focus, .quantity-increment:focus {
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__price,
.cart-item__price.benton,
.cart-item__compare {
  line-height: 23px;
  font-weight: bold;
  font-size: 12px;
  flex: 0 0 35px;
  text-align: right;
  margin-top: 10px;
}

.cart-item__price.surplus {
  color: #e74e3c;
}

.cart-item__compare {
  position: absolute;
  bottom: 5px;
  right: 0px;
}

.cart-bottom {
  border-top: 1px solid #000;
}

.cart-info {
  padding: 20px 20px 0;
}

.cart-info__total {
  float: left;
  text-transform: uppercase;
  font-size: 12px;
}

.cart-info__pricing {
  float: right;
}

.cart-discount-notice {
  color: #767676;
  margin-bottom: 10px;
}

.cart-actions-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pricing {
  margin-left: 5px;
  font-size: 12px;
  color: black;
}

.type--center {
  text-align: center;
}

.magazine.product {
  margin: 0 10px;
}

.visuallyhidden {
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.variant-price {
  margin: 10px 0 !important;
}

.variant-selectors {
  width: 90%;
  left: auto;
  margin: 0 5% 20px;
/*   border: 1px solid black; */
  min-height: 32px;
}

@media screen and (max-width:45em){
  .variant-selectors {
    width: 100%;
    margin: 0 0 20px;
  }
}

.variant-selectors select {
  border-radius: 0px;
  width: 100%;
  left: auto;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0 10px;
  z-index: 2;
  position: relative;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  height: 36px;
}

.variant-selectors select options {
  text-align: center;
}

.ui-wrapper .buy .variant-selectors {
    width: 100%;
    margin: 0 auto 20px;
}

.ui-wrapper.clean .buy .variant-selectors {
  max-width: 500px;
  clear: both;
  height: auto;
}

.ui-wrapper.clean .buy .variant-selectors div {
  margin-top: 2;
  position: relative;
}

.ui-wrapper.clean .buy .variant-selectors div + div {
  margin-top: 20px;
  z-index: 1;
}

.shopify-select {
  position: relative;
  height: 36px;
}

.shopify-select svg {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 13px;
  right: 9px;
  z-index: 1;
}

.btn.buy-button {
  background: #000;
  max-width: 100%;
  width: 90%;
  font-weight: bold;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  -moz-appearance: none;
  -webkit-appearance: none;
  line-height: 1;
}

@media screen and (max-width:45em){
  .btn.buy-button {
    width: 100%;
  }
}

.btn--test {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}

.btn--cart-tab {
  padding: 5px 11px;
  border-radius: 3px 0 0 3px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  opacity: 0;
  min-width: inherit;
  width: auto;
  height: auto;
  z-index: 200;
  display: none;
}
.btn--cart-tab img {
  width: 16px;
  height: auto;
}
.btn--cart-tab.js-active {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  opacity: 1;
}

.btn__counter {
  display: block;
  margin: 0;
  font-size: 12px !important;
  font-family: Helvetica,Arial,sans-serif;
  font-weight: bold;
  text-align: center;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 37px;
  height: 34px;
  line-height: 37px;
  letter-spacing: -1px;
}

.icon-cart--side {
  height: 20px;
  width: 20px;
}

input[type="submit"].btn--cart-checkout,
.btn--cart-checkout {
  background: #000;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border: none;
  height: 36px;
  -webkit-font-smoothing: subpixel-antialiased;
}

input[type="submit"].btn--cart-checkout:focus,
.btn--cart-checkout:focus,
.btn.buy-button:focus {
  outline: none;
}

.btn--cart-tab {
  padding: 5px 11px;
  border-radius: 0px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  opacity: 0;
  min-width: inherit;
  width: auto;
  height: auto;
  z-index: 200;
  background: #000;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

.btn--cart-tab.js-active {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  opacity: 1;
}

.cart-fine-print {
  display: block;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  padding: 0 20px;
}

.cart-fine-print a {
  text-transform: uppercase;
  font-weight: normal;
}

/* Nice Select */

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 0px;
  border: solid 1px #000;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto;
  z-index: 999; }
/*
  .nice-select:hover {
    border-color: #dbdbdb; }
*/
/*
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
*/
  .nice-select:after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    display: inline-block;
    height: 5px;
    margin-top: -7px;
    pointer-events: none;
    position: relative;
    right: -6px;
    top: -2px;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
/*
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
*/}
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: -1px !important;
      right: -1px !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; 
    float: none; }
    .nice-select.small:after {
      height: 8px;
      width: 8px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .current {
    color: #000;
  }
  .nice-select .list {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0px;
/*     box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); */
    box-sizing: border-box;
    margin-top: 0px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    margin-bottom: 20px;
/*
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
*/
/*
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
*/
/*     -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; */

/*     transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; */
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    border-top: 1px solid #000;
    color: #000;
    cursor: pointer;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover {
      background-color: #000;  color: #fff; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }
  .nice-select .option:first-child {
    border-top: 0px;
    }
.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }
