/* iPad */
@media only screen and (min-width: 426px) and (max-width: 768px) {
  .CartHolder {
    width: 100vw;
    right: -84px;
    top: 105px;
    height: calc(100vh - 119px);
    overflow-y: scroll;
  }
}

/* Mobile */
@media only screen and (max-width: 426px) {
  .CartHolder {
    width: 100vw;
    right: -75px;
    top: 105px;
    height: calc(100vh - 119px);
    overflow-y: scroll;
  }

  span#NoItems {
    width: 17px;
    height: 17px;
    background-color: #00809f;
    color: #ffffff !important;
    text-align: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 1;
    line-height: 18px;
    position: absolute;
    left: 22px;
  }

  .cart-summary-header,
  .cart-summary-items .cart-summary-item {
    padding: 15px;
  }
}
