.cart-wrapper {
  display: flex;
  max-width: 100vw;
  overflow-x: hidden;
}

.all-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.show-cart {
  border-radius: 100%;
  height: 3.5rem;
  width: 3.5rem;
  border: 2px solid #31446f;
  color: #31446f;
  background-color: white;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1;
  transition: all ease-in-out 100ms;
}
.show-cart:hover {
  background-color: #bad5f1;
  border-color: #776dad;
}

.cart {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 400px;
  height: calc(100vh - 80px);
  overflow-y: scroll;
  transition: margin 0.4s ease-in-out;
  border-left: 1px solid #bbef;
  background-color: #e7e7e7;
  position: fixed;
  top: 80px;
  right: 0;
  order: 9999;
}
.cart ~ .show-cart {
  display: none;
}
.cart.collapsed ~ .show-cart {
  display: initial;
}
.cart .header {
  padding: 0.8rem;
  width: 100%;
  text-align: center;
  position: relative;
}
.cart .collapser {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border: none;
  background-color: #0000;
}
.cart .collapser:hover {
  color: #88a;
}
.cart .collapser:focus {
  outline: none;
}

.cart-item + .cart-item {
  padding-top: 0.8rem;
}

.cart-item {
  width: 100%;
  display: flex;
  align-items: center;
}
.cart-item .delete {
  border: 0;
  background-color: #eba;
  border-radius: 3px;
  padding: 4px 7px;
  display: block;
  margin-right: 1rem;
  transition: all 0.15s ease;
}
.cart-item .delete:hover {
  background-color: #f4a090;
}
.cart-item .cart-row-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cart-item .cart-row {
  width: 100%;
  display: flex;
  align-items: center;
}

.item-price {
  width: 35%;
}

.item-quantity {
  width: 25%;
}

.item-right-align {
  text-align: right;
  padding-left: 4px;
}

.item-subtotal {
  flex-grow: 1;
  width: 40%;
}

.item-total {
  flex-grow: 1;
}

.item-nominal {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-quantity input {
  width: 55px;
}

.item-title {
  font-weight: bold;
}

.item-title-big {
  font-size: 1.4rem;
  color: #61666f;
}

.cart-item-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 11pt;
}

.cart-checkout {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.note-container {
  margin-bottom: 1rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #ccc;
  font-size: 0.9rem;
  color: #222;
}

.note-title {
  font-size: initial;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.note-list {
  margin: 0;
  padding-left: 1rem;
}

@media screen and (min-width: 768px) {
  .cart.collapsed {
    margin-right: -400px;
  }
  .cart ~ *:not(.show-cart) {
    width: calc(100% - 400px);
    transition: width 0.4s ease-in-out;
  }
  .cart.collapsed ~ :not(.show-cart) {
    width: 100%;
    transition: width 0.4s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  .cart {
    width: 100vw;
    font-size: 0.88rem;
  }
  .cart.collapsed {
    margin-right: -100vw;
  }
  .cart ~ :not(.show-cart) {
    width: 100vw;
    margin-left: -100vw;
    transition: margin 0.4s ease-in-out;
  }
  .cart.collapsed ~ :not(.show-cart) {
    margin-left: 0;
    transition: margin 0.4s ease-in-out;
  }

  .no-overflow {
    overflow-y: hidden;
  }
}

/*# sourceMappingURL=cart.css.map */
