/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.promotionMessages.pane {
  margin-bottom: 15px;
  -webkit-animation: fadeIn 800ms ease-in-out;
  -moz-animation: fadeIn 800ms ease-in-out;
  -ms-animation: fadeIn 800ms ease-in-out;
  -o-animation: fadeIn 800ms ease-in-out;
  animation: fadeIn 800ms ease-in-out;
  color: #2d672d;
  background-color: #b5dfb5;
  border-color: #5cb85c;
  padding: 16px 24px;
}
.promotionMessages.pane q {
  display: block;
  font-size: 16px;
  line-height: 1.8;
}
.promotionMessages.pane q:before {
  content: "\f05a";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 22px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
  vertical-align: text-bottom;
  margin-right: 10px;
}
.cart,
.invoice {
  position: relative;
}
.progress-free-shipping {
  margin: 0 0 30px;
}
.progress-free-shipping progress {
  display: inline-block;
  width: 100%;
  height: 6px;
  border: 0;
}
@media only screen and (min-width: 768px) {
  .progress-free-shipping progress {
    width: 320px;
  }
}
.progress-free-shipping progress::-webkit-progress-bar {
  background-color: black;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.progress-free-shipping progress::-webkit-progress-value {
  background-color: #0674ec;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.progress-free-shipping.full progress::-webkit-progress-value {
  background-color: #5cb85c;
}
.progress-free-shipping .green {
  font-weight: 700;
  color: #5cb85c;
}
.emptyText {
  display: block;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 100px 30px;
  text-align: center;
  font-style: italic;
}
.products .product {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #333333;
}
@media only screen and (min-width: 768px) {
  .products .product {
    flex-wrap: nowrap;
    gap: 30px;
    padding: 30px 0;
  }
}
.products .product:first-child {
  border-top: 1px solid #333333;
}
.products .product.loading .image,
.products .product.loading .details,
.products .product.loading .price {
  opacity: 0.5;
}
.products .product.loading:after {
  content: '';
  position: absolute;
  background: ResolveUrl("images/default/loader.gif") no-repeat;
  background-size: 100%;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.products .product .image {
  display: flex;
  justify-content: center;
  flex: 0 1 27%;
}
@media only screen and (min-width: 768px) {
  .products .product .image {
    flex: 0 1 150px;
  }
}
.products .product .details {
  flex: 0 1 calc(73% - 20px);
}
@media only screen and (min-width: 768px) {
  .products .product .details {
    flex: 1 0 auto;
  }
}
.products .product .details .brand {
  text-transform: uppercase;
}
.products .product .details .title {
  margin: 0 0 15px;
  line-height: 18px;
}
.products .product .details .title a {
  font-weight: 700;
  color: #777777;
}
.products .product .details .offerText {
  color: #e6575a;
  margin: 0 0 15px;
}
.products .product .details .flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
@media only screen and (min-width: 768px) {
  .products .product .details .flex {
    gap: 15px;
  }
}
.products .product .details .size select,
.products .product .details .amount select {
  width: 70px;
  padding: 0 0 0 5px;
}
@media only screen and (min-width: 768px) {
  .products .product .details .size select,
  .products .product .details .amount select {
    width: 100px;
    padding: 0 0 0 10px;
  }
}
.products .product .details .deleteButton {
  width: 28px;
  height: 44px;
  line-height: 42px;
  text-align: center;
  border: 1px solid transparent;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
@media only screen and (min-width: 375px) {
  .products .product .details .deleteButton {
    width: 44px;
  }
}
.products .product .details .deleteButton:before {
  content: "\f1f8";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 18px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

  color: #777777;
}
.products .product .details .deleteButton:hover {
  border: 1px solid #333333;
}
.products .product .price {
  text-align: right;
  font-weight: 700;
  flex: 1 0 100%;
}
@media only screen and (min-width: 768px) {
  .products .product .price {
    flex: 0 1 auto;
  }
}
.products .product .price .priceOld {
  margin: 0 5px 0 0;
}
.products .product .price .priceOld + .priceNew {
  color: #e6575a;
}
.invoice .products .product .details .flex {
  display: block;
  margin: 0 0 20px;
}
