#dyncart{
  position: fixed;
  z-index: 1310;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-left: solid 1px #e5e5e5;
  box-shadow: -8px 0px 20px 4px rgb(0 0 0 / 20%);
  padding: 20px;
  transition: all .3s ease;
}
.cart-overlay{
  position: fixed;
  z-index: 1300;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
}
.cart-overlay.open{
  display: block;
  background: rgba(0, 0, 0, 0.5);
}
#dyncart.open{
  right: 0;
}
#dyncart .item-list{
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: calc(100% - 140px);
  padding-bottom: 110px;
}
.item-list .cart-row{
  border-bottom: solid 1px #e5e5e5;
  margin: 10px 0;
  position: relative;
}
.item-list .cart-row::after{
  clear: both;
  content: "";
  display: block;
}
.item-list .cart-image{
  width: 25%;
  float: left;
  display: inline-block;
}
.item-list .cart-image img{
  max-width: 100%;
}
.item-list .item-info{
  width: 75%;
  float: left;
  display: inline-block;
  padding-left: 15px;
  padding-right: 20px;
  margin: auto;
}
.item-list .item-info .name{
  font-size: 0.9rem;
  display: block;
  font-weight: 700;
  margin-top: 5px;
}
.item-list .item-info .attrsmall{
  font-size: 0.9rem;
  display: block;
  font-weight: 500;
  margin-top: 4px;
}
.item-list .item-info .quantity_wanted{
  font-size: 0.8rem;
  margin: 10px 6px;
}
.item-list .item-qty{
  margin-top: 20px;
}
.item-list .item-qty::after{
  content: "";
  display: block;
  clear: both;
}
.item-list .item-qty .qty{
  width: 60%;
  float: left;
}
.item-list .item-qty .qty>button{
  border: solid 1px #ececec;
  background: #ffffff;
  font-size: 10px;
  line-height: 20px;
  height: 20px;
  width: 20px;
  padding: 0;
  outline: none;
  cursor: pointer;
}
.item-list .item-qty .total{
  font-size: 1rem;
  display: block;
  font-weight: 700;
  text-align: right;
  width: 40%;
  float: right;
}
.item-list .remove{
  position: absolute;
  right: 7px;
  top: 0;
  font-size: 11px;
  color: #000;
}
#dyncart>p.title{
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-align: center;
}
.gotocheckout{
  height: 45px;
  line-height: 1;
  background: #000000;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 14px 10px;
  text-transform: uppercase;
  width: 100%;
}
.gotocheckout:hover{
  color: #fff;
  background: #333333;
}
.cart-actions{
  left: 20px;
  right: 20px;
  bottom: 20px;
  position: absolute;
  display: block;
}
.cart-actions .total-products{
  margin-bottom: 3px;
  color: #000;
  font-size: 0.9rem;
}
.cart-actions .total-shipping{
  margin-bottom: 3px;
  color: #000;
  font-size: 0.9rem;
}
.cart-actions .total{
  margin-bottom: 10px;
  color: #000;
  font-size: 1rem;
  font-weight: 900;
  width: 100%;
}
.cart-actions>p>span{
  float: right;
}

.cart-count{
  position: absolute;
  right: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #c1b186;
  color: #fff;
  border-radius: 50%;
  line-height: 1;
  font-size: 11px;
  font-weight: 700;
  padding: 1px;
  text-align: center;
}
.ti-minus, .ti-plus, .ti-close{
  font-size: 16px;
  text-align: center;
  line-height: 1;
}




@media (max-width: 790px){
  #dyncart{
    max-width: 100%;
  }
}