
body.overflow-hidden {
  /* prevent 2 vertical scrollbars on ie and firefox when the cart is visible */
  overflow: hidden;
}

.cd-cart-trigger {display: inline-block;}
#cd-cart {
  right: -100%;
  position: fixed;
  background: #FFF;
  padding: 0;
  -webkit-transition: right 0.3s;
  -moz-transition: right 0.3s;
  transition: right 0.3s;
}
#cd-cart {
  right: -100vw;
  width: 100vw;
}
#cd-cart.speed-in {
  right: 0;
  max-width: 420px;
  height: 100%;
  top: 0;
  z-index: 99999999999;
}

#cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(67, 87, 121, 0.6);
  cursor: pointer;
  z-index: 99999999999;
  display: none;
}
#cd-shadow-layer.is-visible {
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

#cd-cart > h2 {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  margin: 0;
  padding: 11px 15px 12px;
  justify-content: space-between;
  font-size: 21px;
  font-weight: 400;
  color: #717171;
  border-bottom: 1px solid #efefef;
}

ul.cd-cart-items {
  flex-grow: 1;
  overflow-y: auto;
  /* padding-right: 20px; */
  margin: 0;
}
ul.cd-cart-items > div {
  margin-bottom: 10px;
  padding: 5px 20px 0;
}
div.in-cart-item + div.in-cart-item {
  border-top: 1px solid #ececec;
}

ul.cd-cart-items > div small {
  color: #a7acad;
  font-weight: 700;
}

.btn-sheen {
  position: relative;  
  z-index: 8;
  background-color: #FF5C83!important;
  overflow: hidden;
}
.btn-sheen::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background-image: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
  animation: sheen 1.0s ease 0.0s infinite;
  opacity: 0.2;
}

.cart_item.added {
    background: #ceffce;
}
.cart_item .check {display: none;}
.cart_item.added .btn-add {display: none;}
.cart_item.added .check {
    background: #4ad64a;
    border-color: #4ad64a;
    color: #fff;
    padding: 8px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes sheen {
	0% { transform: translate3d(0,0,0); }
	100% { transform: translate3d(200%,0,0); }
}


@media screen and (max-width: 480px) {

  #cd-cart {
    right: -100vw;
    width: 100vw;
  }

}



/*cart updates*/
.freeship b {
  font-size: 11px;
  text-transform: uppercase;
}
.cart_item a.btn-add {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  padding: 14px;
  letter-spacing: 1.5px;
}