#lightboxOverlay { position: fixed !important; top: 0; left: 0; height: 100% !important; width: 100% !important; }
#lightbox { position: fixed !important; top: 50% !important; transform: translateY(-50%); }

.cart-form input {
  -webkit-appearance: textfield;
  margin: 0; }
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

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


.btn {
  color: black;
  font-size: 16px;
  background: #F4B41D;
  padding: 10px 0px;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  border-color: #000000;
  cursor: pointer;
  transition: all 200ms ease;
  max-width: 100%;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 20px;
  -moz-appearance: none;
  -webkit-appearance: none; }
  .btn:hover {
    background: #DDA219; }

.btn--cart-tab {
  padding: 5px 11px;
  border-radius: 3px 0 0 3px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  opacity: 0;
  width: 100px;
  height: auto;
  z-index: 1000; }
  .btn--cart-tab.js-active {
    transform: translateY(-50%);
    opacity: 1; }

.btn-product-add {
  font-family: 'L5', sans-serif;
  font-weight: bold;
  font-size:18px;
  width: 210px;
  height: 52px;
  margin-left: 10px;
  border-width: 0px;
}

.btn__counter {
  font-family: Arial;
  display: block;
  margin: 0 auto 10px auto;
  font-size: 18px; }

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

.justbutton {
  margin: 0px;
  padding: 0px;
  width: 210px;
}

.cart {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  max-width: 350px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1002;
  background: #AD4C4C;
  border-radius: 1px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out; }
  .cart.js-active {
    transform: translateX(0);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1); }

.cart-section {
  position: relative;
  padding: 20px;
  box-sizing: border-box; }

.cart-section--top {
  z-index: 1005;
  box-sizing: border-box; }

.cart-title {
  color: #ffffff;
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  box-sizing: border-box; }

.btn--close {
  position: absolute;
  right: 9px;
  top: 8px;
  font-size: 35px;
  color: #FFFFFF;
  border: none;
  background: transparent;
  transition: transform 100ms ease;
  cursor: pointer;
  box-sizing: border-box; }
  .btn--close:hover {
    transform: scale(1.2);
    color: dimgray; }

.cart-form {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 1001;
  padding: 70px 0 140px 0;
  box-sizing: border-box; }

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

.cart-item {
  margin-bottom: 20px;
  overflow: hidden;
  backface-visibility: visible;
  min-height: 65px;
  position: relative;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  box-sizing: border-box; }
  .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: 1003; }

.cart-item__img {
  width: 65px;
  height: 65px;
  border-radius: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  position: absolute;
  box-sizing: border-box; }

.cart-item__content {
  width: 100%;
  padding-left: 75px;
  box-sizing: border-box; }

.cart-item__content-row {
  color: white;
  margin-bottom: 5px;
  box-sizing: border-box; }

.cart-item__variant-title {
  float: right;
  font-weight: bold;
  font-size: 11px;
  line-height: 17px;
  color: #ffffff;
  box-sizing: border-box; }

.cart-item__quantity-container {
  border: 1px solid #ffffff;
  float: left;
  border-radius: 3px;
  box-sizing: border-box; }

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

.cart-item__quantity {
  color: white;
  width: 38px;
  height: 21px;
  font-size: inherit;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  background: transparent;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  display: block;
  float: left;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box; }

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

.cart-item__price {
  color: white;
  line-height: 23px;
  float: right;
  font-weight: bold;
  box-sizing: border-box; }

.cart-bottom {
  color: white;
  border-top: 1px solid #a5a5a5;
  box-sizing: border-box; }

.cart-info {
  padding: 15px 20px 10px;
  box-sizing: border-box; }

.cart-info__total {
  float: left;
  text-transform: uppercase;
  box-sizing: border-box; }

.cart-info__small {
  font-size: 11px;
  box-sizing: border-box; }

.cart-info__pricing {
  float: right;
  box-sizing: border-box; }

.cart-discount-notice {
  color: white;
  margin-bottom: 10px;
  box-sizing: border-box; }

.cart-actions-container {
  padding-top: 5px;
  box-sizing: border-box; }

.pricing {
  margin-left: 5px;
  font-size: 16px;
  color: white;
  box-sizing: border-box; }

.product {
  display: inline-block;
  background: rgba(0,0,0,0.6);
  width: 320px;
  padding-bottom: 20px;
  line-height: 1;
  box-sizing: border-box; }

.variant-image{
    padding:0px;
    float: left;
    display: block;
    width: 145px;
    height: 148px;
    margin: 0px 10px 0px 0px;
}

.variant-image2 {
    margin: 0px;
    padding:0px;
    display: block;
    width: 145px;
    height: 148px;
    
}

.productimages {
    padding: 10px 10px 10px 10px;
}
.productinfo {

  font-family: 'L5', sans-serif;
  font-weight: bold;
  padding: 0px;
  margin: 0px;
}

.product-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 27px;
    margin: 7px 10px 10px 10px;
}

.variant-price {
  color: #ffffff;
    font-weight: 600;
    font-size: 23px;
    margin: 15px;
}

.description {
    padding:0px;
    margin: 17px 10px 20px 10px;
    width:300px;
    color: #ffffff;
}
.description h1 {
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    }
.description li {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    word-wrap: break-word;
    font-feature-settings: 'liga';
    list-style: disc;
    list-style-position: inside;
}
.description ul {
   list-style-position: inside;
}


.variant-selectors {
  width:210px;
  margin-left: 10px;
  margin-bottom: 17px;
}

.buttonwithvariantunderpay {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: right;
  justify-content: right;
}

.buttonwithvariant .btn {
  background: #30B579;
}
.buttonwithvariant .btn:hover {
    background: #28A667; }



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