.ajax-cart__modal{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  max-width: 575px;
  background: getColor('white', 'default');
  border: 1px solid #e9e9e9;
  padding: 50px 65px;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, visibility;

}
.ajax-cart__overlay.is-open ,
.ajax-cart__modal.is-open {
  opacity: 1;
  visibility: visible;
}

.ajax-cart__overlay{
  position: fixed;
  z-index: 30;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
/*   background-color: rgba(0,0,0,0.5); */
  opacity: 0;
  visibility: hidden;
  will-change: opacity, visibility;
}

.ajax-cart__drawer{
  position: fixed;
  z-index: 1000000;
  right: -400px;
  top: 0;
  width: 360px;
/* height: 100%; */
  background: #fff;
  will-change: transform;
/*   border-left: 1px solid #e9e9e9; */
  -webkit-box-shadow: 3px 4px 13px #d5d4d4;
  -moz-box-shadow: 3px 4px 13px #d5d4d4;
  box-shadow: 3px 4px 13px #d5d4d4;
}
.ajax-cart__drawer.is-open {
  right: 22px;
}
.ajax-cart-modal {
    position: relative;

    &__close {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    &__content {
        padding: 20px;
    }

}

.ajax-cart-drawer {
    position: relative;
    height: 100%;

}
.ajax-cart-drawer .ajax-cart-drawer__close{
  position: absolute;
  right: 20px;
  top: 5px;
  cursor:pointer;
}
.ajax-cart-drawer .ajax-cart-drawer__content {
  padding: 16px 22px 27px;
/*   height: 100%; */
  overflow: hidden;
/*   overflow-y: scroll; */
}
.ajax-cart-drawer .ajax-cart-drawer__buttons {
/*   position: absolute; */
  z-index: 10;
  left: 0;
	/* bottom: 0; */
  width: 100%;
  background: #fff;
/*   padding: 20px; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ajax-cart-drawer .ajax-cart-drawer__buttons .btn:last-child {
  margin-top: 20px;
}
.ajax-cart-drawer .single-item{
  display:flex;
  justify-content: space-between;
  background: #fff;
/*   margin: 15px 0;
  padding: 15px 10px; */
  align-items: center;

}
.ajax-cart-drawer .single-item .ajax-cart-item__image{
/* 	width:120px; */
  width: 100%;
}
.ajax-cart-drawer .single-item .product-img{
/*   width:25%; */
  width: 102px;
  height: 108px;
  overflow: hidden;
}
.ajax-cart-drawer .single-item .item-info{
  width:70%;
  padding-left: 13px;
}
html.is-locked{
  height:100%;
    overflow-x:hidden;
}
.ajax-cart-drawer .cart-totals{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.ajax-cart-drawer .ajax-cart-item__price{
  font-size:14px;
  font-weight:bold;
}
.ajax-cart-drawer .ajax-cart-item__quantity{
  font-size:14px;
}
.ajax-cart__modal{
	background: #f6f6f6;	
}
.ajax-cart__modal .ajax-cart-modal__close{
  top: -30px;
  right: -40px;
  position:absolute;
}
.item-info {
  display: flex;
  margin-top: -30px;
}
.ajax-cart-item__title {
  width: 60%;
}
.ajax-cart-item__quantity {
    width: 40%;
    text-align: right;
}
.shipping-order {
  background: #ff909f;
  color: #000;
  padding: 8px 15px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin: 12px 22px;
}
.ajax-cart-notify {
  margin: 18px 22px 12px;
}
ajax-cart-notify p {
  font-size: 14px;
  color: #000;
}

.js-ajax-cart-drawer-close .icon {
    display: inline-block;
    width: 20px;
    height: 14px;
    vertical-align: middle;
    fill: currentColor;
    position: relative;
    top: -6px;
}
.btn-custom {
  background: #000;
  display: inline-block;
  width: 50%;
  margin: 0 auto;
}
.btn-custom span {
  color: #fff;
}
.btn-no-bg {
  text-align: center;
  padding-top: 13px;
  padding-bottom: 19px;
  text-decoration: underline;
}
a.btn-no-bg {
  color: #b35a65;
  font-weight: 500;
}
@media screen and (max-width: 400px) {
  .ajax-cart__drawer.is-open {
    right: 0px;
  }
}
@media screen and (max-width: 350px) {
  .ajax-cart__drawer {
    width: 300px !important;
  }
  .btn-custom {
    width: 54% !important;
  }
}