#_desktop_cart {
  position: relative; }
#_desktop_cart .dropdown-menu {
  top: 46px; }

#_desktop_cart .header {
  cursor: pointer;
}



.fixed-cart {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 1000;
  width: 320px;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

body.show-cart .cart-shadow-background {
  content: '';
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  body.show-cart {
    overflow: hidden;
    height: 100%;
  }
}

.show-cart .fixed-cart {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.fixed-cart.loading:before {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.4) url('loader.gif') center center no-repeat;
}

.blockcart .fixed-cart .remove-from-cart {
  top: 8px;
}

.fixed-cart .cart-header .cart-heading {
  margin-bottom: 10px;
}
.fixed-cart .cart-header  {
  margin-bottom: 5px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}
.fixed-cart .cart-header .close-cart  {
  position: absolute;
  top: -1px;
  right: 0;
  color: #525252;
  background: none;
  border: none;
  cursor: pointer;
}
.fixed-cart .cart-header .close-cart:hover  {
  color: #0074ee;
}

.fixed-cart .product-cart-description {
  font-size: 15px;
  padding-right: 20px;
  text-align: left;
}

.fixed-cart .list-unstyled  {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  margin: 0 -10px;
  padding: 0 10px;
}

.fixed-cart .list-unstyled .ps__rail-x,
.fixed-cart .list-unstyled .ps__rail-y {
  position: absolute;
}

.fixed-cart .list-unstyled .ps__rail-y  {
  right: 3px;
  left: auto;
  width: 3px;
}
.fixed-cart .list-unstyled .ps__rail-y .ps__thumb-y {
  background: #e5e5e5;
  position: absolute;
  width: 3px;
  right: 3px;
}


.fixed-cart .list-unstyled .blockcart-item {
  position: relative;
  clear: both;
  overflow: hidden;
  padding-right: 25px;
  text-align: left;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
}

.fixed-cart .list-unstyled .blockcart-item .product-quantity,
.fixed-cart .list-unstyled .blockcart-item .product-name {
  font-size: 14px;
}

.fixed-cart .list-unstyled .blockcart-item .product-attribute {
  font-weight: 500;
  font-size: 14px;
  display: block;
}


.fixed-cart .list-unstyled .blockcart-item .product-price {
  color: #f16334;
  font-size: 18px;
  font-weight: 700;
}


.fixed-cart .list-unstyled .blockcart-item:first-child {
  border: 0;
  margin-top: 0;
}


.fixed-cart .checkout-btn,
.fixed-cart .btn-block {
  margin-top: 10px;
}

.fixed-cart .cart-subtotals {
  margin-top: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 10px 10px 0 0;
}
.fixed-cart .product-name {
  white-space: normal;
}

.fixed-cart .blockcart .cart-total .label,
.fixed-cart .blockcart .cart-total .value {
  line-height: 20px;
  height: 30px;
}

.blockcart .fixed-cart  .cart-total {
  overflow: visible;
  border: 1px solid #e5e5e5;
  border-top: 0;
  border-radius: 0 0 10px 10px;

}
