/* ORDERS PAGE */
.orders .padding {
  padding: 10px 15px; }

.orders .button-bar {
  max-width: 80%;
  margin: 0 auto; }
  .orders .button-bar > .button:first-child {
    border-radius: 8px 0 0 8px; }
  .orders .button-bar > .button:last-child {
    border-radius: 0 8px 8px 0; }
  .orders .button-bar .button {
    border-color: #FFF; }
    .orders .button-bar .button.button-active {
      color: #009b49; }

.orders-total {
  font-size: 1.5em;
  line-height: 47px; }
  .orders-total .button.button-stable.button-clear {
    color: #009b49; }

.no-items {
  font-size: 2em;
  margin-top: 20px; }

.order {
  background-color: #F2F2F2;
  border-radius: 3px;
  display: block;
  margin-bottom: 5px;
  position: relative; }
  .order p {
    margin-bottom: 0; }
  .order .button {
    margin-right: 5px;
    margin-bottom: 10px;
    width: 45%; }
    .order .button.button-light, .order .button.button-light.activated {
      background-color: #D3D3D3; }
  .order .gallery {
    white-space: nowrap; }
  .order .order-info {
    margin-left: 15px;
    margin-right: 15px; }
  .order .icon-delivered,
  .order .icon-canceled {
    font-size: 5em;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 15px;
    display: none; }
  .order .icon-delivered {
    color: #00DA5C; }
  .order .icon-canceled {
    color: #FA2A2A; }
  .order .order-info.date {
    font-size: 1.3em; }
  .order.just-delivered {
    color: #C5C5C5;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0 auto;
    width: 95%; }
    .order.just-delivered .button
.thumbnail {
      display: none; }
    .order.just-delivered .order-info.date {
      margin-left: 0;
      margin-right: 0; }
    .order.just-delivered + .order.pending {
      box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3); }
    .order.just-delivered.ng-enter {
      -webkit-animation: fadeInUp 0.25s;
      -moz-animation: fadeInUp 0.25s;
      -ms-animation: fadeInUp 0.25s;
      animation: fadeInUp 0.25s; }
  .order.delivered, .order.canceled {
    padding-right: 70px; }
    .order.delivered .button,
    .order.delivered .thumbnail, .order.canceled .button,
    .order.canceled .thumbnail {
      display: none; }
  .order.delivered .icon-delivered {
    display: inline-block; }
    .order.delivered .icon-delivered::before {
      line-height: 0.7em; }
  .order.canceled .icon-canceled {
    display: inline-block; }
    .order.canceled .icon-canceled::before {
      line-height: 0.8em; }
  .order.ng-leave {
    -webkit-animation: fadeOutUp 0.5s;
    -moz-animation: fadeOutUp 0.5s;
    -ms-animation: fadeOutUp 0.5s;
    animation: fadeOutUp 0.5s; }

.product {
  display: inline-block;
  margin-right: 20px;
  min-height: 47px;
  width: 100px; }
  .product .thumbnail {
    border: 2px solid #FFF;
    height: 70px;
    background-repeat: no-repeat;
    background-size: cover; }
  .product .highlight {
    font-weight: bold;
    font-size: 1.3em; }
  .product p {
    font-size: 0.85em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

/* END ORDERS PAGE*/
