.cart-panel-overlay {
  position         : fixed;
  top              : 0;
  right            : 0;
  height           : 100vh;
  width            : 100%;
  z-index          : 14;

  background       : rgba(0, 0, 0, 0.3);
  cursor           : pointer;
  pointer-events   : none;

  transform-origin : right center;
  transform        : scaleX(0);
  transition       : all .3s ease-in-out;
}

.cart-panel-overlay--is-show {
  transform      : scaleY(1);
  pointer-events : all;
  transition     : all .3s ease-in-out .1s;
}

.cart-panel {
  position       : fixed;
  top            : 0;
  right          : 0;
  height         : 100vh;
  width          : 100%;
  max-width      : 400px;
  z-index        : 15;
  overflow       : auto;
  background     : white;
  display        : flex;
  flex-direction : column;

  transform      : translate3d(100%, 0, 0);
  transition     : all .2s ease-in-out;
}

.cart-panel--is-show {
  transform  : translate3d(0, 0, 0);
  transition : all .4s ease-in-out .2s;
}

.cart-panel__product-item + .cart-panel__product-item {
  padding-top : 20px;
}

.cart-panel__product {
  display               : grid;
  grid-gap              : 15px 20px;
  grid-template-columns : 125px 1fr;
  padding-bottom        : 20px;
  border-bottom         : 1px solid #DCE4E9;

}

.cart-panel__product-cart-actions {
  display     : flex;
  align-items : flex-start;
  flex-wrap   : wrap;
  gap         : 10px;
  padding-top : 10px;
}

.cart-panel__product-cart-actions .remove-from-cart {
  color      : var(--color-primary);
  transition : all 0.35s ease-in-out;
}

.cart-panel__product-cart-actions .remove-from-cart:hover {
  color : #000;
}

.cart-panel__product-cart-full-price {
  display         : flex;
  align-items     : center;
  justify-content : flex-end;
}

.cart-panel__summary-wrapper {
  background : white;
  z-index    : 5;
  font-size  : calc(12px + (13 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.cart-panel__summary {
  border-top  : 1px solid rgba(0, 0, 0, .15);
  padding-top : .25rem;
}

.cart-panel__total {
  display        : flex;
  flex-direction : column;
}

.cart-panel__validate {
  width      : 100%;
  margin-top : 25px;
}

/*************
  Part - Cart Panel Custom
 *************/

.cart-panel .cart-panel__top {
  display         : flex;
  justify-content : space-between;
  padding         : 30px 20px 20px 35px;
  border-bottom   : 1px solid #DCE4E9;
}

.cart-panel .cart-panel__top-left {
  display     : flex;
  align-items : center;
  gap         : 5px;
}

.cart-panel .cart-panel__title {
  color          : #1E3044;
  font-size      : 24px;
  font-style     : normal;
  font-weight    : 600;
  line-height    : normal;
  letter-spacing : 0.72px;
}

.cart-panel .product-line-info.product-name {
  font-size      : 14px;
  font-style     : normal;
  font-weight    : 600;
  line-height    : normal;
  letter-spacing : 0.28px;
}

.cart-panel .current-price {
  color       : var(--color-secondary);
  font-size   : 16px;
  font-style  : normal;
  font-weight : 800;
  line-height : normal;
}

.cart-panel .regular-price {
  font-size       : 11px;
  color           : var(--color-grey-font-default);
  text-decoration : line-through;
  opacity         : 0.65;
}

.cart-panel .quantity_wanted {
  min-height : 32px;
  min-width  : 55px;
}

.cart-panel .product-discount {
  position : relative;
}

.cart-panel .product-discount .discount-percentage {
  position        : absolute;
  z-index         : 2;
  display         : flex;
  align-items     : center;
  color           : var(--color-white-default);
  right           : 0;
  top             : 0;
  left            : unset;
  border-radius   : 0 10px 0 10px;
  background      : var(--color-primary);
  width           : 2em;
  height          : 2em;
  padding         : 1rem;
  font-size       : var(--font-size-200);
  justify-content : center;
}

.cart-panel .js-cart-line-product-quantity {
  border-radius : 10px 0 0 10px !important;
}

.cart-panel .bootstrap-touchspin-up {
  border-radius : 0 10px 0 0 !important;
}

.cart-panel .bootstrap-touchspin-down {
  border-radius : 0 0 10px 0 !important;
}

.cart-panel .bootstrap-touchspin input.form-control {
  height : 32px;
  width  : 2.5rem;
}

.cart-panel .bootstrap-touchspin .input-group-btn-vertical > .btn {
  height  : 17px !important;
  padding : 7px 10px;
}

.cart-panel .cart-panel__product-list-wrapper {
  padding : 30px 20px 0 35px;
}

.cart-panel .cart-panel__summary-wrapper {
  padding : 20px 20px 20px 35px;
}

.cart-panel__total-price {
  display         : flex;
  gap             : 10px;
  justify-content : center;
  background      : var(--color-grey-default);
  padding         : 15px 0;
  border-radius   : 10px;
  align-items     : center;
  width           : 100%;
}

.cart-panel__total-price .label {
  color       : var(--color-secondary);
  font-size   : 20px;
  font-style  : normal;
  font-weight : 600;
  line-height : normal;
}

.cart-panel__total-price .value {
  color       : var(--color-secondary);
  font-size   : 25px;
  font-style  : normal;
  font-weight : 800;
  line-height : normal;
}

.cart-panel__action .cart-panel__validate {
  padding       : 12px 1rem;
  border        : 2px solid var(--color-primary);
  color         : var(--color-primary);
  background    : var(--color-white-default);
  margin-bottom : 10px;
}

.cart-panel__action .cart-panel__validate:hover {
  background : linear-gradient(269deg, #E56A54 -3.27%, #CC5A46 95.63%);
  color      : var(--color-white-default);
}

.cart-panel__action .cart-panel__order {
  width   : 100%;
  padding : 12px 1rem;
  border  : 2px solid var(--color-primary);
}

.cart-panel__action .cart-panel__order:hover {
  max-width  : 100%;
  max-height : 100%;
  margin     : 7px 0;
}

.js-cart-panel__close {
  cursor : pointer;
}

.cart-panel__product-cart-actions__container {
  display         : flex;
  flex-direction  : row;
  align-items     : center;
  gap             : 5px;
  justify-content : space-between;
}

.cart-panel__product-cart-actions__container .product-promotion_svg {
  border  : none;
  padding : 15px 15px;
}

.cart-panel__summary-wrapper .active-voucher-count p {
  color       : var(--color-secondary);
  font-size   : 20px;
  font-style  : normal;
  font-weight : 600;
  line-height : normal;
}

.cart-panel__summary-wrapper .promo-name.card-block {
  padding     : 10px 0;
  color       : var(--color-secondary);
  font-size   : 16px;
  font-style  : normal;
  font-weight : 600;
  line-height : normal;
}

.cart-panel__gift-product {
  grid-column   : 1 / 3;
  display       : flex;
  align-items   : center;
  gap           : 8px;
  color         : var(--color-secondary);
  font-size     : 16px;
  font-style    : normal;
  font-weight   : 800;
  line-height   : normal;
  border-radius : 10px;
  background    : #F5F5F7;
  padding       : 7px 15px;
}

.cart-panel__gift-product img {
  width          : 41px;
  height         : 41px;
  mix-blend-mode : darken;
}

.cart-panel__product-list-wrapper .product-promotion {
  background : #F5F5F7;
  border     : none;
}


.product-promotion_svg svg {
  color : var(--color-primary);
}

.cart-panel__product-cart-actions__loyalty.--with-promo .product-promotion {
  background : var(--color-primary);
}

.cart-panel__product-cart-actions__loyalty.--with-promo .product-promotion_svg svg {
  color : var(--color-white-default);
}

.product-line-info.product-price.h5 {
  padding : 2px 0;
}

.product-line-info.product-reference {
  font-size : 14px;
}
