main {
  min-height: 100vh;
}

.cart .cart-container {
  /* max-width: 800px; */
}

.cart .sticky {
  top: 110px;
  z-index: 99;
  margin-left: 20px;
  padding: 15px 15px;
  border-left: 1px solid var(--bs-border-color);
  border-radius: 3px;
}

.cart .summary-card {}

.cart .modal-title {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1em;
}

.cart .cover-price {
  /* text-decoration: line-through; */
}

.cart .title {
  display: block;
  /* font-weight: bold; */
  font-style: normal;
  font-size: 1.2em;
}

th {
  font-weight: 100 !important;
}

.cart .cart-summary div:not(:last-child) {
  border-right: 1px solid var(--bs-border-color)
}

.cart .cart-summary div:last-child {
  border-left: 0px
}

.cart .price {
  font-size: 1.3em;
}

.cart .cart-subtotal {
  display: inline-block;
  line-height: normal;
  font-size: 1.2em;
}

.cart .cart-total {
  display: block;
  line-height: normal;
  font-size: 1.5em;
}

.cart .table-subtotal td {
  text-align: right;
}

.cart .cover {
  max-height: 150px;
  border: 1px solid var(--bs-border-color);

  -webkit-box-shadow: -6px 0px 6px -4px rgba(var(--bs-body-color-rgb), .7);
  -moz-box-shadow: -6px 0px 6px -4px rgba(var(--bs-body-color-rgb), .7);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.cart .thumb {
  max-height: 140px;
}

@media (max-width: 576px) {
  .cart .thumb {
    max-height: 220px;
  }
}

.cart hr {
  margin-top: 5px;
}

.cart .dropdown .btn-link,
.dropdown a {
  color: var(--bs-body-color) !important;
  text-transform: uppercase;
  font-size: .875em;
}

.cart .dropdown-item {
  text-align: right;
  padding-right: 0px;
}

.cart .dropdown-item:not(.foo):hover {
  /* background: #f1f1f1aa; */
  font-weight: bold;
}

.cart .dropdown-item {
  /* background: #fcfcfc; */
  cursor: pointer;
}

.cart .dropdown-item.disabled {
  opacity: .5;
}

.cart .dropdown-menu {
  border-radius: 0px;
  border-bottom: 2px solid var(--bs-body-color) !important;
}

.cart ul.dropdown-menu.show {
  min-width: 60px;
  display: inline-block;
  border: 0;
  padding-top: 0px;
  left: 20px;

}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}