.sidecart {
  width: 320px;
  min-width: 320px;
  height: 100vh;
  position: fixed;
  top: 0px;
  overflow: auto !important;
  right: -320px;
  z-index: 9000;
  transition: 0.2s ease;
  padding-top: 3rem;
}

@media(max-width: 400px) {
  .sidecart {
    width: 100vw;
    right: -100vw;
  }
}

.open-cart {
  right: 0px !important;
}

.open-cart:after {
  content: '';
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 100vh;
  left: 0px;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
  background-color: black;
  opacity: 0.5;
  z-index: -1;
}

.cart-toggle {
  cursor: pointer;
  color: #fff;
}

.cart-toggle:hover, .cart-toggle:focus {
  color: #f36f21;
}

.cart-heading {
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5rem !important;
  padding-bottom: 0.5rem;
}

.sidecart li {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  padding-top: 0;
}

.sidecart-image {
  max-width: 80px !important;
}

.sidecart-quantity input {
  padding: .25rem;
  line-height: 1;
  height: auto;
  width: 50px;
  text-align: center;
}