  /*-- Mini Cart Wrap --*/
  .mini-cart-wrap {
    /* background-color: #fefcef; */
    background-color: #fff;
    width: 320px;
    position: fixed;
    top: 0;
    right: -320px;
    z-index: 9822;
    height: 100%;
    padding-bottom: 150px;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  
  .mini-cart-wrap.open {
    right: 0;
    display: block;
  }
  
  .mini-cart-wrap .mini-cart-top {
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 25px;
  }
  
  .mini-cart-wrap .mini-cart-top .close-cart {
    border: none;
    background-color: transparent;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    color: #444444;
    line-height: 24px;
  }
  
  .mini-cart-wrap .mini-cart-top .close-cart i {
    float: right;
    line-height: 26px;
    font-size: 16px;
    margin-left: 5px;
  }
  
  .mini-cart-wrap .mini-cart-products {
    padding: 30px 25px;
    overflow: hidden;
    overflow-y: auto;
    height: calc(100% - 45px);
  }
  
  .mini-cart-wrap .mini-cart-products li {
    float: left;
    width: 100%;
    margin-bottom: 25px;
  }
  
  .mini-cart-wrap .mini-cart-products li .image {
    width: 90px;
    float: left;
    margin-right: 20px;
  }
  
  .mini-cart-wrap .mini-cart-products li .image img {
    width: 100%;
    background-color: #f6f7f8;
  }
  
  .mini-cart-wrap .mini-cart-products li .content {
    width: 120px;
    float: left;
  }
  
  .mini-cart-wrap .mini-cart-products li .content .title {
    font-size: 14px;
    display: block;
    font-weight: 600;
    color: #444444;
    line-height: 22px;
    margin-bottom: 2px;
  }
  
  .mini-cart-wrap .mini-cart-products li .content .title:hover {
    color: #202020;
  }
  
  .mini-cart-wrap .mini-cart-products li .content .price, .mini-cart-wrap .mini-cart-products li .content .qty {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #444444;
  }
  
  .mini-cart-wrap .mini-cart-products li .remove {
    width: 20px;
    float: right;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  
  .mini-cart-wrap .mini-cart-products li .remove:hover {
    color: #ff0000;
  }
  
  .mini-cart-wrap .mini-cart-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* background-color: #fefcef; */
    background-color: #fff;
  }
  
  .mini-cart-wrap .mini-cart-bottom .sub-total {
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    line-height: 24px;
    padding: 10px 25px;
    margin: 0;
    border-bottom: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
  }
  
  .mini-cart-wrap .mini-cart-bottom .sub-total span {
    float: right;
  }
  
  .mini-cart-wrap .mini-cart-bottom .button {
    padding: 32px 25px;
  }
  
  .mini-cart-wrap .mini-cart-bottom .button a {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    line-height: 30px;
    padding: 5px 30px;
    border-radius: 10px;
    /* border-radius: 50px; */
    background-color: #660099;
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .mini-cart-wrap .mini-cart-bottom .button a::before {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0;
    width: 100%;
    background-color: #202020;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    content: "";
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    opacity: 0;
    z-index: -1;
  }
  
  .mini-cart-wrap .mini-cart-bottom .button a:hover {
    color: #fff;
  }
  
  .mini-cart-wrap .mini-cart-bottom .button a:hover::before {
    height: 550%;
    opacity: 1;
  }
  
  /*-- Cart Overlay --*/
  .cart-overlay {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9821;
    background-color: rgba(0, 0, 0, 0.85);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  
  .cart-overlay.visible {
    visibility: visible;
    opacity: 1;
  }

  /*-- Padding Lines --*/
  .mini-cart-wrap .mini-cart-top {
    padding: 10px 0px;
  }

  .mini-cart-wrap .mini-cart-products {
    padding: 30px 0px;
  }

  .mini-cart-wrap .mini-cart-bottom .sub-total {
    padding: 10px 0px;
  }

  .mini-cart-wrap .mini-cart-bottom .button {
    padding: 32px 0px;
  }

  .mini-cart-wrap {
    padding-left: 25px;
    padding-right: 25px;
  }

  .mini-cart-wrap .mini-cart-bottom {
    padding-left: 25px;
    padding-right: 25px;
  }