@import url("https://fonts.googleapis.com/css?family=Roboto+Mono:700&display=swap");
.cart_sidebar {
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: -40px;
  width: 320px;
  padding-right: 40px;
  padding-top: 0;
  background: black;
  height: 100%;
  z-index: 999;
  color: white;
  transition: transform 0.4s cubic-bezier(0.57, 1, 0, 1.1);
}
.cart_sidebar.hidden {
  transform: translate3d(100%, 0, 0);
}
.cart_sidebar .cart_close {
  text-decoration: none;
  color: white;
  padding-left: 20px;
  height: 15px;
  width: 15px;
  display: inherit;
  margin-top: 18px;
}

.cart {
  padding: 55px 20px 10px;
  background: black;
  font-size: 0.8125rem;
}
.cart .cart_header {
  color: white;
}
.cart .cart_header li h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1rem;
}
.cart .cart_header li h2#timer {
  font-family: "Roboto Mono", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}
.cart .cart_header li.cols {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  margin: 15px 0 10px;
  font-size: 0.75rem;
}
.cart .cart_header li.cols:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
.cart .cart_header li.cols span:last-child {
  padding-left: 16px;
}
.cart .cart_header li.cols b {
  font-weight: 500;
  font-size: 0.8125rem;
  font-family: "Rubik", sans-serif;
}
.cart .cart_row,
.cart .cart_row_completed {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: solid 1px white;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.cart .cart_row:last-child,
.cart .cart_row_completed:last-child {
  margin: 0;
  border: none;
  padding-bottom: 10px;
}
.cart .cart_row.item,
.cart .cart_row_completed.item {
  position: relative;
  align-items: center;
  padding-bottom: 15px;
  height: 67px;
}
.cart .cart_row.item:first-of-type,
.cart .cart_row_completed.item:first-of-type {
  margin-top: 10px;
}
.cart .cart_row.item img,
.cart .cart_row_completed.item img {
  width: 44px;
  height: 67px;
  margin-right: 15px;
  background: black;
  border: 1px solid #fff;
}
.cart .cart_row.item ul.poster_info,
.cart .cart_row_completed.item ul.poster_info {
  flex-grow: 1;
  font-size: 0.75rem;
  height: 67px;
}
.cart .cart_row.item ul.poster_info li,
.cart .cart_row_completed.item ul.poster_info li {
  padding: 0;
  top: 0;
  margin-bottom: 11px;
}
.cart .cart_row.item ul.poster_info li:last-child,
.cart .cart_row_completed.item ul.poster_info li:last-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.cart .cart_row.item ul.poster_info li:last-child span,
.cart .cart_row_completed.item ul.poster_info li:last-child span {
  align-self: baseline;
}
.cart .cart_row.item ul.poster_info li:last-child span:last-child,
.cart .cart_row_completed.item ul.poster_info li:last-child span:last-child {
  padding-left: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.cart .cart_row.item a.close,
.cart .cart_row_completed.item a.close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5em;
  color: #999;
  padding: 5px;
  margin: -5px -5px 0 0;
  line-height: 12px;
}
.cart .cart_row.item a.close:hover a,
.cart .cart_row_completed.item a.close:hover a {
  text-decoration: none;
}
.cart .cart_row.owner,
.cart .cart_row_completed.owner {
  display: block;
}
.cart .cart_row.owner span,
.cart .cart_row.owner b,
.cart .cart_row_completed.owner span,
.cart .cart_row_completed.owner b {
  font-size: 12px;
}
.cart .cart_row.total,
.cart .cart_row_completed.total {
  font-weight: 500;
}
.cart #subtotal {
  font-weight: 500;
}
.cart .checkout_options {
  width: 100%;
  display: flex;
}
.cart .checkout_button, .cart .apple-pay_button {
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
  height: 30px;
  padding: 0;
  margin-top: 10px;
  background: #FFFFFF;
  transition: background-color 0.3s;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}
.cart .checkout_button:hover a, .cart .apple-pay_button:hover a {
  text-decoration: underline;
}
.cart .checkout_button a, .cart .apple-pay_button a {
  color: black;
  line-height: 30px;
  text-decoration: none;
}
.cart .checkout_button img, .cart .apple-pay_button img {
  height: 16px;
}
.cart .apple-pay_button, .cart .apple-pay_info {
  display: none;
}
.cart .apple-pay_info {
  margin-top: 10px;
}
.cart .apple-pay_info i {
  float: left;
}
.cart .apple-pay_info p {
  margin-bottom: 10px;
  font-size: 90%;
  padding-left: 20px;
}

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