#mini-cart {
  position: absolute;
  width: 316px;
  top: -100%;
  right: 100px;
  z-index: 999;
  background-color: #ffffff;
  /* height: calc(100vh - 150px); */
  /* transition: .5s; */
  font-family: Avenir, sans-serif;
}

#mini-cart.active {
  top: 0;
  box-shadow: -5px 5px 5px 0 rgba(0, 0, 0, 0.15);
}

#mini-cart h1 {
  padding: 0;
  text-align: center;
  font-size: 22px;
  line-height: 35px;
}

#mini-cart .item-count {
  font-size: 22px;
  line-height: 35px;
  margin-top: 41px;
  text-align: center;
  padding-bottom: 9px;
  border-bottom: 1px solid #c2c2c2;
}

#mini-cart .product-name {
  font-size: 12px;
  flex-grow: 1;
}

#mini-cart .cart-item {
  margin: 20px 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c2c2c2;
}

#mini-cart .cart-item {
  font-size: 10px;
}

#mini-cart .cart-item a:hover,
#mini-cart .cart-item a:active,
#mini-cart .cart-item a {
  color: var(--orange);
  font-weight: normal;
}

#mini-cart .cart-item div:first-child {
  padding: 0 7px;
}

#mini-cart .price {
  font-size: 14.5px;
  color: var(--dark-blue);
  font-family: 'AlegreyaSansBlack';
  margin: 0 8px 0 0;
  color: var(--lighter-blue);
}

#mini-cart .bottom .price {
  margin: 0;
  font-size: 25px;
  color: var(--light-blue);
  padding-left: 24px;
  position: relative;
  top: -3px;
}

#mini-cart .bottom {
  padding: 27px 20px 20px 20px;
  background-color: #f5f5f5;
}

#mini-cart .bottom a:first-child {
  margin: 14px 0 9px 0;
}

#mini-cart .bottom a:nth-child(2){
  background-color: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
}

#mini-cart .bottom:not(.empty-cart) {
  margin-top: 25px;
  padding: 34px 17px 22px 17px;
}

#mini-cart .bottom strong {
  font-size: 13px;
}

#mini-cart .bottom .button,
#mini-cart .bottom .button strong {
  height: 38.5px;
  line-height: 38.5px;
  font-size: 16px;
}

#mini-cart .bottom small {
  font-size: 11.5px;
  color: #333;
}

#mini-cart .bottom h3 {
  font-size: 20px;
  margin-bottom: 24px;
}

#mini-cart button.close {
  padding: 5px;
  opacity: 1;
  font-weight: normal;
}

#mini-cart .button {
  height: 41px;
  line-height: 41px;
  font-size: 15px;
}

#mini-cart .button-blue {
  margin-top: 20px;
  color: white;
}

#mini-cart .shop-all {
  padding: 0 61px;
}

#mini-cart .button-white-blue {
  margin-top: 10px;
  color: black;
  background-color: #ffffff !important;
  border: 2px solid #00aeef;
  font-weight: bold;
}

#mini-cart .btn {
  font-weight: bold;
  margin: 5px 0;
  border-radius: 0;
}

#mini-cart .button-white {
  display: block;
  width: 90%;
  margin: 5px auto;
  color: #333;
  text-align: left;
  background-color: #fff;
}

#mini-cart .button-white.button-external {
  background: #fff url(/img/arrow_right_red.png) no-repeat center right 0;
  background-size: 17px;
  color: #333;
  font-size: 17px;
  font-family: 'Avenir Medium';
  font-weight: 400;

}

#mini-cart .button-white.button-external img {
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

#mini-cart .button-orange {
  height: 30px;
  line-height: 20px;
  padding: 5px 25px;
  font-size: 11px;
  border: none;
}

#mini-cart .button-orange,
#mini-cart a.button-orange,
#mini-cart a.button-orange:hover,
#mini-cart a.button-orange:active {
  color: #fff;
}

#mini-cart .empty-cart:not(.bottom) {
  height: 262px;
}

#mini-cart .empty-cart .product-name {
  font-size: 12px;
  line-height: 14.5px;
  padding: 11px 0 13px 0;
}

#mini-cart .empty-cart .price {
  font-size: 14.5px;
  padding-bottom: 10px;
}

#mini-cart .bottom.empty-cart .row > div:nth-child(odd){
  padding-right: 6px;
}
#mini-cart .bottom.empty-cart .row > div:nth-child(even){
  padding-left: 6px;
}

#mini-cart .close {
  font-size: 24px
}

#mini-cart .remove {
  font-size: 12px;
  font-family: 'Avenir Medium';
}

#mini-cart .remove img {
  margin-right: 4px;
  vertical-align: 0px;
  width: 13px
}

#mini-cart .remove span {
  text-decoration: underline;
  position: relative;
  top: -3px;
  font-size: 10px;
}

#mini-cart .mbtm {
  display: flex;
  justify-content: space-between
}

#mini-cart .pdetails {
  padding: 5px 0 0 5px;
  gap: 23px 0;
  display: flex;
  flex-direction: column;
}


@media screen and (max-width: 480px) {
  #mini-cart {
    width: 100%;
    right: -100%;
  }

  #mini-cart h1 {
    font-size: 30px;
  }

  #mini-cart button.close {
    font-size: 30px;
    padding: 10px 10px 0 0;
  }

  #mini-cart .product-name {
    font-size: 14px;
  }

  #mini-cart .empty-cart h3 {
    text-align: left;
  }

  #mini-cart .button-white.button-external {
    font-size: 15px;
    width: 100%
  }

}