/*------------------------------------
  Shopping Cart
------------------------------------*/

/* Item */
.u-shopping-cart {
  border: 1px solid $gray-300;
  margin-top: 1.3125rem;
  @include border-radius(0);

  &__item {
    &-divider {
      border-bottom: 1px solid $gray-300;
      padding-bottom: 1.5rem;
      margin-bottom: 1.5rem;
    }

    &-img-wrapper {
      width: 25%;
    }

    &-info-wrapper {
      width: 75%;
    }

    &-remover {
      cursor: pointer;
      color: $gray-150;

      &:hover {
        color: $dark;
      }
    }
  }
}