/** Shopify CDN: Minification failed

Line 62:1 Expected "}" to go with "{"

**/
/*

Please add any custom CSS code in here, it will be easier to transfer if updating themes.

We highly recommend labelling changes, or App installs, so these can also be updated or removed as needed.

*/
div#cartSlideoutWrapper:not(.slideout-panel-hidden) {
    display: grid;
    grid-template-areas:
        "cart-heading"
      	"cart-error"
        "cart-items"
        "cart-footer";
    overflow-y: auto;
}

.cart-drawer__top {
    grid-area: cart-heading;
}

.cart-error-box {
  grid-area: cart-error; 
}

ul.cart-items {
    grid-area: cart-items;
    height: 40vh;
}

.ajax-cart--bottom-wrapper {
    grid-area: cart-footer;
}
@media only screen and (max-width: 768px) {
.cart-button-checkout-text {
    font-size: 15px;
}
  a.btn.btn-default.cart-menu-close.secondary-button {
    font-size: 14px !important;
}

  ul.cart-items {
    grid-area: cart-items;
    height: 55vh;
}
  .slide-checkout-buttons {
    margin: 0 30px 15px 30px !important;
}
  p.cart--shipping-message {
    margin-bottom: 0;
}
  .cart-total-price {
    font-size: 20px !important;
}
  .cart-items {
    padding: 15px 30px 0 !important;
}