html[dir=rtl] .go-back svg {
  transform: rotate(180deg);
}

#inner-header {
  background-color: var(--innerHeaderBackgroundColor);
  color: var(--innerHeaderTextColor);
  min-height: 4em;
  margin-bottom: 3em;
  position: -webkit-sticky;
  position: sticky;
  z-index: 99;
  top: 0;
}
@media screen and (max-width: 991px) {
  #inner-header {
    margin-bottom: 0;
  }
}
#inner-header .container,
#inner-header .row {
  height: 100%;
}
#inner-header a {
  display: block;
  color: inherit;
}
#inner-header .go-back {
  text-align: start;
}
#inner-header .icon-text {
  text-align: end;
  font-family: inherit !important;
}
#inner-header .ih-logo {
  padding: 1em 0;
}
#inner-header .ih-logo img {
  margin: 0 auto;
  width: var(--innerHeaderWidth);
  max-height: 130px;
}
#inner-header svg {
  fill: var(--innerHeaderTextColor);
  width: 24px;
  margin: 0 0.3em;
  display: inline-block;
  vertical-align: middle;
}

#cart-address {
  width: calc(100% - 340px);
}
@media screen and (max-width: 991px) {
  #cart-address {
    width: 100%;
    padding-bottom: 150px;
  }
}
#cart-address .cart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3em;
  margin-top: 0.7em;
}
#cart-address .cart-title h2 {
  font-size: 1.4em;
  font-weight: 600;
}
#cart-address .cart-title h2 span {
  font-size: 0.8em;
  font-weight: 300;
}
#cart-address .cart-title .add-new-address {
  color: inherit;
  opacity: 0.6;
}
#cart-address .delivery-detail .address-info,
#cart-address .delivery-detail .delivery-info {
  margin-bottom: 2em;
}
@media screen and (max-width: 991px) {
  #cart-address .delivery-detail .address-info .address-box:first-child {
    margin-bottom: 2em;
  }
}
#cart-address .delivery-detail .add-first-address {
  display: block;
  color: inherit;
  background-color: #f8f8f8;
  border: 1px solid #f0f0f0;
  padding: 1em;
  border-radius: 0.4em;
}
#cart-address .info-price {
  font-weight: 600;
}
#cart-address .info-price.free {
  color: #43cc97;
}
#cart-address .ab-title {
  margin-bottom: 1em;
  font-weight: 500;
  width: 100%;
}
#cart-address .comment-box textarea {
  font-family: inherit;
  font-size: 0.8em;
  height: 70px;
}
#cart-address .corp-input {
  display: none;
}
#cart-address .corp-input.active {
  display: block;
}

#cart-payment {
  width: calc(100% - 340px);
}
@media screen and (max-width: 991px) {
  #cart-payment {
    width: 100%;
    padding-bottom: 150px;
  }
}
#cart-payment .cart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3em;
  margin-top: 0.7em;
}
#cart-payment .cart-title h2 {
  font-size: 1.4em;
  font-weight: 600;
}
#cart-payment .cart-title h2 span {
  font-size: 0.8em;
  font-weight: 300;
}
#cart-payment .payment-type-accordion .pta-item {
  margin-top: -1px;
  position: relative;
  transition: all 0.3s;
}
#cart-payment .payment-type-accordion .pta-item .pta-accordion-opener {
  color: inherit;
  display: flex;
  align-items: center;
  border: 1px solid var(--boxBorderColor);
  background-color: var(--boxBackgroundColor);
  min-height: 3.4em;
}
#cart-payment .payment-type-accordion .pta-item .pta-accordion-opener label {
  padding: 1em;
}
#cart-payment .payment-type-accordion .pta-item .pta-accordion-opener strong {
  font-weight: 800;
}
#cart-payment .payment-type-accordion .pta-item .pta-content {
  border: 1px solid var(--boxBorderColor);
  border-top: none;
  border-bottom: none;
  margin: 0;
  overflow: hidden;
  display: none;
  height: auto !important;
}
#cart-payment .payment-type-accordion .pta-item .pta-content .inner {
  padding: 1.2em;
  box-sizing: border-box;
  overflow: hidden;
}
#cart-payment .payment-type-accordion .pta-item .pta-content .inner p {
  line-height: 1.3;
  font-size: 1em;
  opacity: 0.6;
  margin-bottom: 2em;
}
#cart-payment .payment-type-accordion .pta-item.papara img {
  width: 70px;
  margin-right: 0.5em;
}
#cart-payment .payment-type-accordion .pta-item.papara input[type=radio]:checked ~ .radio {
  color: #8c00a1;
  border-color: #8c00a1;
}
#cart-payment .payment-type-accordion .pta-item.papara input[type=radio]:checked ~ .radio:after {
  background-color: #8c00a1;
}
#cart-payment .payment-type-accordion .pta-item.selected {
  transform: scale(1.02);
  overflow: hidden;
  z-index: 2;
  margin: 1em 0 2em;
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.3);
  border-radius: var(--generalBorderRadius);
}
#cart-payment .payment-type-accordion .pta-item.selected .pta-content {
  border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
  background-color: var(--boxBackgroundColor);
  border-top: none;
}
#cart-payment .payment-type-accordion .pta-item.selected .pta-accordion-opener {
  border-radius: var(--generalBorderRadius) var(--generalBorderRadius) 0 0;
}
#cart-payment .payment-type-accordion .pta-item.selected .yek {
  border-radius: var(--generalBorderRadius) !important;
}
#cart-payment .payment-type-accordion .pta-item.selected + .pta-item .pta-accordion-opener {
  border-top-left-radius: var(--generalBorderRadius) !important;
  border-top-right-radius: var(--generalBorderRadius) !important;
}
#cart-payment .payment-type-accordion .pta-item:first-child .pta-accordion-opener {
  border-radius: var(--generalBorderRadius) var(--generalBorderRadius) 0 0;
}
#cart-payment .payment-type-accordion .pta-item:last-child .pta-accordion-opener {
  border-top-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: var(--generalBorderRadius) !important;
  border-bottom-right-radius: var(--generalBorderRadius) !important;
}
#cart-payment .payment-type-accordion .pta-item:last-child .active {
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
#cart-payment .payment-type-accordion .pta-item:last-child .active + .pta-content {
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
}
#cart-payment .payment-type-accordion .installments {
  padding: 1em;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
}
#cart-payment .payment-type-accordion .installments .title {
  color: var(--generalPrimaryColor);
  margin-bottom: 0.6em;
  display: block;
}
#cart-payment .payment-type-accordion .installments #installments-info {
  font-size: 0.85em;
  opacity: 0.8;
  display: block;
}
#cart-payment .payment-type-accordion .installments #installments-table {
  display: block;
}
#cart-payment .payment-type-accordion .installments #installments-table label {
  font-size: 0.8em;
  margin-top: 0.5em;
  align-items: center;
  display: inline-flex;
}
#cart-payment .bank-list .bank-list-item {
  padding: 1em 0;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
#cart-payment .bank-list .bank-list-item:last-child {
  border-bottom: none;
}
#cart-payment .bank-list .bank-list-item img {
  max-height: 3em;
  max-width: 120px;
  margin-bottom: 1em;
  width: auto;
}
#cart-payment .bank-list .bank-list-item ul li {
  padding: 0.4em;
  display: flex;
  font-size: 0.9em;
  justify-content: space-between;
}
#cart-payment .bank-list .bank-list-item ul li span {
  white-space: nowrap;
}
#cart-payment .bank-list .bank-list-item ul li span.label {
  font-weight: 600;
  width: 40%;
}
#cart-payment .card-wrapper {
  align-self: center;
}
#cart-payment .dsecure {
  padding: 1em;
}

.agreements {
  margin-top: 1.4em;
  margin-bottom: 5em;
}
.agreements .agreements-title {
  font-weight: 600;
  opacity: 0.8;
  font-size: 1em;
  padding-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.agreements .agreements-title svg {
  width: 16px;
  fill: var(--generalTextColor);
  margin: 0;
}
.agreements .agreements-title button {
  transition: all 0.3s;
  transform-origin: center;
}
.agreements .agreements-title button.ninini {
  transform: rotate(180deg);
}
.agreements .agreements-item {
  margin-top: 1.4em;
  padding: 2em;
  border-radius: var(--generalBorderRadius);
  background-color: var(bodyBackgroundColor);
  border: 1px solid var(--boxBorderColor);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 991px) {
  .agreements .agreements-item {
    font-size: 75%;
  }
}
.agreements .agreements-item .inner-content {
  line-height: 1.8;
  font-size: 80%;
  opacity: 0.5;
  height: 50px;
  overflow-y: auto;
}
.agreements .agreements-item .inner-content.readable {
  height: 300px;
}
.agreements .agreements-item .reading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(var(--rgbBodyBackgroundColor), 1));
  background: linear-gradient(180deg, rgba(var(--rgbBodyBackgroundColor), 0) 0%, rgba(var(--rgbBodyBackgroundColor), 1) 100%);
}

.jp-card.jp-card-safari.jp-card-identified .jp-card-front:before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}
.jp-card.jp-card-safari.jp-card-identified .jp-card-back:before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}

.jp-card.jp-card-ie-10.jp-card-flipped {
  transform: 0deg;
}
.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-front {
  transform: rotateY(0deg);
}
.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back {
  transform: rotateY(0deg);
}
.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back:after {
  left: 18%;
}
.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-cvc {
  transform: rotateY(180deg);
  left: 5%;
}
.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-shiny {
  left: 84%;
}
.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-shiny:after {
  left: -480%;
  transform: rotateY(180deg);
}

.jp-card.jp-card-ie-11.jp-card-flipped {
  transform: 0deg;
}
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-front {
  transform: rotateY(0deg);
}
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back {
  transform: rotateY(0deg);
}
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back:after {
  left: 18%;
}
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-cvc {
  transform: rotateY(180deg);
  left: 5%;
}
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-shiny {
  left: 84%;
}
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-shiny:after {
  left: -480%;
  transform: rotateY(180deg);
}

.jp-card.jp-card-ie-10.jp-card-amex .jp-card-back {
  display: none;
}

.jp-card.jp-card-ie-11.jp-card-amex .jp-card-back {
  display: none;
}

.jp-card-logo {
  height: 36px;
  width: 60px;
  font-style: italic;
  box-sizing: border-box;
}
.jp-card-logo:before {
  box-sizing: border-box;
}
.jp-card-logo:after {
  box-sizing: border-box;
}

.jp-card-logo.jp-card-amex {
  text-transform: uppercase;
  font-size: 4px;
  font-weight: bold;
  color: white;
  background-image: repeating-radial-gradient(circle at center, #fff 1px, #999 2px);
  background-image: repeating-radial-gradient(circle at center, #fff 1px, #999 2px);
  border: 1px solid #eee;
}
.jp-card-logo.jp-card-amex:before {
  width: 28px;
  display: block;
  position: absolute;
  left: 16px;
  height: 28px;
  content: "american";
  top: 3px;
  text-align: left;
  padding-left: 2px;
  padding-top: 11px;
  background: #267ac3;
}
.jp-card-logo.jp-card-amex:after {
  width: 28px;
  display: block;
  position: absolute;
  left: 16px;
  content: "express";
  bottom: 11px;
  text-align: right;
  padding-right: 2px;
}

.jp-card.jp-card-amex.jp-card-flipped {
  transform: none;
}

.jp-card.jp-card-amex.jp-card-identified .jp-card-front:before {
  background-color: #108168;
}
.jp-card.jp-card-amex.jp-card-identified .jp-card-front .jp-card-logo.jp-card-amex {
  opacity: 1;
}
.jp-card.jp-card-amex.jp-card-identified .jp-card-front .jp-card-cvc {
  visibility: visible;
}
.jp-card.jp-card-amex.jp-card-identified .jp-card-front:after {
  opacity: 1;
}
.jp-card.jp-card-amex.jp-card-identified .jp-card-back:before {
  background-color: #108168;
}

.jp-card-logo.jp-card-discover {
  background: #f60;
  color: #111;
  text-transform: uppercase;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 9px;
  letter-spacing: 0.03em;
  border: 1px solid #eee;
}
.jp-card-logo.jp-card-discover:before {
  content: " ";
  display: block;
  position: absolute;
  background: white;
  width: 200px;
  height: 200px;
  border-radius: 200px;
  bottom: -5%;
  right: -80%;
  z-index: -1;
}
.jp-card-logo.jp-card-discover:after {
  content: " ";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  top: 10px;
  left: 27px;
  background-color: #f60;
  background-image: radial-gradient(#f60, #fff);
  content: "network";
  font-size: 4px;
  line-height: 24px;
  text-indent: -7px;
}

.jp-card {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 100%;
  border-radius: 10px;
  transform-style: preserve-3d;
  transition: all 400ms linear;
}
.jp-card .jp-card-front {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: all 400ms linear;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
}
.jp-card .jp-card-front .jp-card-logo.jp-card-discover {
  right: 12%;
  top: 18%;
}
.jp-card .jp-card-front:before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 10px;
  transition: all 400ms ease;
}
.jp-card .jp-card-front:after {
  content: " ";
  display: block;
}
.jp-card .jp-card-front .jp-card-display {
  color: #fff;
  font-weight: normal;
  opacity: 0.5;
  transition: opacity 400ms linear;
}
.jp-card .jp-card-front .jp-card-display.jp-card-focused {
  opacity: 1;
  font-weight: 700;
}
.jp-card .jp-card-front .jp-card-cvc {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 14px;
}
.jp-card .jp-card-front .jp-card-shiny {
  width: 50px;
  height: 35px;
  border-radius: 5px;
  background: #ccc;
  position: relative;
}
.jp-card .jp-card-front .jp-card-shiny:before {
  content: " ";
  display: block;
  width: 70%;
  height: 60%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #d9d9d9;
  position: absolute;
  top: 20%;
}
.jp-card .jp-card-front .jp-card-logo {
  position: absolute;
  opacity: 0;
  right: 5%;
  top: 8%;
  transition: 400ms;
}
.jp-card .jp-card-front .jp-card-lower {
  width: 80%;
  position: absolute;
  left: 10%;
  bottom: 30px;
}
.jp-card .jp-card-front .jp-card-lower .jp-card-cvc {
  visibility: hidden;
  float: right;
  position: relative;
  bottom: 5px;
}
.jp-card .jp-card-front .jp-card-lower .jp-card-number {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 24px;
  clear: both;
  margin-bottom: 30px;
}
.jp-card .jp-card-front .jp-card-lower .jp-card-expiry {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  letter-spacing: 0;
  position: relative;
  float: right;
  width: 25%;
}
.jp-card .jp-card-front .jp-card-lower .jp-card-expiry:after {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 7px;
  white-space: pre;
  display: block;
  opacity: 0.5;
  position: absolute;
  content: attr(data-after);
  text-align: right;
  right: 100%;
  margin-right: 5px;
  margin-top: 2px;
  bottom: 0;
}
.jp-card .jp-card-front .jp-card-lower .jp-card-expiry:before {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 7px;
  white-space: pre;
  display: block;
  opacity: 0.5;
  content: attr(data-before);
  margin-bottom: 2px;
  font-size: 7px;
  text-transform: uppercase;
}
.jp-card .jp-card-front .jp-card-lower .jp-card-name {
  text-transform: uppercase;
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 20px;
  max-height: 45px;
  position: absolute;
  bottom: 0;
  width: 190px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: horizontal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jp-card > * {
  box-sizing: border-box;
  font-family: inherit;
}
.jp-card > *:after {
  box-sizing: border-box;
  font-family: inherit;
}
.jp-card > *:before {
  box-sizing: border-box;
  font-family: inherit;
}
.jp-card .jp-card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: all 400ms linear;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
  transform: rotateY(180deg);
}
.jp-card .jp-card-back:before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 10px;
  transition: all 400ms ease;
}
.jp-card .jp-card-back:after {
  content: " ";
  display: block;
  content: " ";
  display: block;
  background-color: #fff;
  background-image: linear-gradient(#fff, #fff);
  width: 80%;
  height: 16%;
  position: absolute;
  top: 40%;
  left: 2%;
}
.jp-card .jp-card-back .jp-card-display {
  color: #fff;
  font-weight: normal;
  opacity: 0.5;
  transition: opacity 400ms linear;
}
.jp-card .jp-card-back .jp-card-display.jp-card-focused {
  opacity: 1;
  font-weight: 700;
}
.jp-card .jp-card-back .jp-card-cvc {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 14px;
  position: absolute;
  top: 40%;
  left: 85%;
  transition-delay: 600ms;
}
.jp-card .jp-card-back .jp-card-shiny {
  width: 50px;
  height: 35px;
  border-radius: 5px;
  background: #ccc;
  position: relative;
  position: absolute;
  top: 66%;
  left: 2%;
}
.jp-card .jp-card-back .jp-card-shiny:before {
  content: " ";
  display: block;
  width: 70%;
  height: 60%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #d9d9d9;
  position: absolute;
  top: 20%;
}
.jp-card .jp-card-back .jp-card-shiny:after {
  content: "This card has been issued by Jesse Pollak and is licensed for anyone to use anywhere for free. It comes with no warranty. For support issues, please visit: github.com/jessepollak/card.";
  position: absolute;
  left: 120%;
  top: 5%;
  color: white;
  font-size: 7px;
  width: 230px;
  opacity: 0.5;
}
.jp-card .jp-card-back .jp-card-bar {
  background-color: #444;
  background-image: linear-gradient(#444, #333);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 10%;
}

.jp-card.jp-card-discover.jp-card-identified .jp-card-front:before {
  background-color: #86b8cf;
}
.jp-card.jp-card-discover.jp-card-identified .jp-card-front:after {
  transition: 400ms;
  content: " ";
  display: block;
  background-color: #f60;
  background-image: linear-gradient(#f60, #ffa366, #f60);
  height: 50px;
  width: 50px;
  border-radius: 25px;
  position: absolute;
  left: 100%;
  top: 15%;
  margin-left: -25px;
  box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
}
.jp-card.jp-card-discover.jp-card-identified .jp-card-back:before {
  background-color: #86b8cf;
}
.jp-card.jp-card-discover.jp-card-identified .jp-card-logo.jp-card-discover {
  opacity: 1;
}

.jp-card-logo.jp-card-unionpay {
  width: 60px;
  display: block;
  height: 40px;
  background: #e21836;
  -webkit-transform: skew(-15deg);
  -o-transform: skew(20deg);
  border-radius: 5px;
  font-size: 10px;
  z-index: 1;
  line-height: 33px;
  color: #fff;
  text-align: center;
  font-family: "Sans-serif", "Microsoft Yahei", "\\5FAE\\8F6F\\96C5\\9ED1", "Hiragino Sans", "Gulim", "\\5B8B\\4F53";
  font-weight: bold;
}
.jp-card-logo.jp-card-unionpay:after {
  display: block;
  margin: 0 auto;
  position: absolute;
  height: 40px;
  top: 0;
  z-index: -1;
  content: "\\94F6\\8054";
  width: 26px;
  background: #007b84;
  left: 34px;
  border-radius: 5px;
  font-size: 10px;
  line-height: 54px;
  text-indent: -17px;
}
.jp-card-logo.jp-card-unionpay:before {
  display: block;
  margin: 0 auto;
  position: absolute;
  height: 40px;
  top: 0;
  z-index: -1;
  content: " ";
  width: 28px;
  background: #00447c;
  left: 14px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.jp-card.jp-card-unionpay.jp-card-identified .jp-card-back:before {
  background-color: #987c00;
}
.jp-card.jp-card-unionpay.jp-card-identified .jp-card-front:before {
  background-color: #987c00;
}
.jp-card.jp-card-unionpay.jp-card-identified .jp-card-logo.jp-card-unionpay {
  opacity: 1;
}

.jp-card-logo.jp-card-visa {
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 18px;
  margin-top: 5px;
}
.jp-card-logo.jp-card-visa:before {
  content: " ";
  display: block;
  width: 100%;
  height: 25%;
  position: absolute;
  left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 6px 0;
  border-color: transparent #ffffff transparent transparent;
}
.jp-card-logo.jp-card-visa:after {
  content: " ";
  display: block;
  width: 100%;
  height: 25%;
}

.jp-card.jp-card-visa.jp-card-identified .jp-card-front:before {
  background-color: #191278;
}
.jp-card.jp-card-visa.jp-card-identified .jp-card-back:before {
  background-color: #191278;
}
.jp-card.jp-card-visa.jp-card-identified .jp-card-logo.jp-card-visa {
  opacity: 1;
  box-shadow: none;
}

.jp-card-logo.jp-card-visaelectron {
  background: white;
  text-transform: uppercase;
  color: #1a1876;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
}
.jp-card-logo.jp-card-visaelectron:before {
  content: " ";
  display: block;
  width: 100%;
  height: 25%;
  background: #1a1876;
}
.jp-card-logo.jp-card-visaelectron:after {
  content: " ";
  display: block;
  width: 100%;
  height: 25%;
  background: #e79800;
}
.jp-card-logo.jp-card-visaelectron .elec {
  float: right;
  font-family: arial;
  font-size: 9px;
  margin-right: 1px;
  margin-top: -5px;
  text-transform: none;
}

.jp-card.jp-card-visaelectron.jp-card-identified .jp-card-front:before {
  background-color: #191278;
}
.jp-card.jp-card-visaelectron.jp-card-identified .jp-card-back:before {
  background-color: #191278;
}
.jp-card.jp-card-visaelectron.jp-card-identified .jp-card-logo.jp-card-visaelectron {
  opacity: 1;
}

.jp-card-logo.jp-card-mastercard {
  color: white;
  font-style: normal;
  text-transform: lowercase;
  font-weight: bold;
  text-align: center;
  font-size: 9px;
  line-height: 84px;
  z-index: 1;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.6);
}
.jp-card-logo.jp-card-mastercard:before {
  content: " ";
  display: block;
  width: 36px;
  top: 0;
  position: absolute;
  height: 36px;
  border-radius: 18px;
  left: 0;
  background: #eb001b;
  z-index: -1;
  opacity: 0.9;
}
.jp-card-logo.jp-card-mastercard:after {
  content: " ";
  display: block;
  width: 36px;
  top: 0;
  position: absolute;
  height: 36px;
  border-radius: 18px;
  right: 0;
  background: #ff5f00;
  z-index: -2;
}

.jp-card.jp-card-mastercard.jp-card-identified .jp-card-front .jp-card-logo.jp-card-mastercard {
  box-shadow: none;
}
.jp-card.jp-card-mastercard.jp-card-identified .jp-card-front:before {
  background-color: #0061a8;
}
.jp-card.jp-card-mastercard.jp-card-identified .jp-card-back .jp-card-logo.jp-card-mastercard {
  box-shadow: none;
}
.jp-card.jp-card-mastercard.jp-card-identified .jp-card-back:before {
  background-color: #0061a8;
}
.jp-card.jp-card-mastercard.jp-card-identified .jp-card-logo.jp-card-mastercard {
  opacity: 1;
}

.jp-card-logo.jp-card-maestro {
  color: white;
  font-style: normal;
  text-transform: lowercase;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  line-height: 84px;
  z-index: 1;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.6);
}
.jp-card-logo.jp-card-maestro:before {
  content: " ";
  display: block;
  width: 36px;
  top: 0;
  position: absolute;
  height: 36px;
  border-radius: 18px;
  left: 0;
  background: #eb001b;
  z-index: -2;
}
.jp-card-logo.jp-card-maestro:after {
  content: " ";
  display: block;
  width: 36px;
  top: 0;
  position: absolute;
  height: 36px;
  border-radius: 18px;
  right: 0;
  background: #00a2e5;
  z-index: -1;
  opacity: 0.8;
}

.jp-card.jp-card-maestro.jp-card-identified .jp-card-front .jp-card-logo.jp-card-maestro {
  box-shadow: none;
}
.jp-card.jp-card-maestro.jp-card-identified .jp-card-front:before {
  background-color: #0b2c5f;
}
.jp-card.jp-card-maestro.jp-card-identified .jp-card-back .jp-card-logo.jp-card-maestro {
  box-shadow: none;
}
.jp-card.jp-card-maestro.jp-card-identified .jp-card-back:before {
  background-color: #0b2c5f;
}
.jp-card.jp-card-maestro.jp-card-identified .jp-card-logo.jp-card-maestro {
  opacity: 1;
}

.jp-card-logo.jp-card-dankort {
  width: 60px;
  height: 36px;
  padding: 3px;
  border-radius: 8px;
  border: #000 1px solid;
  background-color: #fff;
}
.jp-card-logo.jp-card-dankort .dk {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.jp-card-logo.jp-card-dankort .dk:before {
  background-color: #ed1c24;
  content: "/";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
}
.jp-card-logo.jp-card-dankort .dk:after {
  content: "/";
  position: absolute;
  top: 50%;
  margin-top: -7.7px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 10px 0;
  border-color: transparent #ed1c24 transparent transparent;
  z-index: 1;
}
.jp-card-logo.jp-card-dankort .d {
  position: absolute;
  top: 50%;
  width: 50%;
  display: block;
  height: 15.4px;
  margin-top: -7.7px;
  background: white;
  left: 0;
  border-radius: 0 8px 10px 0;
}
.jp-card-logo.jp-card-dankort .d:before {
  content: "/";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #ed1c24;
  border-radius: 2px 4px 6px 0px;
  height: 5px;
  width: 7px;
  margin: -3px 0 0 -4px;
}
.jp-card-logo.jp-card-dankort .k {
  position: absolute;
  top: 50%;
  width: 50%;
  display: block;
  height: 15.4px;
  margin-top: -7.7px;
  background: white;
  right: 0;
}
.jp-card-logo.jp-card-dankort .k:before {
  content: "/";
  position: absolute;
  right: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  margin-right: -1px;
  top: 0;
  border-width: 8px 5px 0 0;
  border-color: #ed1c24 transparent transparent transparent;
}
.jp-card-logo.jp-card-dankort .k:after {
  content: "/";
  position: absolute;
  right: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  margin-right: -1px;
  bottom: 0;
  border-width: 0 5px 8px 0;
  border-color: transparent transparent #ed1c24 transparent;
}

.jp-card.jp-card-dankort.jp-card-identified .jp-card-front:before {
  background-color: #0055c7;
}
.jp-card.jp-card-dankort.jp-card-identified .jp-card-back:before {
  background-color: #0055c7;
}
.jp-card.jp-card-dankort.jp-card-identified .jp-card-logo.jp-card-dankort {
  opacity: 1;
}

.jp-card-logo.jp-card-elo {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: black;
  color: white;
  text-align: center;
  text-transform: lowercase;
  font-size: 21px;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: bold;
  padding-top: 13px;
}
.jp-card-logo.jp-card-elo .e {
  display: inline-block;
  position: relative;
  transform: rotate(-15deg);
}
.jp-card-logo.jp-card-elo .l {
  display: inline-block;
  position: relative;
}
.jp-card-logo.jp-card-elo .o {
  display: inline-block;
  position: relative;
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  right: 0;
  top: 7px;
  border-radius: 100%;
  background-image: linear-gradient(#ff0 50%, red 50%);
  transform: rotate(40deg);
  text-indent: -9999px;
}
.jp-card-logo.jp-card-elo .o:before {
  content: "";
  position: absolute;
  width: 49%;
  height: 49%;
  background: black;
  border-radius: 100%;
  text-indent: -99999px;
  top: 25%;
  left: 25%;
}

.jp-card.jp-card-elo.jp-card-identified .jp-card-front:before {
  background-color: #6f6969;
}
.jp-card.jp-card-elo.jp-card-identified .jp-card-back:before {
  background-color: #6f6969;
}
.jp-card.jp-card-elo.jp-card-identified .jp-card-logo.jp-card-elo {
  opacity: 1;
}

.jp-card-logo.jp-card-jcb {
  border-radius: 5px 0px 5px 0px;
  -webkit-border-radius: 5px 0px 5px 0px;
  background-color: white;
  font-style: normal;
  color: white;
  width: 50px;
  padding: 2px 0 0 2px;
}
.jp-card-logo.jp-card-jcb > div {
  width: 15px;
  margin-right: 1px;
  display: inline-block;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.6);
  border-radius: 5px 0px 5px 0px;
  -webkit-border-radius: 5px 0px 5px 0px;
}
.jp-card-logo.jp-card-jcb > div:before {
  content: " ";
  display: block;
  height: 8px;
}
.jp-card-logo.jp-card-jcb > div:after {
  content: " ";
  display: block;
  height: 8px;
}
.jp-card-logo.jp-card-jcb > div.j {
  background-color: #000063;
  background-image: linear-gradient(to right, #000063, #008cff);
}
.jp-card-logo.jp-card-jcb > div.c {
  background-color: #630000;
  background-image: linear-gradient(to right, #630000, #ff008d);
}
.jp-card-logo.jp-card-jcb > div.b {
  background-color: #006300;
  background-image: linear-gradient(to right, #006300, lime);
}

.jp-card.jp-card-jcb.jp-card-identified .jp-card-front:before {
  background-color: #cb8000;
}
.jp-card.jp-card-jcb.jp-card-identified .jp-card-back:before {
  background-color: #cb8000;
}
.jp-card.jp-card-jcb.jp-card-identified .jp-card-logo.jp-card-jcb {
  opacity: 1;
  box-shadow: none;
}

.jp-card-logo.jp-card-dinersclub {
  font-family: serif;
  height: 40px;
  width: 100px;
  color: white;
  font-size: 17px;
  font-style: normal;
  letter-spacing: 1px;
}
.jp-card-logo.jp-card-dinersclub::before {
  display: block;
  position: relative;
  content: "Diners Club";
}
.jp-card-logo.jp-card-dinersclub::after {
  display: block;
  position: relative;
  content: "International";
  text-transform: uppercase;
  font-size: 0.6em;
}

.jp-card.jp-card-dinersclub .jp-card-front .jp-card-logo {
  box-shadow: none !important;
}

.jp-card.jp-card-dinersclub.jp-card-identified .jp-card-front:before {
  background-color: #999;
}
.jp-card.jp-card-dinersclub.jp-card-identified .jp-card-back:before {
  background-color: #999;
}
.jp-card.jp-card-dinersclub.jp-card-identified .jp-card-logo.jp-card-dinersclub {
  opacity: 1;
}

.jp-card-logo.jp-card-hipercard {
  height: 20px;
  width: 100px;
  color: white;
  font-size: 21px;
  font-style: italic;
  font-weight: bold;
}
.jp-card-logo.jp-card-hipercard::before {
  display: block;
  position: relative;
}
.jp-card-logo.jp-card-hipercard::after {
  display: block;
  position: relative;
}

.jp-card.jp-card-hipercard.jp-card-identified .jp-card-front:before {
  background-color: #770304;
}
.jp-card.jp-card-hipercard.jp-card-identified .jp-card-back:before {
  background-color: #770304;
}
.jp-card.jp-card-hipercard.jp-card-identified .jp-card-logo.jp-card-hipercard {
  opacity: 1;
  box-shadow: none;
}

.jp-card-logo.jp-card-troy {
  text-transform: lowercase;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 18px;
  margin-top: 5px;
}
.jp-card-logo.jp-card-troy:before {
  content: "\\";
  display: block;
  width: 26%;
  height: 6%;
  background: #22b8c3;
  right: 32%;
  top: 24%;
  position: absolute;
  transform: rotate(105deg);
}
.jp-card-logo.jp-card-troy:after {
  content: "\\";
  display: block;
  width: 26%;
  height: 6%;
  background: #22b8c3;
  right: 32%;
  top: 24%;
  position: absolute;
  transform: rotate(105deg);
}

.jp-card.jp-card-troy.jp-card-identified .jp-card-front:before {
  background-color: #01adba;
}
.jp-card.jp-card-troy.jp-card-identified .jp-card-back:before {
  background-color: #01adba;
}
.jp-card.jp-card-troy.jp-card-identified .jp-card-logo.jp-card-troy {
  opacity: 1;
  box-shadow: none;
}

.jp-card-container {
  perspective: 1000px;
  width: 100%;
  max-width: 360px;
  height: 212px;
  margin: auto;
  z-index: 1;
  position: relative;
}

.jp-card.jp-card-flipped {
  transform: rotateY(180deg);
}

.jp-card.jp-card-identified {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.jp-card.jp-card-identified .jp-card-back {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
}
.jp-card.jp-card-identified .jp-card-back:before {
  transition: all 400ms ease;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
  opacity: 1;
}
.jp-card.jp-card-identified .jp-card-back .jp-card-logo {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.jp-card.jp-card-identified .jp-card-front {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
}
.jp-card.jp-card-identified .jp-card-front:before {
  transition: all 400ms ease;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
  opacity: 1;
}
.jp-card.jp-card-identified .jp-card-front .jp-card-logo {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.jp-card.jp-card-identified.no-radial-gradient .jp-card-back:before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}
.jp-card.jp-card-identified.no-radial-gradient .jp-card-front:before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}

@media only screen and (max-width: 480px) {
  .jp-card .jp-card-front .jp-card-lower {
    width: 90%;
    left: 5%;
  }
}
@media (max-width: 450px) {
  .card-wrapper {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .card-wrapper > .jp-card-container {
    max-width: unset;
    transform-origin: left center;
  }
}
#cart-product-list {
  width: calc(100% - 340px);
}
@media screen and (max-width: 991px) {
  #cart-product-list {
    width: 100%;
    /*padding-bottom: 150px;*/
  }
}
#cart-product-list .cart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3em;
  margin-top: 0.7em;
}
#cart-product-list .cart-title h2 {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--generalPrimaryColor);
}
#cart-product-list .cart-title h2 span {
  font-size: 0.7em;
  font-weight: 300;
  font-family: var(--fontFamilyBody);
  opacity: 0.6;
}
#cart-product-list .cart-title .apply-coupon {
  color: inherit;
  color: var(--buttonBackgroundColor);
  font-weight: 600;
}
#cart-product-list .campaign-selector {
  margin-bottom: 2em;
}
#cart-product-list .campaign-selector .campaign-title {
  color: var(--generalPrimaryColor);
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 1.3em;
  margin-top: 0.7em;
}
#cart-product-list .campaign-selector .combo-info .select-info {
  min-height: 5.4em;
  font-size: 1.1em;
  border-radius: var(--generalBorderRadius);
}
#cart-product-list .campaign-selector .combo-info .select-info svg {
  width: 16px;
  fill: var(--generalTextColor);
}
#cart-product-list .campaign-selector .combo-info .campQty {
  display: block;
  font-size: 0.8em;
  color: var(--buttonBackgroundColor);
  margin-top: 1em;
}
#cart-product-list .campaign-selector .option-wrapper {
  display: flex;
  align-items: center;
  margin: 1em 0;
}
#cart-product-list .campaign-selector .option-wrapper .campaign-photo {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
  min-width: 50px;
  min-height: 50px;
}
#cart-product-list .campaign-selector .option-wrapper .campaign-photo img {
  max-width: 50px;
  max-height: 50px;
}
#cart-product-list .campaign-selector .option-wrapper .campaign-name {
  font-size: 1em;
}
#cart-product-list .campaign-selector .option-wrapper .campaign-name p {
  display: block;
  margin-top: 0.7em;
  font-size: 0.8em;
  padding-right: 2em;
}
#cart-product-list .added-products {
  width: 100%;
}
#cart-product-list .added-products .added-product-item {
  background-color: var(--boxBackgroundColor);
  border: 1px solid var(--boxBorderColor);
  color: inherit;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.2em;
  margin-bottom: 1em;
  border-radius: var(--generalBorderRadius);
}
@media screen and (max-width: 991px) {
  #cart-product-list .added-products .added-product-item {
    opacity: 1;
    visibility: visible;
  }
  #cart-product-list .added-products .added-product-item button {
    color: inherit;
  }
}
#cart-product-list .added-products .added-product-item .ap-link {
  color: inherit;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  #cart-product-list .added-products .added-product-item .ap-link {
    align-items: flex-start;
  }
}
#cart-product-list .added-products .added-product-item .ap-link .ap-photo {
  max-width: 4em;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}
#cart-product-list .added-products .added-product-item .ap-link .ap-photo img {
  border-radius: calc(var(--generalBorderRadius) * 0.5);
  overflow: hidden;
}
#cart-product-list .added-products .added-product-item .ap-link .ap-info .api-name {
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  #cart-product-list .added-products .added-product-item .ap-link .ap-info .api-name {
    -webkit-padding-end: 75px;
            padding-inline-end: 75px;
    font-size: 0.9em;
  }
}
#cart-product-list .added-products .added-product-item .ap-link .ap-info .api-attributes ul li {
  font-size: 0.8em;
  display: inline-block;
  color: #4db8ff;
}
#cart-product-list .added-products .added-product-item .ap-link .ap-info .api-attributes ul li:after {
  content: ",";
  -webkit-padding-end: 0.2em;
          padding-inline-end: 0.2em;
}
#cart-product-list .added-products .added-product-item .ap-link .ap-info .api-attributes ul li:last-child:after {
  display: none;
}
#cart-product-list .added-products .added-product-item .api-action {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  #cart-product-list .added-products .added-product-item .api-action {
    -webkit-padding-start: 5em;
            padding-inline-start: 5em;
  }
}
#cart-product-list .added-products .added-product-item .api-action .cart-item-counter {
  display: flex;
}
#cart-product-list .added-products .added-product-item .api-action .cart-item-counter svg {
  margin: 0 !important;
}
#cart-product-list .added-products .added-product-item .api-action .cart-item-counter button {
  box-sizing: content-box;
  color: var(--buttonBackgroundColor);
  padding: 0 1em;
  width: 22px;
}
#cart-product-list .added-products .added-product-item .api-action .cart-item-counter button .delete svg {
  width: 20px;
}
#cart-product-list .added-products .added-product-item .api-action .cart-item-counter input {
  text-align: center;
  padding: 0;
  font-weight: 600;
  width: 60px;
}
#cart-product-list .added-products .added-product-item .api-action .row-old-total {
  font-weight: 300;
  font-size: 0.8em;
  margin-bottom: 0.3em;
  position: relative;
  display: inline-block;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  #cart-product-list .added-products .added-product-item .api-action .row-old-total {
    font-size: 1em;
  }
}
#cart-product-list .added-products .added-product-item .api-action .row-old-total:after {
  content: "";
  width: 105%;
  height: 1px;
  background-color: var(--generalTextColor);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
}
#cart-product-list .added-products .added-product-item .api-action .row-current-total {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  #cart-product-list .added-products .added-product-item .api-action .row-current-total {
    font-size: 1.2em;
  }
}
#cart-product-list .added-products .added-product-item .api-action .remove-product {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  bottom: 0.9em;
  inset-inline-end: 1em;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.2s;
}
#cart-product-list .added-products .added-product-item .api-action .remove-product button {
  font-size: 0.8em;
  min-height: unset;
  -webkit-padding-end: 0 !important;
          padding-inline-end: 0 !important;
  font-weight: normal;
  color: var(--buttonBackgroundColor) !important;
}
#cart-product-list .added-products .added-product-item .api-action .remove-product button i {
  -webkit-margin-end: 0.4em;
          margin-inline-end: 0.4em;
  color: inherit;
}
@media screen and (max-width: 1366px) {
  #cart-product-list .added-products .added-product-item .api-action .remove-product {
    opacity: 1;
    visibility: visible;
    bottom: 0.9em;
    inset-inline-end: 1em;
    cursor: pointer;
    font-size: 1.1em;
  }
  #cart-product-list .added-products .added-product-item .api-action .remove-product button {
    color: inherit;
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  #cart-product-list .added-products .added-product-item .api-action .remove-product {
    opacity: 1;
    bottom: auto;
    top: 1.2em;
    inset-inline-end: 1em;
    bottom: auto !important;
    visibility: visible;
  }
  #cart-product-list .added-products .added-product-item .api-action .remove-product button {
    color: inherit;
    opacity: 1;
  }
}
#cart-product-list .added-products .added-product-item:hover .remove-product {
  opacity: 1;
  visibility: visible;
}

#cart-product-summary {
  width: 340px;
  z-index: 10000;
}
@media screen and (max-width: 991px) {
  #cart-product-summary {
    position: fixed;
    width: 100%;
    top: auto;
    bottom: 0;
    padding: 0;
    left: 0;
    justify-content: space-between;
    background-color: var(--boxBackgroundColor);
  }
  #cart-product-summary.payment .agreement-row {
    position: absolute;
    bottom: 100%;
    width: 100%;
    z-index: 99;
    left: 0;
    padding: 0 1.1em 1em;
    margin: 0;
    background-color: var(--boxBackgroundColor);
    box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    height: 60px;
  }
  #cart-product-summary.payment .agreement-row span {
    font-size: 0.9em !important;
  }
  #cart-product-summary.payment .agreement-row strong {
    color: var(--buttonBackgroundColor);
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  #cart-product-summary.payment .summary-items.show-sum {
    bottom: 141px !important;
  }
}
#cart-product-summary .summary-wrapper {
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  background-color: var(--boxBackgroundColor);
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  #cart-product-summary .summary-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
  }
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper {
    border: none;
    border: 1px solid var(--boxBorderColor);
    display: flex;
    justify-content: space-between;
    border-radius: 0;
    height: 81px;
  }
}
#cart-product-summary .summary-wrapper .summary-top {
  padding: 1em;
  position: relative;
  z-index: 11;
  background-color: var(--boxBackgroundColorDark);
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-top {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
}
#cart-product-summary .summary-wrapper .summary-top .summary-title {
  font-size: 1em;
}
#cart-product-summary .summary-wrapper .summary-top .summary-title svg {
  display: none;
  transition: all 0.2s;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-top .summary-title svg {
    display: inline-flex;
    width: 14px;
    fill: var(--generalTextColor);
  }
  #cart-product-summary .summary-wrapper .summary-top .summary-title svg.active {
    transform: rotate(180deg);
  }
}
#cart-product-summary .summary-wrapper .summary-top .summary-total-amount {
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 0.2em;
}
#cart-product-summary .summary-wrapper .summary-top .summary-total-amount i {
  color: var(--buttonBackgroundColor);
  font-size: 0.9em;
  margin-left: 0.3em;
}
#cart-product-summary .summary-wrapper .summary-top .discount-code {
  display: none;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-top .discount-code {
    margin: 0;
    border-radius: var(--generalBorderRadius);
    position: fixed;
    bottom: -300px;
    width: 90%;
    max-width: 450px;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: #fff;
    box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s;
    z-index: 30;
  }
  #cart-product-summary .summary-wrapper .summary-top .discount-code.show-sum {
    bottom: 50%;
  }
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .title {
  color: var(--buttonBackgroundColor);
  font-size: 1em;
  padding: 1em 0 0;
  font-weight: 500;
  cursor: pointer;
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .title.cancel {
  color: #aaa;
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code {
  display: none;
  margin-top: 1em;
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code .f-row {
  margin-bottom: 0;
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code.show-sum {
  display: block;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code {
    padding: 1em;
    display: block !important;
  }
  #cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code .close {
    display: flex;
    justify-content: space-between;
    padding: 1em 0 2em 0;
  }
  #cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code .close .primary {
    opacity: 0.6;
  }
  #cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code .f-row {
    flex-direction: column;
  }
  #cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code .f-row button {
    width: 100%;
    margin-top: 1em;
    margin-bottom: 0;
    font-size: 1em;
    background-color: var(--buttonBackgroundColor);
    border-radius: var(--buttonBorderRadius);
    color: #fff;
  }
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code-applied {
  display: none;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code-applied {
    padding: 0.6em 1em 0;
  }
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .enter-code-applied span {
  background-color: #43cc97;
  color: #fff;
  font-weight: 600;
  padding: 0.6em 1em;
  font-size: 0.8em;
  border-radius: 30px;
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .f-row {
  border-radius: var(--generalBorderRadius);
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .f-row input {
  font-size: 0.9em;
  width: 100%;
}
#cart-product-summary .summary-wrapper .summary-top .discount-code .f-row button {
  font-size: 0.75em;
  padding: unset;
}
@media screen and (min-width: 992px) {
  #cart-product-summary .summary-wrapper .summary-top .discount-code .f-row button {
    -webkit-padding-start: 1em !important;
            padding-inline-start: 1em !important;
    font-weight: 600;
    background-color: transparent !important;
    color: var(--buttonBackgroundColor) !important;
  }
}
#cart-product-summary .summary-wrapper .summary-bottom {
  padding: 1em;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-bottom {
    width: 100%;
    background-color: transparent;
  }
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items .additional-info {
  background-color: #bfe7ff;
  border: 1px solid #0099f2;
  color: #0099f2;
  font-size: 0.8em;
  padding: 0.6em;
  border-radius: var(--generalBorderRadius);
  margin: 1em 0;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items .additional-info {
    margin: 0em 1em 1em;
  }
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items {
    border-radius: var(--generalBorderRadius) var(--generalBorderRadius) 0 0;
    position: fixed;
    bottom: -500%;
    width: 100%;
    left: 0;
    background-color: var(--bodyBackgroundColor);
    box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s;
    z-index: -1;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  #cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items.show-sum {
    bottom: 81px;
  }
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul {
  margin-bottom: 1em;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul {
    padding: 1em;
    margin-bottom: 0;
  }
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul li {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.6em;
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul li:last-child {
  padding-bottom: 0;
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul li span {
  font-size: 1em;
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul li .cancel {
  color: #0099f2;
  margin-top: 0.8em;
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul.other {
  border-top: 1px solid rgba(var(--rgbGeneralTextColor), 0.1);
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul.other li {
  align-items: center;
  font-size: 0.85em;
  padding-top: 1em;
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul.other li p {
  font-weight: normal;
  font-size: 0.9em;
  opacity: 0.7;
  margin-top: 0.4em;
  display: block;
  width: 100%;
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul.other .title {
  font-weight: 600;
}
#cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul.other .labeled {
  color: #00ae6b;
}
@media screen and (max-width: 991px) {
  #cart-product-summary .summary-wrapper .summary-bottom .summary-content .summary-items ul.other {
    padding-top: 0.1em;
  }
}
#cart-product-summary .summary-wrapper .summary-bottom .agreement-input {
  display: flex;
  padding: 1em 0 0;
  margin-bottom: 0;
}
#cart-product-summary .summary-wrapper .summary-bottom .agreement-input span {
  line-height: 1.2;
}
#cart-product-summary .summary-wrapper .summary-bottom .agreement-input span strong {
  font-weight: 600;
}
#cart-product-summary .summary-wrapper .summary-bottom .b-row button {
  height: 3.6em;
  background-color: var(--buttonBackgroundColor);
  color: #fff;
  font-size: 1em;
  width: 100%;
}
#cart-product-summary.basket .discount-code {
  display: block !important;
}

@media screen and (max-width: 991px) {
  .mobile-overlay {
    background-color: rgba(var(--rgbGeneralTextColor), 0.3);
    position: fixed;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
  }
}
#payment-success {
  width: 100%;
}
#payment-success .order-summary-content {
  max-width: 650px;
  width: 100%;
  margin: 0em auto 4em;
  border-radius: 1em;
  background-color: #fff;
  padding: 3em;
  box-shadow: 0 25px 40px -15px rgba(85, 85, 85, 0.2);
}
@media screen and (max-width: 991px) {
  #payment-success .order-summary-content {
    padding: 1em;
  }
}
#payment-success .order-summary-content .order-summary-content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#payment-success .order-summary-content .order-summary-content-top svg {
  width: 8em;
  display: block;
  margin: 1em 0 2em;
}
#payment-success .order-summary-content .order-summary-content-top svg .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
#payment-success .order-summary-content .order-summary-content-top svg .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}
#payment-success .order-summary-content .order-summary-content-top svg .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
#payment-success .order-summary-content .order-summary-content-top svg .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
#payment-success .order-summary-content .order-summary-content-top .status-message {
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
}
#payment-success .order-summary-content .order-summary-content-top .status-message span {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
  margin: 1em;
  color: #aaa;
}
#payment-success .order-summary-content .order-summary-content-top .status-message.success {
  color: #70c5a2;
}
#payment-success .order-summary-content .order-summary-content-top .status-message.fail {
  color: #d66f6f;
}
#payment-success .order-summary-content .order-summary-content-top .error-message {
  margin: 3em 0 1em;
  width: 100%;
  max-width: 500px;
  padding: 1em;
  background-color: #f9f9f9;
  border-radius: 1em;
  font-size: 1em;
  text-align: center;
  color: #888;
  font-weight: 300;
}

#payment-success {
  width: 100%;
}
#payment-success .order-summary-content {
  max-width: 650px;
  width: 100%;
  margin: 0em auto 4em;
  border-radius: 1em;
  background-color: #fff;
  padding: 3em;
  box-shadow: 0 25px 40px -15px rgba(85, 85, 85, 0.2);
}
@media screen and (max-width: 991px) {
  #payment-success .order-summary-content {
    padding: 1em;
  }
}
#payment-success .order-summary-content .order-summary-content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#payment-success .order-summary-content .order-summary-content-top svg {
  width: 8em;
  display: block;
  margin: 1em 0 2em;
}
#payment-success .order-summary-content .order-summary-content-top svg .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
#payment-success .order-summary-content .order-summary-content-top svg .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}
#payment-success .order-summary-content .order-summary-content-top svg .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
#payment-success .order-summary-content .order-summary-content-top svg .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
#payment-success .order-summary-content .order-summary-content-top .status-message {
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
}
#payment-success .order-summary-content .order-summary-content-top .status-message span {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
  margin: 1em;
  color: #aaa;
}
#payment-success .order-summary-content .order-summary-content-top .status-message.success {
  color: #70c5a2;
}
#payment-success .order-summary-content .order-summary-content-top .status-message.fail {
  color: #d66f6f;
}
#payment-success .order-summary-content .order-summary-content-top .customer-message {
  line-height: 1.2;
  padding: 1em;
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  border-radius: var(--generalBorderRadius);
}
#payment-success .order-summary-content .order-summary-content-top .order-number {
  margin: 3em 0 1em;
  width: 100%;
  padding: 1em;
  background-color: #f9f9f9;
  border-radius: 1em;
  font-size: 0.9em;
  text-align: center;
  color: #888;
  font-weight: 300;
}
#payment-success .order-summary-content .order-summary-content-top .order-number span {
  font-size: 2.7em;
  display: block;
  font-weight: 600;
  margin-top: 0.2em;
}
#payment-success .order-address-info {
  margin: 1em 0 2em;
  padding: 1em 0;
}
#payment-success .order-address-info .order-address-info-item {
  padding: 1em;
  border: 1px solid #e0e0e0;
  margin-bottom: -1px;
}
#payment-success .order-address-info .order-address-info-item:first-child {
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
}
#payment-success .order-address-info .order-address-info-item:last-child {
  border-bottom-left-radius: 1em;
  border-bottom-right-radius: 1em;
}
#payment-success .order-address-info .order-address-info-item .order-address-title {
  font-size: 1.1em;
  margin-bottom: 0.3em;
  font-weight: 600;
}
#payment-success .order-address-info .order-address-info-item :not(.order-address-title) {
  font-size: 0.9em;
  line-height: 1.3;
  opacity: 0.7;
}
#payment-success .order-address-info .order-address-info-item .order-address-owner {
  font-weight: 600;
}
#payment-success .order-address-info .order-address-info-item .order-address-detail {
  margin: 0.6em 0;
}
#payment-success .order-address-info .order-address-info-item .order-address-email {
  margin: 0.6em 0 0;
}
#payment-success .my-ordes-list-detail {
  border-radius: 0 0 0.7em 0.7em;
}
#payment-success .my-ordes-list-detail .inner-title {
  font-size: 1.1em;
  margin-bottom: 1em;
}
#payment-success .my-ordes-list-detail .inner-title h3 span {
  opacity: 0.6;
  font-size: 0.8em;
  margin-left: 0.4em;
}
#payment-success .my-ordes-list-detail .order-list-detail-item {
  padding: 1em 0;
  border-bottom: 1px solid #e0e0e0;
}
#payment-success .my-ordes-list-detail .order-list-detail-item:last-child {
  border-bottom: none;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-photo {
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-photo a {
  display: block;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  border-radius: calc(var(--generalBorderRadius) * 0.5);
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-photo a img {
  max-width: 3em;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-name {
  overflow: hidden;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-name a {
  display: block;
  color: inherit;
  font-size: 1em;
  margin-bottom: 0.2em;
  font-weight: 600;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-attributes {
  overflow: hidden;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-attributes span {
  font-size: 0.8em;
  margin-right: 0.3em;
  color: inherit;
  opacity: 0.6;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-attributes span:after {
  content: ",";
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-attributes span:last-child:after {
  display: none;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-unit-price {
  opacity: 0.6;
  margin-top: 0.3em;
  font-size: 0.8em;
  margin-bottom: 0.3em;
  overflow: hidden;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-unit-price strong {
  font-weight: 600;
  margin: 0 0.3em;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-unit-price .product-qty-info:before {
  content: "-";
  margin-right: 0.3em;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-total-price {
  margin-top: 0.6em;
  font-size: 0.8em;
  overflow: hidden;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-total-price strong {
  font-weight: 600;
  margin: 0 0.3em;
}
#payment-success .my-ordes-list-detail .order-list-detail-item .order-list-detail-item-detail .product-total-price .product-qty-info:before {
  content: "-";
  margin-right: 0.3em;
}
#payment-success .my-ordes-list-detail .my-ordes-list-item-summary {
  border-top: 1px solid #e0e0e0;
  padding: 1em 0 0;
  display: flex;
  justify-content: flex-end;
}
#payment-success .my-ordes-list-detail .my-ordes-list-item-summary ul li {
  padding: 0.5em 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}
#payment-success .my-ordes-list-detail .my-ordes-list-item-summary ul li:last-child {
  border-bottom: none;
}
#payment-success .my-ordes-list-detail .my-ordes-list-item-summary ul li span {
  opacity: 0.6;
  margin-right: 1em;
}
#payment-success .my-ordes-list-detail .my-ordes-list-item-summary ul li.my-ordes-list-item-total {
  font-size: 1.1em;
  font-weight: 600;
}
#payment-success .my-ordes-list-detail .my-ordes-list-item-summary ul li.my-ordes-list-item-total span {
  opacity: 1;
}
