@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

#block-usershoppingcart {
  position: absolute;
  top: 100%;
  z-index: 40;
  right: 0;
  width: 420px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  text-transform: none; }

.ergo-cart-actions {
  display: flex;
  background: #ffffff;
  padding: 1.25em 2em;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 1em; }

.ergo-cart-actions .button {
  flex: 1;
  padding-left: 0;
  padding-right: 0; }

.ergo-cart-actions .button + .button {
  margin-left: 1.25em; }

.ergo-cart-contents {
  padding: 0 2em 2em;
  overflow-y: scroll;
  height: 480px; }

.ergo-cart-count {
  font-size: 1.25em;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #dddddd; }

.ergo-cart-count-items {
  font-weight: 300;
  padding-left: 3px; }

.ergo-cart-totals div {
  display: flex;
  justify-content: space-between;
  margin: 1em 0; }
  .ergo-cart-totals div.ergo-cart-total {
    font-weight: 700;
    font-size: 1.2em; }
  .ergo-cart-totals div dd {
    margin: 0; }

.ergo-cart-disclaimer {
  text-align: center;
  width: 100%;
  flex-direction: column;
  color: #464646;
  font-size: 0.9em; }

.ergo-cart-items {
  border-top: 2px solid #dddddd;
  padding-top: 1em; }
  .ergo-cart-items h3 {
    font-size: 1em;
    font-weight: 300;
    text-transform: unset; }

.ergo-cart-item {
  display: flex; }

.ergo-cart-item + .ergo-cart-item {
  margin-top: 2em; }

.ergo-cart-item-image {
  width: 45%;
  padding-right: 1em; }

.ergo-cart-item-title {
  width: 100%;
  margin-bottom: 0.5em; }

.ergo-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end; }

.ergo-cart-item-meta {
  width: 100%;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 0.7em; }
  .ergo-cart-item-meta dl dt,
  .ergo-cart-item-meta dl dd {
    margin: 0.3em 0; }
  .ergo-cart-item-meta dl dd {
    margin-left: 0.2em; }
  .ergo-cart-item-meta dl div {
    display: flex; }

.ergo-cart-item-summary {
  display: flex;
  flex-direction: column;
  margin-top: 1em; }
  .ergo-cart-item-summary dl .ergo-cart-total-price {
    font-size: 1.2em;
    border-top: 2px solid #dddddd;
    margin: 0.25em 0 0;
    padding: 0.25em 0 0; }
  .ergo-cart-item-summary dl div {
    display: flex;
    justify-content: flex-end; }
    .ergo-cart-item-summary dl div:first-child {
      font-size: 0.85em;
      margin: 0 0 0.25em;
      justify-content: flex-end; }
    .ergo-cart-item-summary dl div.crossed-out {
      color: #a7adba; }
      .ergo-cart-item-summary dl div.crossed-out b {
        text-decoration: line-through; }
  .ergo-cart-item-summary dl dd {
    margin: 0 0 0 0.2em; }

.ergo-cart-empty {
  padding: 1em; }
