.hh-mini-cart__button,
.hh-mini-cart__content-close {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hh-mini-cart__backdrop{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.hh-mini-cart__backdrop.active{
  display: block;
}

.hh-mini-cart__content{
  position: fixed;
  top: 0;
  right: -100%;
  width: 372px;
  height: 100%;
  background-color: #fff;
  z-index: 1001;
  transition: linear 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.admin-bar .hh-mini-cart__content{
  top: 32px;
}

.hh-mini-cart__content.active{
  right: 0;
}

.hh-mini-cart__content-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #36B0AE;
  border-bottom: 1px solid #e0e0e0;
  color: #fff;
  padding: 20px 28px;
}

.hh-mini-cart__content-header h3{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.hh-mini-cart__content-body{
  padding: 20px 28px;
  overflow-y: auto;
  height: calc(100vh - 330px);
}

.hh-mini-cart__content-footer{
  border-top: 2px solid #E8E8E8;
  padding: 30px 20px 20px 20px; 
}

.hh-mini-cart__content-footer-total{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
}

.hh-mini-cart__content-footer-total-price{
  font-size: 20px;
  font-weight: 700;
  color: #36B0AE;
}

.hh-mini-cart__content-footer-total-label{
  font-size: 18px;
  font-weight: 700;
  color: #A7AEA0;
}

.hh-mini-cart__content-footer-buttons{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 22px;
}

.hh-mini-cart__content-footer-button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 20px;
  width: 100%;
}

.hh-mini-cart__content-footer-button--view-cart{
  background-color: #F3F4EF;
  color: #6C7863; 
}

.hh-mini-cart__content-footer-button--checkout{
  background-color: #36B0AE;
  color: #fff;
}

.hh-mini-cart__content-body-item-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 21px;
  position: relative;
  margin-bottom: 20px;
}

.hh-mini-cart__content-body-item-image{
  width: 90px;
  height: 90px;
  border-radius: 2px;
  overflow: hidden;
  background-color: #F2F2F2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.hh-mini-cart__content-body-item-image img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.hh-mini-cart__content-body-item-info{
  display: inline-flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: calc(100% - 90px);
}

.hh-mini-cart__content-body-item-info-title{
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 18px;
  padding-right: 20px;
}

.hh-mini-cart__content-body-item-info-quantity-wrapper{
  display: inline-flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #36B0AE;
  gap: 9px;
}

.hh-mini-cart__content-body-item-info .hh-mini-cart__content-body-item-info-quantity{
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  border: 1px solid #F0F0F0;
  padding: 0px 8px;
}

.hh-mini-cart__content-body-item-info .hh-mini-cart__content-body-item-info-quantity .hh-mini-cart__content-body-item-info-quantity-button{
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 10px;
  display: inline-flex;
}

.hh-mini-cart__content-body-item-info .hh-mini-cart__content-body-item-info-quantity input.hh-mini-cart__content-body-item-info-quantity-input{
  border: none;
  padding: 0;
  margin: 0;
  width: 50px;
  text-align: center;
  font-size: 18px;
  line-height: 29px;
  font-weight: 700;
  color: #000;
}

.hh-mini-cart__content-body-item-info .hh-mini-cart__content-body-item-info-quantity input::-webkit-outer-spin-button,
.hh-mini-cart__content-body-item-info .hh-mini-cart__content-body-item-info-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hh-mini-cart__content-body-item-info .hh-mini-cart__content-body-item-info-quantity input[type=number] {
  -moz-appearance: textfield;
}

.hh-mini-cart__content-body-item-remove{
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
}

.hh-mini-cart__content-body-item-remove-button{
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  width: 12px;
  height: 12px;
}

.hh-mini-cart__content-body-item-remove-button svg{
  display: inline-block;
}

/*Loading*/
.hh-mini-cart__content.load:before{
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1002;
}

.hh-mini-cart__content.load::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #36B0AE;
  border-top-color: transparent;
  animation: load 1s linear infinite;
}

@keyframes load {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide mini cart on checkout page */
body.woocommerce-checkout .hh-mini-cart,
body.woocommerce-checkout .hh-mini-cart__backdrop {
    display: none !important;
}
