/*--- 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 -----*/
.stickyCart {
  position: sticky;
  top: 30px;
  padding: 25px 30px;
  margin: 30px 0 0;
  background-color: #f2f2f2;
}
@media only screen and (min-width: 1024px) {
  .stickyCart {
    margin: 0;
    flex: 1 0 40%;
  }
}
@media only screen and (min-width: 1280px) {
  .stickyCart {
    flex: 1 0 36%;
  }
}
.stickyCart .inner > .title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin: 0 0 15px;
}
.stickyCart.loading .inner {
  opacity: 0.5;
}
.stickyCart.loading:after {
  content: '';
  position: absolute;
  background: transparent ResolveUrl("images/default/loader.gif") no-repeat;
  background-size: 100%;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.stickyCart .costs {
  width: 100%;
}
.stickyCart .costs tr td {
  padding: 5px 0;
}
.stickyCart .costs tr td:first-child {
  text-align: left;
  width: 70%;
}
.stickyCart .costs tr td:last-child {
  text-align: right;
  width: 30%;
}
.stickyCart .costs tr.promotionCode .code {
  font-weight: 600;
}
.stickyCart .costs tr.promotionCode .remove {
  cursor: pointer;
}
.stickyCart .costs tr.promotionCode .remove:before {
  content: '\f1f8';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
  margin: 0 0 0 5px;
  color: #777777;
  -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;*/

}
.stickyCart .costs tr.promotionCode .remove:hover:before {
  color: #e6575a;
}
.stickyCart .costs tr.shippingCosts td {
  padding: 5px 0 10px;
}
.stickyCart .costs tr.shippingCosts .shippingCostsFree {
  color: #99cba8;
  font-weight: bold;
}
.stickyCart .costs tr.total {
  border-top: 1px solid #333333;
}
.stickyCart .costs tr.total td {
  padding: 10px 0;
  font-weight: 700;
}
.stickyCart .costs tr.totalDiscount {
  font-style: italic;
  color: #e6575a;
}
.stickyCart .discounts {
  margin: 20px 0 30px;
}
.stickyCart .discounts .popup-open {
  color: #777777;
  text-decoration: underline;
  font-weight: 700;
}
.stickyCart .discounts .popup-open:before {
  content: "\f067";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 15px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
  margin: 0 8px 0 0;
  vertical-align: middle;
}
.stickyCart .formButtons {
  margin: 30px 0 0;
}
.stickyCart .formButtons .bttnNext,
.stickyCart .formButtons .bttnPrev {
  width: 100%;
}
.stickyCart .formButtons .bttnNext + .bttn {
  margin-left: 0;
}
.stickyCart .expressCheckout .bttn.divider:after {
  background: #f2f2f2;
}
.stickyCart .expressCheckout .bttn.checkout {
  margin: 0 0 10px;
}
.stickyCart .expressCheckout .terms {
  line-height: 18px;
  padding: 0 0 5px;
}
.stickyCart .expressCheckout .row {
  line-height: 24px;
  padding: 5px 0;
}
.stickyCart #paymentMethods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 25px 0 0;
  padding: 0 20px;
}
.stickyCart #paymentMethods img {
  width: auto;
  height: 20px;
}
